-
Notifications
You must be signed in to change notification settings - Fork 0
/
strings-u-boot.txt
6527 lines (6522 loc) · 136 KB
/
strings-u-boot.txt
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
NP !)
L85)
h@ x
07{
07{!
07{"
07{#
07{$
07{!
07{"
07{#
07{$
07{!
07{"
07{#
07{$
07{!
07{"
07{#
07{$
NB1)
N.P@
N2P@
N.P@
N2P@
x4B0
&|Bz
x4B0
&|Bz
x4B0
&|Bz
x4B0
&|Bz
:|B
@ -$
@ -$
|Q8CR
-|b1
(-6
-0B
0-p@(,
b(-$
D(/$
x4B0
x4B0
x4B0
20!~D
0!~$
'9-h
'9-h
-&%
-&%
-&%
-&%
-&%
-&%
x4B0
4BB@
4cB@
D4pB@'
H-|J
H-eE
`H-1B
`H-eD
`H-1"
l,4B
2BUU4
8$P*(
4cB@<
(-4G
'9*(
%(-<
f(u04
'9*(
e,4B
@8-4F
@8-4F
x4B0
'9*(
x4B0
b<@#
a,4B
$P*(
$P*(
$P*(
$P*(
$P*(
0-4B
$P*(
0-4B
$Q*(
0-4B
$P*(
$P*(
$P*(
-86R
61`
'9*(
H-&R
-4c
!0r
@0-4b
x4B0
x4B0
` -$
@ -|
(.c
H-'9p
X-e~
g4Bi
|PJG<
x4B0
x4B0
x4B0
` -$
(.c
H-'9p
X-e~
g4Bi
x4B0
|C)G
x4B0
x4B0
x4B0
x'9p
|QbG
|QJG
.|C!
n|C)G
x4B0
x4B0
x4B0
@ -$
@ -|
@ -$
x4B0
@ -|
x4B0
1|PJG
.|C!
n|C)G
x4B0
x4B0
x4B0
(-&
@(-&
(!pb0
`(-&
$|UB
JG4b
x4B0
80B
|TR
+|TJG
x0B
x4B0
|pIG
|P
|PIG
|Pr
4BB@$vp
-pe(
!qqH
r%(+
@(-q
r)H+
+H!pC
!}DAG
!}$bG
@!|d
`(-$
#|Q9
3|D%
#|B&
` -<
|rrG|
X|LZ
P|Cb
d81"
@X-'9p
(-'9p
x4B0
x4B0
@ -~
x4B0
x4B0
x4B0
x4B0
x4c0
*pb
(/|b
-&"
@ -<
C0%|
-'9+
;|PI
x4B0
@@-$
0-|P
x4B0
r|K8
r|G8
(-$B
@ -'9
@ -'9
@ -'9
%pe:2
pP:2
-$P
-$
-'9
-$R
-$
-pP:2
0-$P
l,B11P@
H-%B
0!%)
0!%)
$ !$
@ -~c
0-$P
0-'9
0-'9
0-$P
-'9
(-'9
(-'9
-$T
-$R
-$
0!&1
` -$
@ -&
-$
@ -$
@ -$
@ -&
@ -$
-&1
@ -$
-$
` -$
` -$
` -$
` -$
-$
8$B(
p$B1
$B2T
$B$H
` -$
@0-$
0$B2T
` -$
` -*B
0-&s
-$
`0-'9
-P@
-'9
-'9
@ -$
0-&s
d !$
-$
@ -$
@ -$
-'9"p
'9"p
@ -$
`0-'9"p
@ -$
`0-'9*
@ -$
` -$
` -$
` -$
` -$
` -2%
` -$
` -$
` -$
` -$
` -$
` -$
` -$
j0&$
bX&0
%}B
@!&1
<'9A
!PI
@ -$
8-'9D
`@-'9D
@ -$
$'9:
@ -$P>
4$Y:
`(-'9C
'9C
0-'9D
0-'9D
@ -$QM
-,B
-$WU
(-'
@(-$
1$R+
D !(
$H+p
$B-'
$B-?
$B-W
$B-w
$B./
@#2#
(-0
`8-$
-'9kx
8-$
#$Q.p
`(-$
0-P@
@(-&
$c/
$c/X
$Wkx
&D0p
&D0p
$E1?
$E1_
$E1w
@@-$
$c3`
$c48
4@0B
@#2#
(-0
`8-$
-$D4
-$C
4BLF
P$V9
$rc
C !$
:$T9
%(!$
-pb(
*$T9
rC
$C;
(-'
@ -~%
`0-'
-$B
-$DC
-$CC
-$EC
-$EDp
@0-$B
-$EC
-$EDp
-,C
4&EJ
@0-4
@ -$
-$DL
-$C2
$PMP
@-P@
$SMp
-&
-$^M
-R`
$UNH
$PN@
@-$c
@8-'9
@-$c
@8-'9
@ -$
|PY
|Pz
` -$
-'9
-$
-0
-0
-0
-$
-$
-0
-0
-$
f0%$
-$
-'9
@8-0C
-4BF
-$
-'9
-$
-$
-0
-0
-0
-$
;dD'
-'9
-7
-$R
-'9
-$
0-rf
-0
-0
-0
-$
-$
-0
-0
-$
-$
-0
-$
4RK@
-'9
-$
` -4
` -$
` -$R
` -$
@-&%
-PG
i0+$c
-PG
i0+$c
-PG
i0+$c
` -$
` -$
` -'9
`(-$
-'9
-$ET
(-$CT
(-$CT
$CU8
-$ET
@(-*"
$CU8
-$E4
(-$C
@ -$R
@8-(B
C0!|
-~B
` -$
0-$
0-$
%pc:2
$4Bh
@GH'
$ -PR
@@-$
4BUU
4BUU
U4BUU
84BUU
UU4BUU
84BUU
U4cUU
84cUU
-6c
$ -4
0-$
[P0P
@ -(B
$ !$
@ -$
_(rS0
(-P@
$F_x$
$R`@
@ -$
@-$c
@8-'9
@-$c
@8-'9
(-$
$D`8VB
` -&
-$DC
-$Dn
-$Co
-$Co
-$Co
-$Co
-$Cq
-$Cq
-$Cr
-$Cr
-$CC
-$Dn
-$Cn
-$Ctx
-$Ct
-$Ct
-$Cn
-$Cn
-$Cn
-$Cq
-$Cn
-$Cu
-$CvX
-$Cw(
-$Cwp
-$DL
-$C2
@ -~%
$V}
-$D~@
-$C~p
-$C~
-$C
-$C~
-$C4
-$C~
-$C~
-$C~
-$C~
-$C~
-$C~
-$C
-$C~
@ -$c
-$B~
8-'9
-$C~
-$C
-$C4
8-'9
-$C
-$C
-$C
-$C~
-|E
-$C~
-$C~
@ -$c
-$C~
8-'9
@ -&S
@ -$
$W#h
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
-$C
$T#h
-$C
-$P#h
-$C
-$C
-$C
-$C
-$C
-T@
@ -T@
(-'9#h
`(-&
@ -&1
`$C(
-$B
$BEX
$BEX
$q[0
-%)x
!$cs
!$csl
@(-$B
0'9M8
$RM8
(-'9M8
$cp8
$coH
-4B
$ #$
H#)"
!%
S #(
!$W
5 #,
d(!$d
$c\l
$c\8
` -T@
!$BEX
@$ci
,$cV
`0-V@
C !r
!$cQ8
LI4BST
C &-
&pB8
, T`
(%rB:2
-0S
"H$$
`-1/
` -&
`H-$
@-'9z@
H-&Q
'9z@
'9z@
!$B@d
&|cz
2|B$
@@-$
<4B 8
<4B 0
<4B (
<4B
<4B
pD
@$H'
pD
2>4B
@dc'
"<4c
-4c
(-$h
b -$
*>4B
b0-$
-*
04B
-'9
-'9
-'9
!'9
-'9
-'9
-'9
-'9
@ -$
(-4c
(-4c
|B)C$
-'9
04c!
-4B!
-$B
04c!
04c!
-4B!
-4B!
04B!
(-|P
&|Px
@-%J
D !,
%0B
pC:22C
pC:2
%|bY
(H%$
0-$D
-$
@ -4
@(-$B
^pb0
8-'9
pD((
-'9
JpC:2
DpC:2
@-'9
pD((
@ -'9
`(-'9
%0B
f %$
pC:2
@H-$B
0-$R
0-$c
0-$c
@0-$
"@#r
(-R@
8-PW
@8-&$
(!'9
H-$c
0-'9
8-0B
L(!0
LH!qD
MP!p
(#$B
(#$B
CVMX_BOARD_TYPE_SIM
CVMX_BOARD_TYPE_NULL
CVMX_BOARD_TYPE_EBT3000
CVMX_BOARD_TYPE_KODAMA
CVMX_BOARD_TYPE_NIAGARA
CVMX_BOARD_TYPE_NAC38
CVMX_BOARD_TYPE_THUNDER
CVMX_BOARD_TYPE_TRANTOR
CVMX_BOARD_TYPE_EBH3000
CVMX_BOARD_TYPE_EBH3100
CVMX_BOARD_TYPE_HIKARI
CVMX_BOARD_TYPE_CN3010_EVB_HS5
CVMX_BOARD_TYPE_CN3005_EVB_HS5
CVMX_BOARD_TYPE_KBP
CVMX_BOARD_TYPE_CN3020_EVB_HS5
CVMX_BOARD_TYPE_EBT5800
CVMX_BOARD_TYPE_NICPRO2
CVMX_BOARD_TYPE_EBH5600
CVMX_BOARD_TYPE_EBH5601
CVMX_BOARD_TYPE_EBH5200
CVMX_BOARD_TYPE_BBGW_REF
CVMX_BOARD_TYPE_NIC_XLE_4G
CVMX_BOARD_TYPE_EBT5600
CVMX_BOARD_TYPE_EBH5201
CVMX_BOARD_TYPE_EBT5200
CVMX_BOARD_TYPE_CB5600
CVMX_BOARD_TYPE_CB5601
CVMX_BOARD_TYPE_CB5200
CVMX_BOARD_TYPE_GENERIC
CVMX_BOARD_TYPE_MAX
CVMX_BOARD_TYPE_CUST_DEFINED_MIN
CVMX_BOARD_TYPE_CUST_WSX16
CVMX_BOARD_TYPE_CUST_NS0216
CVMX_BOARD_TYPE_CUST_NB5
CVMX_BOARD_TYPE_CUST_WMR500
CVMX_BOARD_TYPE_CUST_ITB101
CVMX_BOARD_TYPE_CUST_NTE102
CVMX_BOARD_TYPE_CUST_AGS103
CVMX_BOARD_TYPE_CUST_GST104
CVMX_BOARD_TYPE_CUST_GCT105
CVMX_BOARD_TYPE_CUST_AGS106
CVMX_BOARD_TYPE_CUST_SGM107
CVMX_BOARD_TYPE_CUST_GCT108
CVMX_BOARD_TYPE_CUST_AGS109
CVMX_BOARD_TYPE_CUST_GCT110
CVMX_BOARD_TYPE_CUST_DEFINED_MAX
CVMX_BOARD_TYPE_CUST_PRIVATE_MIN
CVMX_BOARD_TYPE_CUST_N100
CVMX_BOARD_TYPE_CUST_N100W
CVMX_BOARD_TYPE_CUST_N100D
CVMX_BOARD_TYPE_CUST_N100DE
CVMX_BOARD_TYPE_CUST_N100WDE
CVMX_BOARD_TYPE_CUST_N100DF
CVMX_BOARD_TYPE_CUST_N100WDEF
CVMX_BOARD_TYPE_CUST_N100DEF
CVMX_BOARD_TYPE_CUST_DSR500
CVMX_BOARD_TYPE_CUST_DSR500N
CVMX_BOARD_TYPE_CUST_DSR1000
CVMX_BOARD_TYPE_CUST_DSR1000N
CVMX_BOARD_TYPE_CUST_PRIVATE_MAX
Unsupported Board
### ERROR ### Please RESET the board ###
DRAM:
ERROR: malloc heap exhausted!
baudrate
hanging, init func: %d
Error message from before serial ready: %s
*************************************
ERROR: U-boot memory usage overlaps fixed address reserved area!
U-boot base address: 0x%08x, reserved top: 0x%08x
*************************************
N100
N100W
N100D
N100DE
N100WDE
N100DF
N100WDEF
Unknown
00:00:A0:01
000000000001
0000000000001
protect off 0x%x 0x%x
erase 0x%x 0x%x
cp.b 0x%x 0x%x 0x%x
IPD backpressure workaround verified, took %d loops
IPD backpressure workaround FAILED verfication. Adjust octeon_ipd_bp_enable() for this chip!
IPD backpressure workaround FAILED. Adjust octeon_ipd_bp_enable() for this chip!
PCIe: Aligning TLP counters (OUT_P_COUNT=%d)
PCIe: Soft reset after alignment
Clearing DRAM.....
done
FATAL: Error initializing free memory list
__tmp_bootloader_internal
ERROR: Unable to allocate memory for heap.... (1)
octeon_reserved_mem_load_size
auto
octeon_reserved_mem_load_base
__tmp_load
ERROR: Unable to allocate bootloader reserved memory (addr: 0x%x, size: 0x%x).
0x%x
loadaddr
WARNING: No reserved memory for image loading.
octeon_reserved_mem_linux_size
octeon_reserved_mem_linux_base
__tmp_reserved_linux
ERROR: Unable to allocate linux reserved memory (addr: 0x%x, size: 0x%x).
Flash:
Flash boot bus region not enabled, skipping NOR flash config
NAND:
0x%04x
coremask_override
Warning: No chip capability tuple found in eeprom, coremask_override may be set incorrectly
numcores
ethaddr
ipaddr
pci_console_active
Using PCI console, serial port disabled.
stdin
stdout
stderr
PCI CONS
serial
%s board revision major:%d, minor:%d, serial #: %s
OCTEON %s revision: %d, Core clock: %d MHz, DDR clock: %d MHz (%d Mhz data rate)
WARNING: loadaddr not set, defaulting to %s. Please either define a load reserved block or set the loadaddr environment variable.
env_addr
env_size
flash_base_addr
flash_size
uboot_flash_addr
uboot_flash_size
flash_unused_addr
flash_unused_size
ddr_clock_hertz
Parameter found in environment. ddr_clock_hertz = %d
ddr_ref_hertz
Parameter found in environment. ddr_ref_hertz = %d
OCTEON %s, Core clock: %d MHz, DDR clock: %d MHz (%d Mhz data rate)
WARNING:
WARNING: Measured DDR clock mismatch! expected: %d MHz, measured: %d MHz, cpu clock: %d MHz
WARNING: Using measured clock for configuration.
WARNING:
Warning: Clock descriptor tuple not found in eeprom, using defaults
WARNING: memory configured for %d mhz clock.
If this is not the actual memory clock
poor performance and memory instability may result.
The memory speed must be specified in the board eeprom
Warning: Board descriptor tuple not found in eeprom, using defaults
*** failed ***
fileaddr
filesize
WARNING: Data loaded outside of the reserved load area, memory corruption may occur.
WARNING: Please refer to the bootloader memory map documentation for more information.
ERROR copying memory using TLB mappings, cur_len: %d !
__tmp
autoload=n
dram_size_mbytes=%d
####################################################################################
### Warning: only %02d cores available, not running with requested number of cores ###
ERROR: Can't boot cores that don't exist! (available coremask: 0x%x)
Notice: coremask changed to 0x%x based on coremask_override of 0x%x
WARNING:
WARNING: You have changed the coremask_override and are running code on non-functional cores.
WARNING: The program may crash and/or produce unreliable results.
ERROR allocating stack for core: %d
__bootloader_env
ERROR: unable to allocate memory for argument data
icache_prefetch_disable
ERROR allocating memory for boot descriptor block
ERROR allocating memory for cvmx bootinfo block
cvmx_ptr_to_phys() passed a NULL pointer
WARNING: L2D ECC errors detected!
WARNING: L2T ECC errors detected!
WARNING: DDR ECC errors detected!
BIST FAILURE: %s, error bits: 0x%llx
BIST FAILURE: %s, error bits ((bist_val & mask) ^ expected): 0x%llx
BIST FAILURE: POW_BIST_STAT: 0x%08x
COP0_CVMMEMCTL_REG
COP0_ICACHEERR_REG
GMX0_BIST
GMX1_BIST
IPD_BIST_STATUS
KEY_BIST_REG
L2D_BST0
L2C_BST0
L2C_BST1
L2C_BST2
CIU_BIST
PKO_REG_BIST_RESULT
NPI_BIST_STATUS
PIP_BIST_STATUS
RNM_BIST_STATUS
SPX0_BIST_STAT
SPX1_BIST_STAT
TIM_REG_BIST_RESULT
TRA_BIST_STATUS
MIO_BOOT_BIST_STAT
IOB_BIST_STATUS
DFA_BST0
DFA_BST1
FPA_BIST_STATUS
ZIP_CMD_BIST_RESULT
USBNX_BIST_STATUS(0)
AGL_GMX_BIST
MIXX_BIST(0)
NPEI_BIST_STATUS
RAD_REG_BIST_RESULT
PCSX0_BIST_STATUS_REG(0)
PCSX1_BIST_STATUS_REG(1)
BIST Errors found.
'1' bits above indicate unexpected BIST status.
BIST check passed.
PCI console already setup.
pci_console_count
pci_console_size
WARNING: PCI console init FAILED
PCI console init succeeded, %d consoles, %d bytes each
Reading simulated SPD %p
Unbuffered
Registered
non-ECC
DIMM %d: DDR2 %s, %s
%s
ddr_verbose
ddr_prompt
ERROR: DDR Reference Clock not specified.
clkr: %2lu, en: %2d, clkf: %4lu, pll_MHz: %4lu, ddr_hertz: %8lu, error: %8d
clkr: %2lu, en: %2d, clkf: %4lu, pll_MHz: %4lu, ddr_hertz: %8lu, error: %8d <==
ERROR: Can not compute a legal DDR clock speed configuration.
ddr_sil_mode
Parameter found in environment. ddr_sil_mode = %d
Disabled
Enabled
DDR Interface %d: %s, Mask 0x%x
DDR Interface %d: %s, Target DCLK: %d
Enabling DCLK PLL
DDR Interface %d: %s
Performing LMC1 DCLK Offsetting Sequence
Performing DRESET Initialization Sequence
BIST ERROR: 0x%llx
CSRD2E = 0x%x
CSRE2D = 0x%x
MWF = 0x%x
MWD = 0x%x
MWC = 0x%x
MRF = 0x%x
MRD = 0x%x
Performing LMCX Initialization Sequence
Measured DDR clock %d
DDR clock misconfigured. Resetting...
Please enter value for %s DDR param(enter for default):
No value entered, using default value for parameter %s
Using value %s for parameter %s
Initializing DDR interface %d, DDR Clock %d, DDR Reference Clock %d
ERROR: No dimms specified in the dimm_config_table.
ERROR: Install DIMMs in pairs for 128-bit interface
ddr_safe
Parameter found in environment. ddr_safe = %d
ERROR: DIMM 0 not detected.
ddr_narrow
Parameter found in environment: ddr_narrow, forcing narrow ddr interface
Unsupported number of Col Bits: %d
Unsupported number of Row Bits: %d
ERROR: Unsupported Octeon model: 0x%x
NOTICE: Memory size reduced by half on 2 rank memory configs.
row bits: %d, col bits: %d, banks: %d, ranks: %d, dram width: %d, size: %d MB