File: help-versal.h

package info (click to toggle)
xilinx-bootgen 2024.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 3,684 kB
  • sloc: cpp: 38,134; ansic: 15,729; yacc: 1,362; lex: 669; makefile: 54
file content (1353 lines) | stat: -rwxr-xr-x 103,964 bytes parent folder | download
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
/******************************************************************************
* Copyright 2015-2022 Xilinx, Inc.
* Copyright 2022-2023 Advanced Micro Devices, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/

#pragma once

#ifndef _HELP_VERSAL_H_
#define _HELP_VERSAL_H_

#include <string>



/***********************************************************************************************
* Option       : init
* Description  : Register Initialization
************************************************************************************************/
#define HV_BIF_INIT_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | init                                                           |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Register initialization block at the end of the bootloader,    |\n\
             | built by parsing the .int file specification. Maximum of 256   |\n\
             | address-value init pairs are allowed. The int files have       |\n\
             | a specific format.                                             |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | init = <filename>                                              |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | all:                                                           |\n\
             | {                                                              |\n\
             |    init = test.ini                                             |\n\
             |    { type = bootloader, file = /path/to/plm.elf }              |\n\
             | }                                                              |\n\
             |----------------------------------------------------------------|\n\
             | Sample .int file - test.ini                                    |\n\
             |      .set. 0xF8000120 = 0x1F000200;                            |\n\
             |      .set. 0xF8000720 = 0x00000202;                            |\n\
             |      .set. 0xF800014C = 0x00000521;                            |\n\
-------------+----------------------------------------------------------------+\n"	


