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
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
|
/*
* Copyright (C) 2019 Michael Brown <mbrown@fensystems.co.uk>.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*
* You can also choose to distribute this program under the terms of
* the Unmodified Binary Distribution Licence (as given in the file
* COPYING.UBDL), provided that you have satisfied its requirements.
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
FILE_SECBOOT ( PERMITTED );
#include <string.h>
#include <ctype.h>
#include <errno.h>
#include <assert.h>
#include <byteswap.h>
#include <ipxe/netdevice.h>
#include <ipxe/image.h>
#include <ipxe/uaccess.h>
#include <ipxe/umalloc.h>
#include <ipxe/fdt.h>
/** @file
*
* Flattened Device Tree
*
*/
/** The system flattened device tree (if present) */
struct fdt sysfdt;
/** The downloaded flattened device tree tag */
struct image_tag fdt_image __image_tag = {
.name = "FDT",
};
/** Amount of free space to add whenever we have to reallocate a tree */
#define FDT_INSERT_PAD 1024
/**
* Check if character is permitted in a name
*
* @v ch Character
* @ret is_permitted Character is permitted in a name
*/
static int fdt_permitted ( char ch ) {
static const char permitted[] = ",._+?#-";
return ( isalnum ( ch ) || strchr ( permitted, ch ) );
}
/**
* Compare node name
*
* @v desc Token descriptor
* @v name Name (terminated by NUL or any non-permitted character)
* @ret is_match Name matches token descriptor
*/
static int fdt_match ( const struct fdt_descriptor *desc, const char *name ) {
size_t len = strlen ( desc->name );
/* Check name and terminator */
return ( ( memcmp ( desc->name, name, len ) == 0 ) &&
( ! ( name[len] && fdt_permitted ( name[len] ) ) ) );
}
/**
* Describe device tree token
*
* @v fdt Device tree
* @v offset Offset within structure block
* @v desc Token descriptor to fill in
* @ret rc Return status code
*/
int fdt_describe ( struct fdt *fdt, unsigned int offset,
struct fdt_descriptor *desc ) {
const fdt_token_t *token;
const void *data;
const struct fdt_prop *prop;
unsigned int name_off;
size_t remaining;
size_t len;
/* Sanity checks */
assert ( offset <= fdt->len );
assert ( ( offset & ( FDT_STRUCTURE_ALIGN - 1 ) ) == 0 );
/* Initialise descriptor */
memset ( desc, 0, sizeof ( *desc ) );
desc->offset = offset;
/* Locate token and calculate remaining space */
token = ( fdt->raw + fdt->structure + offset );
remaining = ( fdt->len - offset );
if ( remaining < sizeof ( *token ) ) {
DBGC ( fdt, "FDT truncated tree at +%#04x\n", offset );
return -EINVAL;
}
remaining -= sizeof ( *token );
data = ( ( ( const void * ) token ) + sizeof ( *token ) );
len = 0;
/* Handle token */
switch ( *token ) {
case cpu_to_be32 ( FDT_BEGIN_NODE ):
/* Start of node */
desc->name = data;
len = ( strnlen ( desc->name, remaining ) + 1 /* NUL */ );
if ( remaining < len ) {
DBGC ( fdt, "FDT unterminated node name at +%#04x\n",
offset );
return -EINVAL;
}
desc->depth = +1;
break;
case cpu_to_be32 ( FDT_END_NODE ):
/* End of node */
desc->depth = -1;
break;
case cpu_to_be32 ( FDT_PROP ):
/* Property */
prop = data;
if ( remaining < sizeof ( *prop ) ) {
DBGC ( fdt, "FDT truncated property at +%#04x\n",
offset );
return -EINVAL;
}
desc->data = ( ( ( const void * ) prop ) + sizeof ( *prop ) );
desc->len = be32_to_cpu ( prop->len );
len = ( sizeof ( *prop ) + desc->len );
if ( remaining < len ) {
DBGC ( fdt, "FDT overlength property at +%#04x\n",
offset );
return -EINVAL;
}
name_off = be32_to_cpu ( prop->name_off );
if ( name_off > fdt->strings_len ) {
DBGC ( fdt, "FDT property name outside strings "
"block at +%#04x\n", offset );
return -EINVAL;
}
desc->name = ( fdt->raw + fdt->strings + name_off );
break;
case cpu_to_be32 ( FDT_NOP ):
/* Do nothing */
break;
default:
/* Unrecognised or unexpected token */
DBGC ( fdt, "FDT unexpected token %#08x at +%#04x\n",
be32_to_cpu ( *token ), offset );
return -EINVAL;
}
/* Calculate offset to next token */
len = ( ( len + FDT_STRUCTURE_ALIGN - 1 ) &
~( FDT_STRUCTURE_ALIGN - 1 ) );
offset += ( sizeof ( *token ) + len );
desc->next = offset;
/* Sanity checks */
assert ( offset <= fdt->len );
return 0;
}
/**
* Describe next device tree token
*
* @v fdt Device tree
* @v desc Token descriptor to update
* @ret rc Return status code
*/
static int fdt_next ( struct fdt *fdt, struct fdt_descriptor *desc ) {
/* Describe next token */
return fdt_describe ( fdt, desc->next, desc );
}
/**
* Enter node
*
* @v fdt Device tree
* @v offset Starting node offset
* @v desc Begin node descriptor to fill in
* @ret rc Return status code
*/
static int fdt_enter ( struct fdt *fdt, unsigned int offset,
struct fdt_descriptor *desc ) {
int rc;
/* Find begin node token */
for ( ; ; offset = desc->next ) {
/* Describe token */
if ( ( rc = fdt_describe ( fdt, offset, desc ) ) != 0 ) {
DBGC ( fdt, "FDT +%#04x has malformed node: %s\n",
offset, strerror ( rc ) );
return rc;
}
/* Check for begin node token */
if ( desc->depth > 0 )
return 0;
/* Check for non-NOPs */
if ( desc->depth ) {
DBGC ( fdt, "FDT +%#04x has spurious node end at "
"+%#04x\n", offset, desc->offset );
return -EINVAL;
}
if ( desc->name ) {
DBGC ( fdt, "FDT +%#04x has spurious property at "
"+%#04x\n", offset, desc->offset );
return -EINVAL;
}
}
}
/**
* Find node relative depth
*
* @v fdt Device tree
* @v offset Starting node offset
* @v target Target node offset
* @ret depth Depth, or negative error
*/
static int fdt_depth ( struct fdt *fdt, unsigned int offset,
unsigned int target ) {
struct fdt_descriptor desc;
int depth;
int rc;
/* Enter node */
if ( ( rc = fdt_enter ( fdt, offset, &desc ) ) != 0 )
return rc;
/* Find target node */
for ( depth = 0 ; depth >= 0 ; depth += desc.depth ) {
/* Describe token */
if ( ( rc = fdt_next ( fdt, &desc ) ) != 0 ) {
DBGC ( fdt, "FDT +%#04x has malformed node: %s\n",
offset, strerror ( rc ) );
return rc;
}
/* Check for target node */
if ( desc.offset == target ) {
DBGC2 ( fdt, "FDT +%#04x has descendant node +%#04x "
"at depth +%d\n", offset, target, depth );
return depth;
}
}
DBGC ( fdt, "FDT +#%04x has no descendant node +%#04x\n",
offset, target );
return -ENOENT;
}
/**
* Find parent node
*
* @v fdt Device tree
* @v offset Starting node offset
* @v parent Parent node offset to fill in
* @ret rc Return status code
*/
int fdt_parent ( struct fdt *fdt, unsigned int offset, unsigned int *parent ) {
struct fdt_descriptor desc;
int pdepth;
int depth;
int rc;
/* Find depth from root of tree */
depth = fdt_depth ( fdt, 0, offset );
if ( depth < 0 ) {
rc = depth;
return rc;
}
pdepth = ( depth - 1 );
/* Enter root node */
if ( ( rc = fdt_enter ( fdt, 0, &desc ) ) != 0 )
return rc;
*parent = desc.offset;
/* Find parent node */
for ( depth = 0 ; depth >= 0 ; depth += desc.depth ) {
/* Describe token */
if ( ( rc = fdt_next ( fdt, &desc ) ) != 0 ) {
DBGC ( fdt, "FDT +%#04x has malformed node: %s\n",
offset, strerror ( rc ) );
return rc;
}
/* Record possible parent node */
if ( ( depth == pdepth ) && desc.name && ( ! desc.data ) )
*parent = desc.offset;
/* Check for target node */
if ( desc.offset == offset ) {
DBGC2 ( fdt, "FDT +%#04x has parent node at +%#04x\n",
offset, *parent );
return 0;
}
}
DBGC ( fdt, "FDT +#%04x has no parent node\n", offset );
return -ENOENT;
}
/**
* Find child node
*
* @v fdt Device tree
* @v offset Starting node offset
* @v name Node name
* @v child Child node offset to fill in
* @ret rc Return status code
*/
static int fdt_child ( struct fdt *fdt, unsigned int offset, const char *name,
unsigned int *child ) {
struct fdt_descriptor desc;
int depth;
int rc;
/* Enter node */
if ( ( rc = fdt_enter ( fdt, offset, &desc ) ) != 0 )
return rc;
/* Find child node */
for ( depth = 0 ; depth >= 0 ; depth += desc.depth ) {
/* Describe token */
if ( ( rc = fdt_next ( fdt, &desc ) ) != 0 ) {
DBGC ( fdt, "FDT +%#04x has malformed node: %s\n",
offset, strerror ( rc ) );
return rc;
}
/* Check for matching immediate child node */
if ( ( depth == 0 ) && desc.name && ( ! desc.data ) ) {
DBGC2 ( fdt, "FDT +%#04x has child node \"%s\" at "
"+%#04x\n", offset, desc.name, desc.offset );
assert ( desc.depth > 0 );
if ( fdt_match ( &desc, name ) ) {
*child = desc.offset;
return 0;
}
}
}
DBGC2 ( fdt, "FDT +%#04x has no child node \"%s\"\n", offset, name );
return -ENOENT;
}
/**
* Find end of node
*
* @v fdt Device tree
* @v offset Starting node offset
* @v end End of node offset to fill in
* @ret rc Return status code
*/
static int fdt_end ( struct fdt *fdt, unsigned int offset,
unsigned int *end ) {
struct fdt_descriptor desc;
int depth;
int rc;
/* Enter node */
if ( ( rc = fdt_enter ( fdt, offset, &desc ) ) != 0 )
return rc;
/* Find end of this node */
for ( depth = 0 ; depth >= 0 ; depth += desc.depth ) {
/* Describe token */
if ( ( rc = fdt_next ( fdt, &desc ) ) != 0 ) {
DBGC ( fdt, "FDT +%#04x has malformed node: %s\n",
offset, strerror ( rc ) );
return rc;
}
}
/* Record end offset */
*end = desc.offset;
DBGC2 ( fdt, "FDT +%#04x has end at +%#04x\n", offset, *end );
return 0;
}
/**
* Find node by path
*
* @v fdt Device tree
* @v path Node path
* @v offset Offset to fill in
* @ret rc Return status code
*/
int fdt_path ( struct fdt *fdt, const char *path, unsigned int *offset ) {
const char *tmp = path;
int rc;
/* Initialise offset */
*offset = 0;
/* Traverse tree one path segment at a time */
while ( 1 ) {
/* Skip any leading '/' */
while ( *tmp == '/' )
tmp++;
/* Terminate if there are no more path components */
if ( ! *tmp )
break;
/* Find child */
if ( ( rc = fdt_child ( fdt, *offset, tmp, offset ) ) != 0 )
return rc;
/* Move to next path component, if any */
tmp = strchr ( tmp, '/' );
if ( ! tmp )
break;
}
DBGC2 ( fdt, "FDT found path \"%s\" at +%#04x\n", path, *offset );
return 0;
}
/**
* Find node by alias
*
* @v fdt Device tree
* @v name Alias name
* @v offset Offset to fill in
* @ret rc Return status code
*/
int fdt_alias ( struct fdt *fdt, const char *name, unsigned int *offset ) {
const char *alias;
int rc;
/* Locate "/aliases" node */
if ( ( rc = fdt_child ( fdt, 0, "aliases", offset ) ) != 0 )
return rc;
/* Locate alias property */
if ( ( alias = fdt_string ( fdt, *offset, name ) ) == NULL )
return -ENOENT;
DBGC ( fdt, "FDT alias \"%s\" is \"%s\"\n", name, alias );
/* Locate aliased node */
if ( ( rc = fdt_path ( fdt, alias, offset ) ) != 0 )
return rc;
return 0;
}
/**
* Find property
*
* @v fdt Device tree
* @v offset Starting node offset
* @v name Property name
* @v desc Token descriptor to fill in
* @ret rc Return status code
*/
static int fdt_property ( struct fdt *fdt, unsigned int offset,
const char *name, struct fdt_descriptor *desc ) {
int depth;
int rc;
/* Enter node */
if ( ( rc = fdt_enter ( fdt, offset, desc ) ) != 0 )
return rc;
/* Find property */
for ( depth = 0 ; depth == 0 ; depth += desc->depth ) {
/* Describe token */
if ( ( rc = fdt_next ( fdt, desc ) ) != 0 ) {
DBGC ( fdt, "FDT +%#04x has malformed node: %s\n",
offset, strerror ( rc ) );
return rc;
}
/* Check for matching immediate child property */
if ( desc->data ) {
DBGC2 ( fdt, "FDT +%#04x has property \"%s\" at "
"+%#04x len %#zx\n", offset, desc->name,
desc->offset, desc->len );
assert ( desc->depth == 0 );
if ( fdt_match ( desc, name ) ) {
DBGC2_HDA ( fdt, 0, desc->data, desc->len );
return 0;
}
}
}
DBGC2 ( fdt, "FDT +%#04x has no property \"%s\"\n", offset, name );
return -ENOENT;
}
/**
* Find strings property
*
* @v fdt Device tree
* @v offset Starting node offset
* @v name Property name
* @v count String count to fill in
* @ret string String property, or NULL on error
*/
const char * fdt_strings ( struct fdt *fdt, unsigned int offset,
const char *name, unsigned int *count ) {
struct fdt_descriptor desc;
const char *data;
size_t len;
int rc;
/* Return a zero count on error */
*count = 0;
/* Find property */
if ( ( rc = fdt_property ( fdt, offset, name, &desc ) ) != 0 )
return NULL;
/* Check NUL termination */
data = desc.data;
if ( desc.len && ( data[ desc.len - 1 ] != '\0' ) ) {
DBGC ( fdt, "FDT unterminated string property \"%s\"\n",
name );
return NULL;
}
/* Count number of strings */
for ( len = desc.len ; len-- ; ) {
if ( data[len] == '\0' )
(*count)++;
}
return data;
}
/**
* Find string property
*
* @v fdt Device tree
* @v offset Starting node offset
* @v name Property name
* @ret string String property, or NULL on error
*/
const char * fdt_string ( struct fdt *fdt, unsigned int offset,
const char *name ) {
unsigned int count;
/* Find strings property */
return fdt_strings ( fdt, offset, name, &count );
}
/**
* Get integer property
*
* @v fdt Device tree
* @v offset Starting node offset
* @v name Property name
* @v index Starting cell index
* @v count Number of cells (or 0 to read all remaining cells)
* @v value Integer value to fill in
* @ret rc Return status code
*/
int fdt_cells ( struct fdt *fdt, unsigned int offset, const char *name,
unsigned int index, unsigned int count, uint64_t *value ) {
struct fdt_descriptor desc;
const uint32_t *cell;
unsigned int total;
int rc;
/* Clear value */
*value = 0;
/* Find property */
if ( ( rc = fdt_property ( fdt, offset, name, &desc ) ) != 0 )
return rc;
cell = desc.data;
/* Determine number of cells */
total = ( desc.len / sizeof ( *cell ) );
if ( ( index > total ) || ( count > ( total - index ) ) ) {
DBGC ( fdt, "FDT truncated integer \"%s\"\n", name );
return -ERANGE;
}
if ( ! count )
count = ( total - index );
if ( count > ( sizeof ( *value ) / sizeof ( *cell ) ) ) {
DBGC ( fdt, "FDT overlength integer \"%s\"\n", name );
return -ERANGE;
}
/* Read value */
for ( cell += index ; count ; cell++, count-- ) {
*value <<= 32;
*value |= be32_to_cpu ( *cell );
}
return 0;
}
/**
* Get 64-bit integer property
*
* @v fdt Device tree
* @v offset Starting node offset
* @v name Property name
* @v value Integer value to fill in
* @ret rc Return status code
*/
int fdt_u64 ( struct fdt *fdt, unsigned int offset, const char *name,
uint64_t *value ) {
int rc;
/* Read value */
if ( ( rc = fdt_cells ( fdt, offset, name, 0, 0, value ) ) != 0 )
return rc;
return 0;
}
/**
* Get 32-bit integer property
*
* @v fdt Device tree
* @v offset Starting node offset
* @v name Property name
* @v value Integer value to fill in
* @ret rc Return status code
*/
int fdt_u32 ( struct fdt *fdt, unsigned int offset, const char *name,
uint32_t *value ) {
uint64_t value64;
int rc;
/* Read value */
if ( ( rc = fdt_u64 ( fdt, offset, name, &value64 ) ) != 0 )
return rc;
/* Check range */
*value = value64;
if ( *value != value64 ) {
DBGC ( fdt, "FDT overlength 32-bit integer \"%s\"\n", name );
return -ERANGE;
}
return 0;
}
/**
* Get package handle (phandle) property
*
* @v fdt Device tree
* @v offset Starting node offset
* @ret phandle Package handle, or 0 on error
*/
uint32_t fdt_phandle ( struct fdt *fdt, unsigned int offset ) {
uint32_t phandle;
int rc;
/* Get "phandle" or "linux,phandle" property */
if ( ( ( rc = fdt_u32 ( fdt, offset, "phandle", &phandle ) ) == 0 ) ||
( ( rc = fdt_u32 ( fdt, offset, "linux,phandle",
&phandle ) ) == 0 ) ) {
assert ( phandle != 0 );
return phandle;
}
return 0;
}
/**
* Get region cell size specification
*
* @v fdt Device tree
* @v offset Starting (parent) node offset
* @v regs Region cell size specification to fill in
*
* Note that #address-cells and #size-cells are defined on the
* immediate parent node, rather than on the node with the "reg"
* property itself.
*/
void fdt_reg_cells ( struct fdt *fdt, unsigned int offset,
struct fdt_reg_cells *regs ) {
int rc;
/* Read #address-cells, if present */
if ( ( rc = fdt_u32 ( fdt, offset, "#address-cells",
®s->address_cells ) ) != 0 ) {
regs->address_cells = FDT_DEFAULT_ADDRESS_CELLS;
}
/* Read #size-cells, if present */
if ( ( rc = fdt_u32 ( fdt, offset, "#size-cells",
®s->size_cells ) ) != 0 ) {
regs->size_cells = FDT_DEFAULT_SIZE_CELLS;
}
/* Calculate stride */
regs->stride = ( regs->address_cells + regs->size_cells );
}
/**
* Get parent region cell size specification
*
* @v fdt Device tree
* @v offset Starting node offset
* @v regs Region cell size specification to fill in
* @ret rc Return status code
*/
int fdt_parent_reg_cells ( struct fdt *fdt, unsigned int offset,
struct fdt_reg_cells *regs ) {
unsigned int parent;
int rc;
/* Get parent node */
if ( ( rc = fdt_parent ( fdt, offset, &parent ) ) != 0 )
return rc;
/* Read #address-cells and #size-cells, if present */
fdt_reg_cells ( fdt, parent, regs );
return 0;
}
/**
* Get number of regions
*
* @v fdt Device tree
* @v offset Starting node offset
* @v regs Region cell size specification
* @ret count Number of regions, or negative error
*/
int fdt_reg_count ( struct fdt *fdt, unsigned int offset,
struct fdt_reg_cells *regs ) {
struct fdt_descriptor desc;
const uint32_t *cell;
unsigned int count;
int rc;
/* Find property */
if ( ( rc = fdt_property ( fdt, offset, "reg", &desc ) ) != 0 )
return rc;
/* Determine number of regions */
count = ( desc.len / ( regs->stride * sizeof ( *cell ) ) );
return count;
}
/**
* Get region address
*
* @v fdt Device tree
* @v offset Starting node offset
* @v regs Region cell size specification
* @v index Region index
* @v address Region starting address to fill in
* @ret rc Return status code
*/
int fdt_reg_address ( struct fdt *fdt, unsigned int offset,
struct fdt_reg_cells *regs, unsigned int index,
uint64_t *address ) {
unsigned int cell = ( index * regs->stride );
int rc;
/* Read relevant portion of region array */
if ( ( rc = fdt_cells ( fdt, offset, "reg", cell, regs->address_cells,
address ) ) != 0 ) {
return rc;
}
return 0;
}
/**
* Get region size
*
* @v fdt Device tree
* @v offset Starting node offset
* @v regs Region cell size specification
* @v index Region index
* @v size Region size to fill in
* @ret rc Return status code
*/
int fdt_reg_size ( struct fdt *fdt, unsigned int offset,
struct fdt_reg_cells *regs, unsigned int index,
uint64_t *size ) {
unsigned int cell = ( ( index * regs->stride ) + regs->address_cells );
int rc;
/* Read relevant portion of region array */
if ( ( rc = fdt_cells ( fdt, offset, "reg", cell, regs->size_cells,
size ) ) != 0 ) {
return rc;
}
return 0;
}
/**
* Get unsized single-entry region address
*
* @v fdt Device tree
* @v offset Starting node offset
* @v address Region address to fill in
* @ret rc Return status code
*
* Many region types (e.g. I2C bus addresses) can only ever contain a
* single region with no size cells specified.
*/
int fdt_reg ( struct fdt *fdt, unsigned int offset, uint64_t *region ) {
struct fdt_reg_cells regs;
int rc;
/* Get parent region cell size specification */
if ( ( rc = fdt_parent_reg_cells ( fdt, offset, ®s ) ) != 0 )
return rc;
/* Get first region address */
if ( ( rc = fdt_reg_address ( fdt, offset, ®s, 0, region ) ) != 0 )
return rc;
return 0;
}
/**
* Get MAC address from property
*
* @v fdt Device tree
* @v offset Starting node offset
* @v netdev Network device
* @ret rc Return status code
*/
int fdt_mac ( struct fdt *fdt, unsigned int offset,
struct net_device *netdev ) {
struct fdt_descriptor desc;
size_t len;
int rc;
/* Find applicable MAC address property */
if ( ( ( rc = fdt_property ( fdt, offset, "mac-address",
&desc ) ) != 0 ) &&
( ( rc = fdt_property ( fdt, offset, "local-mac-address",
&desc ) ) != 0 ) ) {
return rc;
}
/* Check length */
len = netdev->ll_protocol->hw_addr_len;
if ( len != desc.len ) {
DBGC ( fdt, "FDT malformed MAC address \"%s\":\n",
desc.name );
DBGC_HDA ( fdt, 0, desc.data, desc.len );
return -ERANGE;
}
/* Fill in MAC address */
memcpy ( netdev->hw_addr, desc.data, len );
return 0;
}
/**
* Parse device tree
*
* @v fdt Device tree
* @v hdr Device tree header
* @v max_len Maximum device tree length
* @ret rc Return status code
*/
int fdt_parse ( struct fdt *fdt, struct fdt_header *hdr, size_t max_len ) {
const uint8_t *nul;
unsigned int chosen;
size_t end;
/* Sanity check */
if ( sizeof ( *hdr ) > max_len ) {
DBGC ( fdt, "FDT length %#zx too short for header\n",
max_len );
goto err;
}
/* Record device tree location */
fdt->hdr = hdr;
fdt->len = be32_to_cpu ( hdr->totalsize );
fdt->used = sizeof ( *hdr );
if ( fdt->len > max_len ) {
DBGC ( fdt, "FDT has invalid length %#zx / %#zx\n",
fdt->len, max_len );
goto err;
}
DBGC ( fdt, "FDT version %d at %p+%#04zx (phys %#08lx)\n",
be32_to_cpu ( hdr->version ), fdt->hdr, fdt->len,
virt_to_phys ( hdr ) );
/* Check signature */
if ( hdr->magic != cpu_to_be32 ( FDT_MAGIC ) ) {
DBGC ( fdt, "FDT has invalid magic value %#08x\n",
be32_to_cpu ( hdr->magic ) );
goto err;
}
/* Check version */
if ( hdr->last_comp_version != cpu_to_be32 ( FDT_VERSION ) ) {
DBGC ( fdt, "FDT unsupported version %d\n",
be32_to_cpu ( hdr->last_comp_version ) );
goto err;
}
/* Record structure block location */
fdt->structure = be32_to_cpu ( hdr->off_dt_struct );
fdt->structure_len = be32_to_cpu ( hdr->size_dt_struct );
DBGC ( fdt, "FDT structure block at +[%#04x,%#04zx)\n",
fdt->structure, ( fdt->structure + fdt->structure_len ) );
if ( ( fdt->structure > fdt->len ) ||
( fdt->structure_len > ( fdt->len - fdt->structure ) ) ) {
DBGC ( fdt, "FDT structure block exceeds table\n" );
goto err;
}
if ( ( fdt->structure | fdt->structure_len ) &
( FDT_STRUCTURE_ALIGN - 1 ) ) {
DBGC ( fdt, "FDT structure block is misaligned\n" );
goto err;
}
end = ( fdt->structure + fdt->structure_len );
if ( fdt->used < end )
fdt->used = end;
/* Record strings block location */
fdt->strings = be32_to_cpu ( hdr->off_dt_strings );
fdt->strings_len = be32_to_cpu ( hdr->size_dt_strings );
DBGC ( fdt, "FDT strings block at +[%#04x,%#04zx)\n",
fdt->strings, ( fdt->strings + fdt->strings_len ) );
if ( ( fdt->strings > fdt->len ) ||
( fdt->strings_len > ( fdt->len - fdt->strings ) ) ) {
DBGC ( fdt, "FDT strings block exceeds table\n" );
goto err;
}
end = ( fdt->strings + fdt->strings_len );
if ( fdt->used < end )
fdt->used = end;
/* Shrink strings block to ensure NUL termination safety */
nul = ( fdt->raw + fdt->strings + fdt->strings_len );
for ( ; fdt->strings_len ; fdt->strings_len-- ) {
if ( *(--nul) == '\0' )
break;
}
if ( fdt->strings_len != be32_to_cpu ( hdr->size_dt_strings ) ) {
DBGC ( fdt, "FDT strings block shrunk to +[%#04x,%#04zx)\n",
fdt->strings, ( fdt->strings + fdt->strings_len ) );
}
/* Record memory reservation block location */
fdt->reservations = be32_to_cpu ( hdr->off_mem_rsvmap );
DBGC ( fdt, "FDT memory reservations at +[%#04x,...)\n",
fdt->reservations );
if ( fdt->used <= fdt->reservations ) {
/* No size field exists: assume whole table is used */
fdt->used = fdt->len;
}
/* Identify free space (if any) */
if ( fdt->used < fdt->len ) {
DBGC ( fdt, "FDT free space at +[%#04zx,%#04zx)\n",
fdt->used, fdt->len );
}
/* Print model name and boot arguments (for debugging) */
if ( DBG_LOG ) {
DBGC ( fdt, "FDT model is \"%s\"\n",
fdt_string ( fdt, 0, "model" ) );
if ( fdt_child ( fdt, 0, "chosen", &chosen ) == 0 ) {
DBGC ( fdt, "FDT boot arguments \"%s\"\n",
fdt_string ( fdt, chosen, "bootargs" ) );
}
}
return 0;
err:
DBGC_HDA ( fdt, 0, hdr, sizeof ( *hdr ) );
memset ( fdt, 0, sizeof ( *fdt ) );
return -EINVAL;
}
/**
* Parse device tree image
*
* @v fdt Device tree
* @v image Image
* @ret rc Return status code
*/
static int fdt_parse_image ( struct fdt *fdt, struct image *image ) {
int rc;
/* Parse image */
if ( ( rc = fdt_parse ( fdt, image->rwdata, image->len ) ) != 0 ) {
DBGC ( fdt, "FDT image \"%s\" is invalid: %s\n",
image->name, strerror ( rc ) );
return rc;
}
DBGC ( fdt, "FDT image is \"%s\"\n", image->name );
return 0;
}
/**
* Insert empty space
*
* @v fdt Device tree
* @v offset Offset at which to insert space
* @v len Length to insert (must be a multiple of FDT_MAX_ALIGN)
* @ret rc Return status code
*/
static int fdt_insert ( struct fdt *fdt, unsigned int offset, size_t len ) {
size_t free;
size_t new;
int rc;
/* Sanity checks */
assert ( offset <= fdt->used );
assert ( fdt->used <= fdt->len );
assert ( ( len % FDT_MAX_ALIGN ) == 0 );
/* Reallocate tree if necessary */
free = ( fdt->len - fdt->used );
if ( free < len ) {
if ( ! fdt->realloc ) {
DBGC ( fdt, "FDT is not reallocatable\n" );
return -ENOTSUP;
}
new = ( fdt->len + ( len - free ) + FDT_INSERT_PAD );
if ( ( rc = fdt->realloc ( fdt, new ) ) != 0 )
return rc;
}
assert ( ( fdt->used + len ) <= fdt->len );
/* Insert empty space */
memmove ( ( fdt->raw + offset + len ), ( fdt->raw + offset ),
( fdt->used - offset ) );
memset ( ( fdt->raw + offset ), 0, len );
fdt->used += len;
/* Update offsets
*
* We assume that we never need to legitimately insert data at
* the start of a block, and therefore can unambiguously
* determine which block offsets need to be updated.
*
* It is the caller's responsibility to update the length (and
* contents) of the block into which it has inserted space.
*/
if ( fdt->structure >= offset ) {
fdt->structure += len;
fdt->hdr->off_dt_struct = cpu_to_be32 ( fdt->structure );
DBGC ( fdt, "FDT structure block now at +[%#04x,%#04zx)\n",
fdt->structure,
( fdt->structure + fdt->structure_len ) );
}
if ( fdt->strings >= offset ) {
fdt->strings += len;
fdt->hdr->off_dt_strings = cpu_to_be32 ( fdt->strings );
DBGC ( fdt, "FDT strings block now at +[%#04x,%#04zx)\n",
fdt->strings, ( fdt->strings + fdt->strings_len ) );
}
if ( fdt->reservations >= offset ) {
fdt->reservations += len;
fdt->hdr->off_mem_rsvmap = cpu_to_be32 ( fdt->reservations );
DBGC ( fdt, "FDT memory reservations now at +[%#04x,...)\n",
fdt->reservations );
}
return 0;
}
/**
* Fill space in structure block with FDT_NOP
*
* @v fdt Device tree
* @v offset Starting offset
* @v len Length (must be a multiple of FDT_STRUCTURE_ALIGN)
*/
static void fdt_nop ( struct fdt *fdt, unsigned int offset, size_t len ) {
fdt_token_t *token;
unsigned int count;
/* Sanity check */
assert ( ( len % FDT_STRUCTURE_ALIGN ) == 0 );
/* Fill with FDT_NOP */
token = ( fdt->raw + fdt->structure + offset );
count = ( len / sizeof ( *token ) );
while ( count-- )
*(token++) = cpu_to_be32 ( FDT_NOP );
}
/**
* Insert FDT_NOP padded space in structure block
*
* @v fdt Device tree
* @v offset Offset at which to insert space
* @v len Minimal length to insert
* @ret rc Return status code
*/
static int fdt_insert_nop ( struct fdt *fdt, unsigned int offset,
size_t len ) {
int rc;
/* Sanity check */
assert ( ( offset % FDT_STRUCTURE_ALIGN ) == 0 );
/* Round up inserted length to maximal alignment */
len = ( ( len + FDT_MAX_ALIGN - 1 ) & ~( FDT_MAX_ALIGN - 1 ) );
/* Insert empty space in structure block */
if ( ( rc = fdt_insert ( fdt, ( fdt->structure + offset ),
len ) ) != 0 )
return rc;
/* Fill with NOPs */
fdt_nop ( fdt, offset, len );
/* Update structure block size */
fdt->structure_len += len;
fdt->hdr->size_dt_struct = cpu_to_be32 ( fdt->structure_len );
DBGC ( fdt, "FDT structure block now at +[%#04x,%#04zx)\n",
fdt->structure, ( fdt->structure + fdt->structure_len ) );
return 0;
}
/**
* Insert string in strings block
*
* @v fdt Device tree
* @v string String
* @v offset String offset to fill in
* @ret rc Return status code
*/
static int fdt_insert_string ( struct fdt *fdt, const char *string,
unsigned int *offset ) {
size_t len = ( strlen ( string ) + 1 /* NUL */ );
int rc;
/* Round up inserted length to maximal alignment */
len = ( ( len + FDT_MAX_ALIGN - 1 ) & ~( FDT_MAX_ALIGN - 1 ) );
/* Insert space at end of strings block */
if ( ( rc = fdt_insert ( fdt, ( fdt->strings + fdt->strings_len ),
len ) ) != 0 )
return rc;
/* Append string to strings block */
*offset = fdt->strings_len;
strcpy ( ( fdt->raw + fdt->strings + *offset ), string );
/* Update strings block size */
fdt->strings_len += len;
fdt->hdr->size_dt_strings = cpu_to_be32 ( fdt->strings_len );
DBGC ( fdt, "FDT strings block now at +[%#04x,%#04zx)\n",
fdt->strings, ( fdt->strings + fdt->strings_len ) );
return 0;
}
/**
* Ensure child node exists
*
* @v fdt Device tree
* @v offset Starting node offset
* @v name New node name
* @v child Child node offset to fill in
* @ret rc Return status code
*/
static int fdt_ensure_child ( struct fdt *fdt, unsigned int offset,
const char *name, unsigned int *child ) {
size_t name_len = ( strlen ( name ) + 1 /* NUL */ );
fdt_token_t *token;
size_t len;
int rc;
/* Find existing child node, if any */
if ( ( rc = fdt_child ( fdt, offset, name, child ) ) == 0 )
return 0;
/* Find end of parent node */
if ( ( rc = fdt_end ( fdt, offset, child ) ) != 0 )
return rc;
/* Insert space for child node (with maximal alignment) */
len = ( sizeof ( fdt_token_t ) /* BEGIN_NODE */ + name_len +
sizeof ( fdt_token_t ) /* END_NODE */ );
if ( ( rc = fdt_insert_nop ( fdt, *child, len ) ) != 0 )
return rc;
/* Construct node */
token = ( fdt->raw + fdt->structure + *child );
*(token++) = cpu_to_be32 ( FDT_BEGIN_NODE );
memcpy ( token, name, name_len );
name_len = ( ( name_len + FDT_STRUCTURE_ALIGN - 1 ) &
~( FDT_STRUCTURE_ALIGN - 1 ) );
token = ( ( ( void * ) token ) + name_len );
*(token++) = cpu_to_be32 ( FDT_END_NODE );
DBGC2 ( fdt, "FDT +%#04x created child \"%s\" at +%#04x\n",
offset, name, *child );
return 0;
}
/**
* Set property value
*
* @v fdt Device tree
* @v offset Starting node offset
* @v name Property name
* @v data Property data, or NULL to delete property
* @v len Length of property data
* @ret rc Return status code
*/
static int fdt_set ( struct fdt *fdt, unsigned int offset, const char *name,
const void *data, size_t len ) {
struct fdt_descriptor desc;
struct {
fdt_token_t token;
struct fdt_prop prop;
uint8_t data[0];
} __attribute__ (( packed )) *hdr;
unsigned int string;
size_t erase;
size_t insert;
int rc;
/* Find and reuse existing property, if any */
if ( ( rc = fdt_property ( fdt, offset, name, &desc ) ) == 0 ) {
/* Reuse existing name */
hdr = ( fdt->raw + fdt->structure + desc.offset );
string = be32_to_cpu ( hdr->prop.name_off );
/* Erase existing property */
erase = ( sizeof ( *hdr ) + desc.len );
erase = ( ( erase + FDT_STRUCTURE_ALIGN - 1 ) &
~( FDT_STRUCTURE_ALIGN - 1 ) );
fdt_nop ( fdt, desc.offset, erase );
DBGC2 ( fdt, "FDT +%#04x erased property \"%s\"\n",
offset, name );
/* Calculate insertion position and length */
insert = ( ( desc.len < len ) ? ( len - desc.len ) : 0 );
} else {
/* Create name */
if ( ( rc = fdt_insert_string ( fdt, name, &string ) ) != 0 )
return rc;
/* Enter node */
if ( ( rc = fdt_enter ( fdt, offset, &desc ) ) != 0 )
return rc;
assert ( desc.depth > 0 );
desc.offset = desc.next;
/* Calculate insertion length */
insert = ( sizeof ( *hdr ) + len );
}
/* Leave property erased if applicable */
if ( ! data )
return 0;
/* Insert space */
if ( ( rc = fdt_insert_nop ( fdt, desc.offset, insert ) ) != 0 )
return rc;
/* Construct property */
hdr = ( fdt->raw + fdt->structure + desc.offset );
hdr->token = cpu_to_be32 ( FDT_PROP );
hdr->prop.len = cpu_to_be32 ( len );
hdr->prop.name_off = cpu_to_be32 ( string );
memset ( hdr->data, 0, ( ( len + FDT_STRUCTURE_ALIGN - 1 ) &
~( FDT_STRUCTURE_ALIGN - 1 ) ) );
memcpy ( hdr->data, data, len );
DBGC2 ( fdt, "FDT +%#04x created property \"%s\"\n", offset, name );
DBGC2_HDA ( fdt, 0, hdr->data, len );
return 0;
}
/**
* Reallocate device tree via urealloc()
*
* @v fdt Device tree
* @v len New total length
* @ret rc Return status code
*/
static int fdt_urealloc ( struct fdt *fdt, size_t len ) {
void *new;
/* Sanity check */
assert ( len >= fdt->used );
/* Attempt reallocation */
new = urealloc ( fdt->raw, len );
if ( ! new ) {
DBGC ( fdt, "FDT could not reallocate from +%#04zx to "
"+%#04zx\n", fdt->len, len );
return -ENOMEM;
}
DBGC ( fdt, "FDT reallocated from +%#04zx to +%#04zx\n",
fdt->len, len );
/* Update device tree */
fdt->raw = new;
fdt->len = len;
fdt->hdr->totalsize = cpu_to_be32 ( len );
return 0;
}
/**
* Populate device tree with boot arguments
*
* @v fdt Device tree
* @v cmdline Command line, or NULL
* @v initrd Initial ramdisk address (or 0 for no initrd)
* @v initrd_len Initial ramdisk length (or 0 for no initrd)
* @ret rc Return status code
*/
static int fdt_bootargs ( struct fdt *fdt, const char *cmdline,
physaddr_t initrd, size_t initrd_len ) {
unsigned int chosen;
physaddr_t addr;
const void *data;
size_t len;
int rc;
/* Ensure "chosen" node exists */
if ( ( rc = fdt_ensure_child ( fdt, 0, "chosen", &chosen ) ) != 0 )
return rc;
/* Set or clear "bootargs" property */
len = ( cmdline ? ( strlen ( cmdline ) + 1 /* NUL */ ) : 0 );
if ( ( rc = fdt_set ( fdt, chosen, "bootargs", cmdline, len ) ) != 0 )
return rc;
/* Set or clear initrd properties */
data = ( initrd_len ? &addr : NULL );
len = ( initrd_len ? sizeof ( addr ) : 0 );
addr = initrd;
addr = ( ( sizeof ( addr ) == sizeof ( uint64_t ) ) ?
cpu_to_be64 ( addr ) : cpu_to_be32 ( addr ) );
if ( ( rc = fdt_set ( fdt, chosen, "linux,initrd-start", data,
len ) ) != 0 )
return rc;
addr = ( initrd + initrd_len );
addr = ( ( sizeof ( addr ) == sizeof ( uint64_t ) ) ?
cpu_to_be64 ( addr ) : cpu_to_be32 ( addr ) );
if ( ( rc = fdt_set ( fdt, chosen, "linux,initrd-end", data,
len ) ) != 0 )
return rc;
return 0;
}
/**
* Create device tree
*
* @v hdr Device tree header to fill in (may be set to NULL)
* @v cmdline Command line, or NULL
* @v initrd Initial ramdisk address (or 0 for no initrd)
* @v initrd_len Initial ramdisk length (or 0 for no initrd)
* @ret rc Return status code
*/
int fdt_create ( struct fdt_header **hdr, const char *cmdline,
physaddr_t initrd, size_t initrd_len ) {
struct image *image;
struct fdt fdt;
void *copy;
int rc;
/* Use system FDT as the base by default */
memcpy ( &fdt, &sysfdt, sizeof ( fdt ) );
/* If an FDT image exists, use this instead */
image = find_image_tag ( &fdt_image );
if ( image && ( ( rc = fdt_parse_image ( &fdt, image ) ) != 0 ) )
goto err_image;
/* Exit successfully if we have no base FDT */
if ( ! fdt.len ) {
DBGC ( &fdt, "FDT has no base tree\n" );
goto no_fdt;
}
/* Create modifiable copy */
copy = umalloc ( fdt.len );
if ( ! copy ) {
rc = -ENOMEM;
goto err_alloc;
}
memcpy ( copy, fdt.raw, fdt.len );
fdt.raw = copy;
fdt.realloc = fdt_urealloc;
/* Populate boot arguments */
if ( ( rc = fdt_bootargs ( &fdt, cmdline, initrd, initrd_len ) ) != 0 )
goto err_bootargs;
no_fdt:
*hdr = fdt.raw;
return 0;
err_bootargs:
ufree ( fdt.raw );
err_alloc:
err_image:
return rc;
}
/**
* Remove device tree
*
* @v hdr Device tree header, or NULL
*/
void fdt_remove ( struct fdt_header *hdr ) {
/* Free modifiable copy */
ufree ( hdr );
}
/* Drag in objects via fdt_describe() */
REQUIRING_SYMBOL ( fdt_describe );
/* Drag in device tree configuration */
REQUIRE_OBJECT ( config_fdt );
|