/***********************************************************************************************
* Option       : aeskeyfile
* Description  : Encryption Key File
************************************************************************************************/
#define HV_BIF_AES_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | aeskeyfile                                                     |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | The path to the AES keyfile. The keyfile contains AES key used |\n\
             | to encrypt the partitions. The contents of the key file needs  |\n\
             | to written to efuse or bbram.                                  |\n\
             | If the key file is not present in the path specified, a new key|\n\
             | is generated by bootgen, which is used for encryption.         |\n\
             | Key file should be specified for each partition.               |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | aeskeyfile = <key filename>                                    |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | test:                                                          |\n\
             | {                                                              |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |             type = bootloader,                                 |\n\
             |             encryption = aes,                                  |\n\
             |             keysrc = bbram_red_key,                            |\n\
             |             aeskeyfile = key1.nky,                             |\n\
             |             file = plm.elf                                     |\n\
             |         }                                                      |\n\
             |         {                                                      |\n\
             |             type = pmcdata,                                    |\n\
             |             load = 0xf2000000,                                 |\n\
             |             aeskeyfile = key2.nky,                             |\n\
             |             file = pmc_cdo.bin                                 |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+"


/***********************************************************************************************
* Option       : ppkfile
* Description  : Encryption Key File
************************************************************************************************/
#define HV_BIF_PPK_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | ppkfile, pskfile, spkfile, sskfile                             |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | These keys are used to authenticate partitions in the bootimage|\n\
             | A pair of keys, Primary & Secondary are used in the            |\n\
			 | authentication process.                                        |\n\
             | The primary keys authenticate the secondary keys and the       |\n\
             | secondary keys authenticate the partitions.                    |\n\
             |    PPK - Primary Public Key                                    |\n\
             |    PSK - Primary Secret Key                                    |\n\
             |    SPK - Secondary Public Key                                  |\n\
             |    SSK - Secondary Secret Key                                  |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | ppkfile = <key filename>                                       |\n\
             | pskfile = <key filename>                                       |\n\
             | spkfile = <key filename>                                       |\n\
             | sskfile = <key filename>                                       |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | all:                                                           |\n\
             | {                                                              |\n\
             |     boot_config {bh_auth_enable}                               |\n\
             |     pskfile = /path/to/primary0.pem                            |\n\
             |     sskfile = /path/to/secondary0.pem                          |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |              id = 0x00010000,                                  |\n\
             |              type = bootloader,                                |\n\
             |              authentication = rsa,                             |\n\
             |              file = /path/to/plm.elf                           |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = apu_subsys,  id = 0x1c000003                    |\n\
             |         {                                                      |\n\
             |              id = 0x00000000,                                  |\n\
             |              core = a72-0,                                     |\n\
             |              authentication = rsa,                             |\n\
             |              file = /path/to/apu.elf                           |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+\n"

//#define HV_BIF_SPKSIGN_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | spksignature                                                   |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Imports SPK signature into authentication certificate. This can|\n\
             | be used incase the user does't want to share the secret key PSK|\n\
             | The user can create a signature and provide it to Bootgen.     |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | spksignature = <signature-file>                                |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | all:                                                           |\n\
             | {                                                              |\n\
             |     headersignature = /path/to/header.sig                      |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |              id = 0x00010000,                                  |\n\
             |              type = bootloader,                                |\n\
             |              authentication = rsa,                             |\n\
             |              sskfile = /path/to/secondary-key.pem,             |\n\
             |              spksignature = /path/to/secondary-key.pem.sig,    |\n\
             |              file = /path/to/plm.elf                           |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = apu_subsys,  id = 0x1c000003                    |\n\
             |         {                                                      |\n\
             |              id = 0x00000000,                                  |\n\
             |              core = a72-0,                                     |\n\
             |              authentication = rsa,                             |\n\
             |              sskfile = /path/to/secondary-key-2.pem,           |\n\
             |              spksignature = /path/to/secondary-key-2.pem.sig,  |\n\
             |              file = /path/to/apu.elf                           |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+\n"


//#define HV_BIF_HDRSIGN_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | headersignature                                                |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Imports Header signature into authentication certificate. This |\n\
             | can be used incase the user does't want to share the secret key|\n\
             | The user can create a signature and provide it to Bootgen.     |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | headersignature = <signature-file>                             |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | all:                                                           |\n\
             | {                                                              |\n\
             |     headersignature = /path/to/header.sig                      |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |              id = 0x00010000,                                  |\n\
             |              type = bootloader,                                |\n\
             |              authentication = rsa,                             |\n\
             |              sskfile = /path/to/secondary-key.pem,             |\n\
             |              spksignature = /path/to/secondary-key.pem.sig,    |\n\
             |              file = /path/to/plm.elf                           |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = apu_subsys,  id = 0x1c000003                    |\n\
             |         {                                                      |\n\
             |              id = 0x00000000,                                  |\n\
             |              core = a72-0,                                     |\n\
             |              authentication = rsa,                             |\n\
             |              sskfile = /path/to/secondary-key-2.pem,           |\n\
             |              spksignature = /path/to/secondary-key-2.pem.sig,  |\n\
             |              file = /path/to/apu.elf                           |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+\n"


#define HV_BIF_BI_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | bootimage                                                      |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | This specifies that the following file specification is a      |\n\
             | bootimage that was created by Bootgen, being reused as input.  |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { type = bootimage }                                           |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      id = 0x2                                                  |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          { type = bootimage, file = base_pdi.bin }             |\n\
             |          { type = cdo, file = ps_cdo.bin}                      |\n\
             |          { core = a72 - 0, file = a72_app.elf}                 |\n\
             |          { core = r5 - 0, file = r5_app.elf}                   |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
-------------+----------------------------------------------------------------+\n"


#define HV_BIF_BL_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | bootloader                                                     |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | This specifies the partition is a bootloader (PLM). This      |\n\
             | attribute is specified with along with other partition bif     |\n\
             | attributes.                                                    |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { type = bootloader }                                          |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = pmc_subsys, id = 0x1c000001                    |\n\
             |          { type = bootloader, file = plm.elf }                 |\n\
             |          { type = pmcdata, file = pmc_cdo.bin }                |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_ENCR_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | encryption                                                     |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | This specifies the partition needs to be encrypted.            |\n\
             | AES-GCM is the encryption algorithm used                       |\n\
             |     Versal  : AES-GCM                                          |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { encryption = <options> }                                     |\n\
-------------+----------------------------------------------------------------+\n\
 OPTIONS     | *none : Partition not encrypted                                |\n\
             |  aes  : Partition encrypted using AES algorithm                |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | test:                                                          |\n\
             | {                                                              |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |             type = bootloader,                                 |\n\
             |             encryption = aes,                                  |\n\
             |             keysrc = bbram_red_key,                            |\n\
             |             aeskeyfile = key1.nky,                             |\n\
             |             file = plm.elf                                     |\n\
             |         }                                                      |\n\
             |         {                                                      |\n\
             |             type = pmcdata,                                    |\n\
             |             load = 0xf2000000,                                 |\n\
             |             aeskeyfile = key2.nky,                             |\n\
             |             file = pmc_cdo.bin                                 |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+"

#define HV_BIF_AUTH_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | authentication                                                 |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | This specifies the partition needs to be authenticated.        |\n\
             | Authentication Algorithms: RSA-4096, ECDSA                     |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { authenication = <options> }                                  |\n\
-------------+----------------------------------------------------------------+\n\
 OPTIONS     | *none  : Partition not authenticated                           |\n\
             |  rsa   : Partition authenticated using RSA algorithm           |\n\
             |  ecdsa : Partition authenticated using RSA algorithm           |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      boot_config{ bh_auth_enable }                             |\n\
             |      pskfile = primary0.pem                                    |\n\
             |      sskfile = secondary0.pem                                  |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = pmc_ss, id = 0x1c000001                        |\n\
             |          {                                                     |\n\
             |              type = bootloader,                                |\n\
             |              authentication = rsa,                             |\n\
             |              file = plm.elf                                    |\n\
             |          }                                                     |\n\
             |          {                                                     |\n\
             |              type = pmcdata,                                   |\n\
             |              load = 0xf2000000,                                |\n\
             |              file = pmc_cdo.bin                                |\n\
             |          }                                                     |\n\
             |      }                                                         |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          {                                                     |\n\
             |              type = cdo,                                       |\n\
             |              authentication = rsa,                             |\n\
             |              file = ps_cdo.bin                                 |\n\
             |          }                                                     |\n\
             |          {                                                     |\n\
             |              core = a72-0,                                     |\n\
             |              authentication = rsa,                             |\n\
             |              file = a72_app.elf                                |\n\
             |          }                                                     |\n\
             |      }                                                         |\n\
             |   }                                                            |\n\
-------------+----------------------------------------------------------------+\n"


#define HV_BIF_CHKSM_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | checksum                                                       |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | This specifies the partition needs to be checksummed.          |\n\
             | Checksum Algorithms: SHA3                                      |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { checksum = <options> }                                       |\n\
-------------+----------------------------------------------------------------+\n\
 OPTIONS     | *none : no checksum operation                                  |\n\
             |  sha3 : SHA3 checksum operation                                |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      init = reginit.ini                                        |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          { type=bootloader, checksum=sha3, file=plm.elf }      |\n\
             |          { type=pmcdata, load=0xf2000000, file=pmc_cdo.bin}    |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
-------------+----------------------------------------------------------------+\n\
 NOTE        | Checksum operation is not supported along with authentication  |\n\
             | and encryption.                                                |\n\
-------------+----------------------------------------------------------------+\n"


#define HV_BIF_POWNER_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | owner                                                          |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Owner of the partition which is responsible to load the        |\n\
             | partition.                                                     |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { owner = <options> }                                          |\n\
-------------+----------------------------------------------------------------+\n\
 OPTIONS     | *plm  : PLM loads this partition                               |\n\
             |  non-plm : PLM ignores this partition, someone else loads      |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | test:                                                          |\n\
             | {                                                              |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |              id = 0x00010000,                                  |\n\
             |              type = bootloader,                                |\n\
             |              file = /path/to/plm.elf                           |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = apu_subsys,  id = 0x1c000003                    |\n\
             |         {                                                      |\n\
             |              id = 0x00000000,                                  |\n\
             |              core = a72-0,                                     |\n\
             |              owner = non-plm,                                  |\n\
             |              file = /path/to/hello.elf                         |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+\n"


//#define HV_BIF_PRESIGN_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | presign                                                        |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Imports partition signature into partition authenticate        |\n\
             | certificate.                                                   |\n\
             | This can be used incase the user does't want to share the      |\n\
             | secret key(SSK). The user can create a signature and provide   |\n\
             | it to Bootgen.                                                 |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { presign = <signature-file> }                                 |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | all:                                                           |\n\
             | {                                                              |\n\
             |     ppkfile = /path/to/primary0.pem                            |\n\
             |     headersignature = /path/to/headers.sha256.sig              |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |              id = 0x00010000,                                  |\n\
             |              type = bootloader,                                |\n\
             |              authentication = rsa,                             |\n\
             |              spkfile = /path/to/secondary-key.pem,             |\n\
             |              spksignature = /path/to/sec-key.pem.sha384.sig,   |\n\
             |              presign = /path/to/plm.sha384.sig,                |\n\
             |              file = /path/to/plm.elf                           |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_OFFSET_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | offset                                                         |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Sets the absolute offset of the partition in the boot image.   |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { offset = <value> }                                           |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  all:                                                          |\n\
             |  {                                                             |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          { type=bootloader, file=plm.elf }                     |\n\
             |          { type=pmcdata, file=pmc_data.cdo }                   |\n\
             |          { type=cdo, file=ddr.rnpi }                           |\n\
             |          { core=psm, file=psm.elf }                            |\n\
             |          { type=cdo, file=ps_data.cdo }                        |\n\
             |          { type=cdo, file=subsystem.cdo }                      |\n\
             |          { file=u-boot.elf }                                   |\n\
             |          { load=0x1000, offset=0xa00000, file=system.dtb }     |\n\
             |          { core=a72-0, exception_level=el-3, file=bl31.elf }   |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
-------------+----------------------------------------------------------------+\n"


#define HV_BIF_LOAD_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | load                                                           |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Sets the load address for the partition in memory.             |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { load = <value> }                                             |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          { type=bootloader, checksum=sha3, file=plm.elf }      |\n\
             |          { type=pmcdata, load=0xf2000000, file=pmc_cdo.bin}    |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_KEYSRC_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | keysrc                                                         |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Key source for encryption                                      |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { keysrc = <options> }                                         |\n\
-------------+----------------------------------------------------------------+\n\
 OPTIONS     | efuse_red_key  : Red Key stored in efuse                       |\n\
             | bbram_red_key  : Red Key stored in bbram                       |\n\
             | efuse_gry_key  : Grey (Obfuscated) Key stored in efuse         |\n\
             | bbram_gry_key  : Grey (Obfuscated) Key stored in bbram         |\n\
             | bh_gry_key     : Grey (Obfuscated) Key stored in boot header   |\n\
             | efuse_blk_key  : Black Key stored in efuse                     |\n\
             | bbram_blk_key  : Black Key stored in bbram                     |\n\
             | bh_blk_key     : Black Key stored in boot header               |\n\
             | kup_key        : User Key in boot header                       |\n\
             | user_key0      : User Key 0                                    |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | test:                                                          |\n\
             | {                                                              |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |             type = bootloader,                                 |\n\
             |             encryption = aes,                                  |\n\
             |             keysrc = bbram_red_key,                            |\n\
             |             aeskeyfile = key1.nky,                             |\n\
             |             file = plm.elf                                     |\n\
             |         }                                                      |\n\
             |         {                                                      |\n\
             |             type = pmcdata,                                    |\n\
             |             load = 0xf2000000,                                 |\n\
             |             aeskeyfile = key2.nky,                             |\n\
             |             file = pmc_cdo.bin                                 |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_PMCCONFIG_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | boot_config                                                    |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | These parameters are used to configure the bootimage           |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | boot_config { <options> }                                      |\n\
-------------+---------------------+------------------------------------------+\n\
 OPTIONS     |       Options       |             Description                  |\n\
             +---------------------+------------------------------------------+\n\
             | bh_auth_enable      | Boot Header Authentication Enable:       |\n\
             |                     | Authentication of the bootimage will     |\n\
             |                     | be done excluding the verification of    |\n\
             |                     | PPK hash and SPK ID.                     |\n\
             +---------------------+------------------------------------------+\n\
             | pufhd_bh            | PUF helper data is stored in BH.         |\n\
             |                     | (Default is efuse)                       |\n\
             |                     | PUF helper data file is passed to bootgen|\n\
             |                     | using the option [puf_file].             |\n\
             +---------------------+------------------------------------------+\n\
             | puf4kmode           | PUF is tuned to use in 4k bit syndrome   |\n\
             |                     | configuration.                           |\n\
             |                     | (Default is 12k bit)                     |\n\
             +---------------------+------------------------------------------+\n\
             | shutter = <value>   | 32 bit PUF_SHUT register value to        |\n\
             |                     | configure PUF for shutter offset time    |\n\
             |                     | and shutter open time.                   |\n\
             +---------------------+------------------------------------------+\n\
             | smap_width = <value>| 8, 16, 32                                |\n\
             |                     | Default is 32-bit                        |\n\
-------------+---------------------+------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             +----------------------------------------------------------------|\n\
             | bh_auth_enable_smap_width:                                     |\n\
             | {                                                              |\n\
             |     boot_config { bh_auth_enable, smap_width=16 }              |\n\
             |     pskfile = /path/to/primary0.pem                            |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |              id = 0x00010000,                                  |\n\
             |              type = bootloader,                                |\n\
             |              authentication = rsa,                             |\n\
             |              sskfile = /path/to/secondary-key.pem,             |\n\
             |              file = /path/to/plm.elf                           |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_DESTCPU_H "\
-------------+----------------------------------------------------------------+\n\
ATTRIBUTE    | core                                                           |\n\
-------------+----------------------------------------------------------------+\n\
DESCRIPTION  | Specifies which core will execute the partition                |\n\
-------------+----------------------------------------------------------------+\n\
USAGE        | { core = <options> }                                           |\n\
-------------+----------------------------------------------------------------+\n\
OPTIONS      | * a72-0                                                        |\n\
             |   a72-1                                                        |\n\
             |   r5-0                                                         |\n\
             |   r5-1                                                         |\n\
             |   psm                                                          |\n\
-------------+----------------------------------------------------------------+\n\
EXPLANATION  | Sample BIF - test.bif                                          |\n\
             | test:                                                          |\n\
             | {                                                              |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |             type = bootloader,                                 |\n\
             |             encryption = aes,                                  |\n\
             |             keysrc = bbram_red_key,                            |\n\
             |             aeskeyfile = key1.nky,                             |\n\
             |             file = plm.elf                                     |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = apu_subsys,  id = 0x1c000003                    |\n\
             |         {                                                      |\n\
             |              id = 0x00000000,                                  |\n\
             |              core = a72-0,                                     |\n\
             |              offset = 0x500000,                                |\n\
             |              file = /path/to/apu.bin                           |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_TYPE_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | type                                                           |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Specifies the type of partition                                |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { type = <options> }                                           |\n\
-------------+----------------------------------------------------------------+\n\
 OPTIONS     | bootloader                                                     |\n\
             | pmcdata                                                        |\n\
             | cdo                                                            |\n\
             | cfi                                                            |\n\
             | bootimage                                                      |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | all:                                                           |\n\
             | {                                                              |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = pmc_subsys, id = 0x1c000001                    |\n\
             |          {                                                     |\n\
             |               type = bootloader,                               |\n\
             |               file = plm.elf                                   |\n\
             |          }                                                     |\n\
             |          {                                                     |\n\
             |               type = pmcdata,                                  |\n\
             |               load = 0xf2000000,                               |\n\
             |               file = pmc_data.cdo                              |\n\
             |          }                                                     |\n\
             |      }                                                         |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_EL_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | exception_level                                                |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Exception level for which the core should be configured        |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { exception_level = <options> }                                |\n\
-------------+----------------------------------------------------------------+\n\
 OPTIONS     |  el-0                                                          |\n\
             |  el-1                                                          |\n\
             |  el-2                                                          |\n\
             | *el-3                                                          |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | test:                                                          |\n\
             | {                                                              |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |             type = bootloader,                                 |\n\
             |             encryption = aes,                                  |\n\
             |             keysrc = bbram_red_key,                            |\n\
             |             aeskeyfile = key1.nky,                             |\n\
             |             file = plm.elf                                     |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = apu_subsys,  id = 0x1c000003                    |\n\
             |         {                                                      |\n\
             |              id = 0x00000000,                                  |\n\
             |              core = a72-0,                                     |\n\
             |              exception_level = el-3,                           |\n\
             |              trustzone = secure,                               |\n\
             |              file = /path/to/bl31.elf                          |\n\
             |         }                                                      |\n\
             |         {                                                      |\n\
             |              id = 0x00000001,                                  |\n\
             |              core = a72-0,                                     |\n\
             |              exception_level = el-2,                           |\n\
             |              file = /path/to/u-boot.elf                        |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_TZ_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | trustzone                                                      |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Configures the core to be Trustzone secure or nonsecure        |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { trustzone = <options> }                                      |\n\
-------------+----------------------------------------------------------------+\n\
 OPTIONS     |  *secure                                                       |\n\
             |  nonsecure                                                     |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | test:                                                          |\n\
             | {                                                              |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |             type = bootloader,                                 |\n\
             |             encryption = aes,                                  |\n\
             |             keysrc = bbram_red_key,                            |\n\
             |             aeskeyfile = key1.nky,                             |\n\
             |             file = plm.elf                                     |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = apu_subsys,  id = 0x1c000003                    |\n\
             |         {                                                      |\n\
             |              id = 0x00000000,                                  |\n\
             |              core = a72-0,                                     |\n\
             |              exception_level = el-3,                           |\n\
             |              trustzone = secure,                               |\n\
             |              file = /path/to/bl31.elf                          |\n\
             |         }                                                      |\n\
             |         {                                                      |\n\
             |              id = 0x00000001,                                  |\n\
             |              core = a72-0,                                     |\n\
             |              exception_level = el-2,                           |\n\
             |              file = /path/to/u-boot.elf                        |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_BOOTDEV_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | boot_device                                                    |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Secondary Boot Attributes                                      |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | boot_device { <device>, address= <address> }                   |\n\
             | <device>  - To specify the secondary boot device.              |\n\
             | address   - To specify the address at which the image is       |\n\
             |             present in the secondary boot device.              |\n\
             |             Default address is 0.                              |\n\
-------------+----------------------------------------------------------------|\n\
 OPTIONS     |  qspi32                                                        |\n\
             |  qspi24                                                        |\n\
             |  nand                                                          |\n\
             |  sd0                                                           |\n\
             |  sd1                                                           |\n\
             |  sd-ls                                                         |\n\
             |  mmc                                                           |\n\
             |  usb                                                           |\n\
             |  ethernet                                                      |\n\
             |  pcie                                                          |\n\
             |  sata                                                          |\n\
             |  ospi                                                          |\n\
             |  smap                                                          |\n\
             |  sbi                                                           |\n\
             |  sd0-raw                                                       |\n\
             |  sd1-raw                                                       |\n\
             |  sd-ls-raw                                                     |\n\
             |  mmc-raw                                                       |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF 1 - test.bif                                        |\n\
             | all:                                                           |\n\
             | {                                                              |\n\
             |      boot_device { qspi32, address = 0x10000 }                 |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = pmc_subsys, id = 0x1c000001                    |\n\
             |          {                                                     |\n\
             |               type = bootloader,                               |\n\
             |               file = plm.elf                                   |\n\
             |          }                                                     |\n\
             |          {                                                     |\n\
             |              type = pmcdata,                                   |\n\
             |              load = 0xf2000000,                                |\n\
             |              file = pmc_data.cdo                               |\n\
             |          }                                                     |\n\
             |      }                                                         |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_BHKEY_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | bh_keyfile                                                     |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | 256-bit obfuscated key to be stored in boot header             |\n\
             | This is only valid, when [keysrc_encryption] bh_gry_key        |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | bh_keyfile = <key file path>                                   |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | test:                                                          |\n\
             | {                                                              |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |             type = bootloader,                                 |\n\
             |             encryption = aes,                                  |\n\
             |             keysrc = bh_gry_key,                               |\n\
             |             bh_keyfile = obfuscated_key.txt                    |\n\
             |             bh_key_iv = obfuscated_iv.txt                      |\n\
             |             aeskeyfile = key1.nky,                             |\n\
             |             file = plm.elf                                     |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
-------------+----------------------------------------------------------------+\n"


#define HV_BIF_BHIV_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | bh_key_iv                                                      |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Initialization vector used when decrypting the obfuscated key  |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | bh_key_iv = <iv file path>                                     |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | test:                                                          |\n\
             | {                                                              |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |             type = bootloader,                                 |\n\
             |             encryption = aes,                                  |\n\
             |             keysrc = bh_gry_key,                               |\n\
             |             bh_keyfile = obfuscated_key.txt                    |\n\
             |             bh_key_iv = obfuscated_iv.txt                      |\n\
             |             aeskeyfile = key1.nky,                             |\n\
             |             file = plm.elf                                     |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
-------------+----------------------------------------------------------------+\n"


#define HV_BIF_METAL_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | familykey                                                      |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Specify family key to generate obfuscated key from red key     |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | familykey = <key file path>                                    |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | all:                                                           |\n\
             | {                                                              |\n\
             |    aeskeyfile = encr.nky                                       |\n\
             |    bh_key_iv = bh_iv.txt                                       |\n\
             |    familykey = familykey.txt                                   |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+\n"	


#define HV_BIF_BLOCKS_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | blocks                                                         |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Specify block sizes for key-rolling feature in encrytion.      |\n\
             | Each module is encrypted using its own unique key. The initial |\n\
             | key is stored at the key source on the device, while keys for  |\n\
             | each successive module are encrypted (wrapped) in the previous |\n\
             | module.                                                        |\n\
             | <size> mentioned will be taken in Bytes. If X(*) is specified, |\n\
             | then all the remaining blocks would of the size 'X'.           |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { blocks = <size><num>; <size><num>; ...; <size><*> }          |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | test:                                                          |\n\
             | {                                                              |\n\
             |     image                                                      |\n\
             |     {                                                          |\n\
             |         name = pmc_subsys, id = 0x1c000001                     |\n\
             |         {                                                      |\n\
             |             type = bootloader,                                 |\n\
             |             encryption = aes,                                  |\n\
             |             keysrc = bbram_red_key,                            |\n\
             |             aeskeyfile = key1.nky,                             |\n\
             |             blocks= 512(2); 65536; 8192(*)                     |\n\
             |             file = plm.elf                                     |\n\
             |         }                                                      |\n\
             |     }                                                          |\n\
-------------+----------------------------------------------------------------+\n\
             | In the above example, the first two blocks are of 512 bytes,   |\n\
             | next block is of 65536 bytes, the rest of the partition into   |\n\
             | blocks of 8192 bytes.                                          |\n\
-------------+----------------------------------------------------------------+\n"


#define HV_BIF_DELAYHNDOFF_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | delay_handoff                                                  |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | With this flag specified, the handoff to subsystem is delayed  |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { delay_handoff }                                              |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | test:                                                          |\n\
             | {                                                              |\n\
             |      id = 2                                                    |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = pmc_subsys, id = 0x1c000001                    |\n\
             |          { type = bootloader, file = plm.elf }                 |\n\
             |          { type = pmcdata, file = pmc_cdo.bin }                |\n\
             |      }                                                         |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = subsys_1, id = 0x1c000000, delay_handoff       |\n\
             |          { type = cdo, file = apu_cdo.cdo }                    |\n\
             |          { core = a72-0, file = apu.elf }                      |\n\
             |      }                                                         |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+\n"


#define HV_BIF_DELAYLOAD_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | delay_load                                                     |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | With this flag specified, the loading of subsystem is delayed  |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { delay_load }                                                 |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | test:                                                          |\n\
             | {                                                              |\n\
             |      id = 2                                                    |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = pmc_subsys, id = 0x1c000001                    |\n\
             |          { type = bootloader, file = plm.elf }                 |\n\
             |          { type = pmcdata, file = pmc_cdo.bin }                |\n\
             |      }                                                         |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = subsys_1, id = 0x1c000000, delay_load          |\n\
             |          { type = cdo, file = apu_cdo.cdo }                    |\n\
             |          { core = a72-0, file = apu.elf }                      |\n\
             |      }                                                         |\n\
             | }                                                              |\n\
-------------+----------------------------------------------------------------+\n"


#define HV_BIF_PARTITION_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | partition                                                      |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | This attribute is used to define a partition                   |\n\
             | It is an optional attribute to make the BIF short and readable |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | partition {  }                                                 |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      id = 0x2                                                  |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = WDI_FLAT, id = 0x1c000000                      |\n\
             |          partition                                             |\n\
             |          {                                                     |\n\
             |              id = 0x1                                          |\n\
             |              type = bootloader                                 |\n\
             |              file = plm.elf                                    |\n\
             |          }                                                     |\n\
             |          partition                                             |\n\
             |          {                                                     |\n\
             |              id = 0x9                                          |\n\
             |              type = pmcdata,                                   |\n\
             |              file = pmc_cdo.bin                                |\n\
             |          }                                                     |\n\
             |          partition                                             |\n\
             |          {                                                     |\n\
             |              id = 0x3                                          |\n\
             |              type = cdo                                        |\n\
             |              file = bitstream.rcdo                             |\n\
             |          }                                                     |\n\
             |          partition                                             |\n\
             |          {                                                     |\n\
             |              id = 0x4                                          |\n\
             |              file = bitstream.rcfi                             |\n\
             |          }                                                     |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
             |                                                                |\n\
             | The same BIF can be written in shorter format as:              |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      id = 0x2                                                  |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = WDI_FLAT, id = 0x1c000000                      |\n\
             |          { id = 0x1, type = bootloader, file = plm.elf }       |\n\
             |          { id = 0x9, type = pmcdata, file = pmc_cdo.bin }      |\n\
             |          { id = 0x3, type = cdo, file = bitstream.rcdo }       |\n\
             |          { id = 0x4, file = bitstream.rcfi }                   |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
             |                                                                |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_IMAGE_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | image                                                          |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | This attribute is used to define a subsytem/image              |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | image {  }                                                     |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      id = 0x2                                                  |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = PMC_SS, id = 0x1c000000                        |\n\
             |          { id = 0x1, type = bootloader, file = plm.elf }       |\n\
             |          { id = 0x9, type = pmcdata, file = pmc_cdo.bin }      |\n\
             |      }                                                         |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = PL_SS, id = 0x1c000004                         |\n\
             |          { id = 0x3, type = cdo, file = bitstream.rcdo }       |\n\
             |          { id = 0x4, file = bitstream.rcfi }                   |\n\
             |          { id = 0x4, file = bitstream.rnpi }                   |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
             |                                                                |\n\
             | Here two subsystems/images are created:                        |\n\
             |   1. PMC_SS (0x1c000000)                                       |\n\
             |   2. PL_SS (0x1c000004)                                        |\n\
-------------+----------------------------------------------------------------|\n"

#define HV_BIF_METAHDR_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | metahdr                                                        |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | This attribute is used to define encryption, authentication    |\n\
             | attributes for meta headers like keys, key sources etc.        |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | metahdr {  }                                                   |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | test:                                                          |\n\
             |  {                                                             |\n\
             |      metaheader                                                |\n\
             |      {                                                         |\n\
             |          encryption = aes,                                     |\n\
             |          keysrc = bbram_red_key,                               |\n\
             |          aeskeyfile = headerkey.nky,                           |\n\
             |          authentication = rsa                                  |\n\
             |      }                                                         |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = pmc_subsys, id = 0x1c000001                    |\n\
             |          {                                                     |\n\
             |              type = bootloader,                                |\n\
             |              encryption = aes,                                 |\n\
             |              keysrc = bbram_red_key,                           |\n\
             |              aeskeyfile = key1.nky,                            |\n\
             |              blocks = 8192(*),                                 |\n\
             |              file = plm.elf                                    |\n\
             |          }                                                     |\n\
             |          {                                                     |\n\
             |              type = pmcdata,                                   |\n\
             |              load = 0xf2000000,                                |\n\
             |              aeskeyfile = key2.nky,                            |\n\
             |              file = pmc_cdo.bin                                |\n\
             |          }                                                     |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
-------------+----------------------------------------------------------------|\n"

#define HV_BIF_RES_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | reserve                                                        |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Reserves the memory and padded after the partition.            |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { reserve = <value> }                                          |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             | all:                                                           |\n\
             |  {                                                             |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          { type = bootloader, file = plm.elf }                 |\n\
             |          { type = pmcdata, file = pmc_data.cdo }               |\n\
             |          { reserve = 0x1000, file = system.bin }               |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
-------------+----------------------------------------------------------------+\n"


#define HV_BIF_COPY_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | copy                                                           |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Copies the image to memory at specified address.               |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { copy = <addr> }                                              |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      id = 2                                                    |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = pmc_subsys, id = 0x1c000001                    |\n\
             |          { id = 0x1, type = bootloader, file = plm.elf  }      |\n\
             |          { type = pmcdata, file = pmc_cdo.bin }                |\n\
             |      }                                                         |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = subsys_1, id = 0x1c000000, copy = 0x30000      |\n\
             |          { core = psm, file = psm.elf }                        |\n\
             |          { type = cdo, file = ps_data.cdo }                    |\n\
             |          { core = a72 - 0, file = a72_app.elf }                |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_STARTUP_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | startup                                                        |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Provides the start/execution address in case of binary file    |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { startup = <addr> }                                           |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      id = 0x2                                                  |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = pmc_ss, id = 0x1c000001                        |\n\
             |          { type = bootloader, file = plm.elf}                  |\n\
             |          { type = pmcdata, file = pmc_cdo.bin}                 |\n\
             |          { core = psm, file = psm_fw.elf}                      |\n\
             |          { type = cdo, file = ps_cdo.bin}                      |\n\
             |          { core = a72-0, load = 0x20000, startup = 0x20000,    |\n\
             |            file = a72_app.bin }                                |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_PARENTID_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | parent_id                                                      |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Specifies the ID for the parent PDI. This is used to identify  |\n\
             | the relationship between a partial PDI and its corresponding   |\n\
             | Boot PDI                                                       |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | parent_id = <id>                                               |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      parent_id = 0x2                                           |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = psm_ss, id = 0x1c000001                        |\n\
             |          { core = psm, file = psm_fw.elf }                     |\n\
             |      }                                                         |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = apu_ss, id = 0x1c000002                        |\n\
             |          { type = cdo, file = ps_cdo.bin }                     |\n\
             |          { core = a72-0, file = a72_app.elf }                  |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_ID_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | id                                                             |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Specifies the following IDs based on the place its defined:    |\n\
             |   * pdi id       - within outermost/pdi paranthesis            |\n\
             |   * image id     - within image paranthesis                    |\n\
             |   * partition id - within partition paranthesis                |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | id = <id>                                                      |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      id = 0x2                            // PDI ID             |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = pmc_ss,                                        |\n\
             |          id = 0x1c000001                 // Image ID           |\n\
             |          {                                                     |\n\
             |              type = bootloader,                                |\n\
             |              id = 0x1,                   // Partition ID       |\n\
             |              file = plm.elf                                    |\n\
             |          }                                                     |\n\
             |          {                                                     |\n\
             |              type = pmcdata,                                   |\n\
             |              load = 0xf2000000,                                |\n\
             |              file = pmc_cdo.bin                                |\n\
             |          }                                                     |\n\
             |      }                                                         |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = psm_ss,                                        |\n\
             |          id = 0x1c000001                 // Image ID           |\n\
             |          {                                                     |\n\
             |              core = psm,                                       |\n\
             |              id = 0x3,                   // Partition ID       |\n\
             |              file = psm_fw.elf                                 |\n\
             |          }                                                     |\n\
             |      }                                                         |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = apu_ss,                                        |\n\
             |          id = 0x1c000002                 // Image ID           |\n\
             |          {                                                     |\n\
             |              type = cdo,                                       |\n\
             |              id = 0x4,                   // Partition ID       |\n\
             |              file = apu_cdo.bin                                |\n\
             |          }                                                     |\n\
             |          {                                                     |\n\
             |              core = a72-0,                                     |\n\
             |              id = 0x5,                   // Partition ID       |\n\
             |              file = a72_app.bin                                |\n\
             |          }                                                     |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_NAME_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | name                                                           |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Specifies the name of the image/subsystem                      |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | name = <name>                                                  |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      id = 0x2                            // PDI ID             |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = pmc_ss,                  // Image name         |\n\
             |          id = 0x1c000001                 // Image ID           |\n\
             |          {                                                     |\n\
             |              type = bootloader,                                |\n\
             |              id = 0x1,                   // Partition ID       |\n\
             |              file = plm.elf                                    |\n\
             |          }                                                     |\n\
             |          {                                                     |\n\
             |              type = pmcdata,                                   |\n\
             |              load = 0xf2000000,                                |\n\
             |              file = pmc_cdo.bin                                |\n\
             |          }                                                     |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_FILE_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | file                                                           |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Specifies the file for creating the partition                  |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { file = <path/to/file> }                                      |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      id = 0x2                                                  |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = pmc_ss, id = 0x1c000001                        |\n\
             |          { type = bootloader, file = plm.elf}                  |\n\
             |          { type = pmcdata, file = pmc_cdo.bin}                 |\n\
             |          { core = psm, file = psm_fw.elf}                      |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
-------------+----------------------------------------------------------------+\n"

#define HV_BIF_PMCDATA_H "\
-------------+----------------------------------------------------------------+\n\
 ATTRIBUTE   | pmcdata                                                        |\n\
-------------+----------------------------------------------------------------+\n\
 DESCRIPTION | Specifies the PMC CDO file which is stiched along with PLM to  |\n\
             | form a single partition loaded by BootRoM                      |\n\
             | This data is encrypted separately but authenticated as a single|\n\
             | partition along with PLM                                       |\n\
-------------+----------------------------------------------------------------+\n\
 USAGE       | { type = <pmc cdo> }                                           |\n\
-------------+----------------------------------------------------------------+\n\
 EXPLANATION | Sample BIF - test.bif                                          |\n\
             |  test:                                                         |\n\
             |  {                                                             |\n\
             |      id = 0x2                                                  |\n\
             |      image                                                     |\n\
             |      {                                                         |\n\
             |          name = pmc_ss, id = 0x1c000001                        |\n\
             |          { type = bootloader, file = plm.elf}                  |\n\
             |          { type = pmcdata, file = pmc_cdo.bin}                 |\n\
             |          { core = psm, file = psm_fw.elf}                      |\n\
             |      }                                                         |\n\
             |  }                                                             |\n\
-------------+----------------------------------------------------------------+\n"
#endif