-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSystem.map
2298 lines (2298 loc) · 61.7 KB
/
System.map
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
40800000 T __image_copy_start
40800000 T _start
40800020 T _undefined_instruction
40800024 T _software_interrupt
40800028 T _prefetch_abort
4080002c T _data_abort
40800030 T _not_used
40800034 T _irq
40800038 T _fiq
40800040 t __blank_zone_start
40802040 T _blank_zone_start
40802040 t __blank_zone_end
40802044 T get_blank_start
40802060 T get_code_start
4080206c T IRQ_STACK_START_IN
40802080 t undefined_instruction
408020e0 t software_interrupt
40802140 t prefetch_abort
408021a0 t data_abort
40802200 t not_used
40802260 t irq
408022c0 t fiq
4080230c T reset
40802310 T save_boot_params_ret
40802344 T c_runtime_cpu_setup
40802354 W save_boot_params
40802358 T cpu_init_cp15
408023b0 T __v7_flush_dcache_all
408023c4 t start_flush_levels
408023c8 t flush_levels
40802404 t loop1
40802408 t loop2
40802424 t skip
40802430 t finished
40802444 T v7_flush_dcache_all
40802454 T __v7_invalidate_dcache_all
4080246c t inval_levels
408024a8 t inval_loop1
408024ac t inval_loop2
408024c8 t inval_skip
408024d4 t inval_finished
408024e8 T v7_invalidate_dcache_all
408024f8 T invalidate_icache_all
40802510 W v7_outer_cache_enable
40802514 W v7_outer_cache_disable
40802518 W v7_outer_cache_flush_all
4080251c T flush_dcache_all
4080252c W v7_outer_cache_inval_all
40802530 T invalidate_dcache_all
40802540 T arm_init_before_mmu
40802568 W v7_outer_cache_flush_range
4080256c T flush_dcache_range
408025c0 W v7_outer_cache_inval_range
408025c4 T invalidate_dcache_range
40802628 W cpu_cache_initialization
4080262c T cleanup_before_linux_select
40802678 T cleanup_before_linux
40802680 t get_gicd_base_address
408026b4 W psci_board_init
408026b8 T armv7_init_nonsec
40802750 T _main
40802798 t here
408027ac t clbss_l
408027e0 W relocate_vectors
408027ec T relocate_code
408027fc t copy_loop
4080281c t fixloop
4080283c t fixnext
40802844 t relocate_done
40802858 T arch_lmb_reserve
4080287c W setup_board_tags
40802880 t boot_prep_linux.isra.3
40802950 W armv7_boot_nonsec_default
40802958 T armv7_boot_nonsec
408029b4 t boot_jump_linux.isra.4
40802a8c T do_bootm_linux
40802adc T boot_prep_vxworks
40802ae0 T boot_jump_vxworks
40802aec W arch_reserve_stacks
40802b08 T interrupt_init
40802b24 T enable_interrupts
40802b28 T disable_interrupts
40802b30 T bad_mode
40802b40 T show_regs
40802cb4 T do_undefined_instruction
40802cd4 T do_software_interrupt
40802cf4 T do_prefetch_abort
40802d14 T do_data_abort
40802d34 T do_not_used
40802d54 T do_fiq
40802d74 T do_irq
40802d94 W reset_misc
40802d98 T do_reset
40802dcc T add_shutdown
40802e00 T do_shutdown
40802e30 W flush_cache
40802e38 T check_cache_range
40802e70 t cp_delay
40802ea0 t cache_disable
40802eec W arm_init_domains
40802ef0 T set_section_dcache
40802f04 W dram_bank_mmu_setup
40802f48 T icache_enable
40802f64 T icache_disable
40802f6c T icache_status
40802f78 T dcache_enable
40802ff8 T dcache_disable
40803000 T dcache_status
4080300c T enable_caches
40803010 T get_boot_media
40803040 T board_early_init_f
40803048 T save_bootdata_to_flash
40803250 T misc_init_r
40803294 T board_init
408032e8 T dram_init
408032f8 T reset_cpu
40803314 T timer_init
40803334 T board_eth_init
40803338 T board_mmc_init
40803340 T smp_set_core_boot_addr
40803344 T smp_kick_all_cpus
40803348 T smp_waitloop
4080334c W do_go_exec
4080335c t do_go
408033cc T do_bootm
408034d4 T do_bootd
408034f4 t image_info
40803610 t do_iminfo
4080366c T bootm_maybe_autostart
408036e4 t do_help
40803728 t do_version
40803760 T source
4080391c t do_source
40803994 t print_num
408039a8 t do_bdinfo
40803b50 t parse_argv
40803bb4 t do_icache
40803c3c t do_dcache
40803cc4 t do_coninfo
40803d74 t do_echo
40803e28 t load_elf_image_shdr
40803eb4 T valid_elf_image
40803f00 T do_bootelf
408040ac T do_bootvx
408043dc t do_exit
40804424 T do_fat_size
4080443c T do_fat_fsload
40804454 t do_fat_ls
4080446c t do_fat_fsinfo
408044f8 t do_flerase
40804500 t do_protect
40804510 t do_flinfo
40804518 t evalexp
40804590 t evalstr
408045f4 t binary_test
408047b4 t do_itest
4080483c t bin_data_init
40804868 t k_data_save
408048b4 t k_data_restore
40804900 t getcxmodem
40804920 t load_serial_ymodem
408049ec t bin_data_char
40804a18 t chk1.constprop.1
40804a48 t s1_sendpacket.constprop.2
40804a98 t load_serial
40804c7c t do_load_serial
40804d58 t do_load_serial_bin
408054f8 t do_mem_mw
408055b8 t do_mem_loop
408056a4 t do_mem_md
4080578c t do_mem_cmp
408058e0 t do_mem_base
40805920 t do_mem_cp
408059f4 t do_mem_crc
40805a3c t mod_mem.isra.0
40805bac t do_mem_mm
40805bb4 t do_mem_nm
40805bbc t extract_range
40805c10 t do_mii
4080651c t do_sleep
408065ec t do_mmcops
408066a4 t init_mmc_device
408066f4 t do_mmc_rescan
40806718 t do_mmc_rst_func
408067b4 t do_mmc_partconf
40806864 t do_mmc_boot_resize
4080692c t do_mmc_bootbus
408069dc t do_mmc_hwpartition
40806eec t do_mmc_list
40806f00 t do_mmc_dev
40807034 t do_mmc_part
40807094 t do_mmc_erase
40807180 t do_mmc_write
408072e4 t do_mmc_read
408073ec t print_mmcreg
40807514 t do_mmcreg
4080755c t do_mmcinfo
408078cc t do_mmc_setdsr
40807974 t set_dev
408079e8 t nand_print_and_set_info
40807acc t do_nandboot
40807e20 t do_nand
40808cd8 t netboot_common
40808f60 t do_bootp
40808f6c t do_dhcp
40808f78 t do_nfs
40808f84 T do_tftpb
40808fc4 t do_ping
4080903c t do_part_list
408091b8 t do_part_start
40809278 t do_part_size
40809338 t do_part
40809450 t do_get_any
40809458 t eol_or_eof
4080947c t do_pxe
408094f8 t label_print
40809514 t do_get_tftp
40809558 t from_env
40809584 t get_string
40809654 t label_destroy
408096c8 t destroy_pxe_menu
40809724 t get_token
40809840 t parse_sliteral
40809894 t parse_integer
40809904 t do_get_fat
40809940 t do_get_ext2
40809948 t format_mac_pxe.constprop.7
408099bc t get_relfile
40809af4 t get_pxe_file
40809b4c t handle_include
40809bf0 t parse_pxefile_top
4080a048 t parse_pxefile
4080a0b8 t get_pxelinux_path
4080a134 t do_pxe_get
4080a294 t get_relfile_envaddr
4080a2e4 t label_boot
4080a884 t handle_pxe_menu
4080a9e0 t do_pxe_boot
4080aac0 t do_sysboot
4080aca0 t bytes_per_second
4080acf0 t do_spi_flash
4080b738 t substitute
4080b828 t get_arg
4080b880 t regex_sub
4080bcd4 t do_setexpr
4080be54 t do_false
4080be5c t do_true
4080be64 t do_test
4080c190 t do_unzip
4080c234 t do_gzwrite
4080c350 t usb_get_class_desc
4080c40c t usb_find_device
4080c448 t usb_show_tree_graph
4080c680 t usb_display_class_sub
4080c7f0 t usb_display_string
4080c834 t usb_display_config
4080ca5c t do_usbboot
4080ca68 t usb_display_desc.part.1
4080cb94 t do_usb_start
4080cbc4 T usb_show_tree
4080cc18 t do_usb
4080d390 T common_diskboot
4080d638 t do_usbtftp
4080d9bc t do_imgextract
4080dd68 t do_env_delete
4080de04 t do_env_exists
4080de68 t do_env_save
4080de94 t do_env
4080defc t env_print
4080dfc0 t do_env_print
4080e084 t do_env_import
4080e30c t do_env_default
4080e3a8 t _do_env_set.isra.0
4080e554 t do_env_set
4080e574 T get_env_id
4080e584 T setenv
4080e5e4 T setenv_hex
4080e618 t do_env_export
4080e868 T envmatch
4080e8cc T getenv_f
4080e998 T getenv
4080ea10 T getenv_ulong
4080ea40 t do_env_edit.part.2
4080eaec t do_env_edit
4080eb18 t do_getinfo
4080ed74 T board_init_f_alloc_reserve
4080ed80 T board_init_f_init_reserve
4080eda0 W show_boot_progress
4080eda8 T main_loop
4080edd0 t dummy
4080edd4 T get_version
4080eddc T jumptable_init
4080efbc t hash_finish_crc32
4080efec t hash_update_crc32
4080f010 t hash_init_crc32
4080f034 t hash_finish_sha256
4080f06c t hash_update_sha256
4080f088 t hash_init_sha256
4080f0ac t hash_finish_sha1
4080f0e4 t hash_update_sha1
4080f100 t hash_init_sha1
4080f124 T hash_lookup_algo
4080f178 T hash_command
4080f334 t b_reset
4080f350 t static_get
4080f36c t file_peek
4080f378 t mapset
4080f39c t syntax_err
4080f3a8 t free_pipe_list
4080f498 t xmalloc
4080f4b8 t new_pipe
4080f4e0 t xrealloc
4080f500 t done_command
4080f588 t done_pipe
4080f5d0 t done_word
4080f8a4 t do_showvar
4080f9a4 t is_assignment
4080fa00 t file_get
4080fc00 t b_addchr
4080fc80 t b_addqchr
4080fcd0 t static_peek
4080fcdc T get_local_var
4080fd70 T set_local_var
4080ff18 t insert_var_value_sub
408101d4 T parse_string_outer
408102bc t run_list_real
40810a64 t parse_stream_outer
40811114 T parse_file_outer
40811158 T u_boot_hush_start
408111ac T bootdelay_process
408111fc T autoboot_command
408112f0 t print_cpuinfo
408112f8 t show_dram_config
40811308 t setup_mon_len
40811328 t reserve_round_4k
40811340 t reserve_mmu
40811378 t reserve_uboot
408113a8 t reserve_malloc
408113bc t reserve_global_data
408113d8 t reserve_fdt
40811424 t initf_console_record
4081142c W arch_cpu_init_dm
40811434 t init_baud_rate
40811460 t mark_bootstage
40811474 t initf_dm
4081147c t reloc_fdt
408114c0 t setup_reloc
40811528 t reserve_board
40811568 W reserve_arch
40811570 t display_text_info
40811578 t announce_dram_init
40811580 W arch_cpu_init
40811588 W mach_cpu_init
40811590 t reserve_trace
40811598 t setup_machine
408115a0 t display_new_sp
408115a8 W coloured_LED_init
408115ac W red_led_on
408115b0 W dram_init_banksize
408115d0 t setup_dram_config
408115e0 W board_get_usable_ram_top
408115f4 W board_reserve_ram_top
408115f8 t setup_dest_addr
40811644 t reserve_stacks
40811660 T board_init_f
40811688 t bootstage_relocate
40811690 t initr_reloc
408116a8 t initr_reloc_global_data
408116d0 W power_init_board
408116d8 t initr_announce
408116e0 t run_main_loop
408116ec t initr_download
40811700 t initr_net
4081171c t initr_ethaddr
4081173c t initr_enable_interrupts
4081174c t initr_jumptable
4081175c t initr_env
4081178c t initr_mmc
408117ac t initr_nand
408117c8 t initr_snor
408117f8 t initr_serial
40811808 t initr_bootstage
4081181c t initr_dm
40811830 t initr_malloc
4081184c t initr_caches
4081185c t initr_console_record
40811864 t initr_trace
4081186c t initr_barrier
40811874 W cpu_secondary_init_r
40811878 t initr_secondary_cpu
40811888 T board_init_r
4081189c T bootm_find_images
40811924 T bootm_decomp_image
40811a64 T bootm_disable_interrupts
40811a7c T do_bootm_states
408122ec t copy_args
4081233c t do_bootm_rtems
40812390 t do_bootm_plan9
40812448 t do_bootm_standalone
408124ac t do_bootm_qnxelf
4081251c t do_bootm_netbsd
40812620 T do_bootvx_fdt
4081265c t do_bootm_vxworks
40812694 W arch_preboot_os
40812698 T boot_selected_os
408126f0 T bootm_os_get_boot_func
40812700 t regex_callback
4081282c T env_attr_walk
4081294c T env_attr_lookup
408129c8 t clear_callback
408129d8 t find_env_callback
40812a38 t on_callbacks
40812a88 t set_callback
40812b20 T env_callback_init
40812be4 t skip_num
40812c78 t clear_flags
40812c88 t on_flags
40812cd8 T env_flags_parse_vartype
40812d28 T env_flags_parse_varaccess
40812d78 t set_flags
40812e28 T eth_validate_ethaddr_str
40812ebc T env_flags_init
40812f94 T env_flags_validate
4081321c T saveenv
40813240 T env_relocate_spec
408132e8 T env_init
40813304 W mmc_get_env_addr
40813314 W mmc_get_env_dev
4081331c T emmc_saveenv
40813444 T emmc_env_relocate_spec
4081352c T nand_saveenv
4081366c T nand_env_relocate_spec
40813758 T sf_saveenv
40813838 T sf_env_relocate_spec
40813904 T miiphy_get_dev_by_name
4081395c T miiphy_init
40813980 T mdio_alloc
408139b0 T mdio_free
408139b4 T mdio_register
40813a3c T miiphy_set_current_dev
40813a7c t miiphy_get_active_dev
40813ad0 T miiphy_get_current_dev
40813ae8 T miiphy_read
40813b34 T miiphy_write
40813b74 T miiphy_listdev
40813bec T miiphy_info
40813c74 T miiphy_reset
40813d18 T miiphy_speed
40813ddc T miiphy_duplex
40813e98 T miiphy_is_1000base_x
40813ea0 T miiphy_link
40813ef4 t usb_set_maxpacket_ep
40813f6c T usb_stop
40813fd8 T usb_disable_asynch
40813ff8 T usb_control_msg
408140d4 t usb_get_descriptor
4081412c t get_descriptor_len
40814210 t usb_get_string
40814284 t usb_string_sub
40814388 T usb_bulk_msg
40814420 T usb_maxpacket
4081443c T usb_clear_halt
408144cc T usb_get_configuration_len
40814540 T usb_get_configuration_no
40814574 T usb_set_interface
40814628 T usb_string
40814728 T usb_get_dev_index
4081474c T usb_alloc_new_device
408147e8 T usb_free_device
40814830 T usb_select_config
40814c94 T usb_setup_device
40814df8 T usb_new_device
40814e28 T usb_init
40814f6c T usb_device_has_child_on_port
40814f80 t usb_set_port_feature
40814fcc t usb_clear_port_feature
40815018 t usb_get_hub_descriptor
40815064 W usb_hub_reset_devices
40815068 T usb_get_port_status
408150b4 T usb_hub_reset
408150d4 T legacy_hub_port_reset
408151bc T usb_hub_port_connect_change
40815340 t usb_hub_configure
40815800 T usb_hub_probe
40815854 t usb_stor_irq
40815870 t usb_stor_BBB_reset
40815948 t usb_stor_CB_reset
40815a20 t usb_stor_BBB_clear_endpt_stall.isra.2
40815a60 t usb_stor_BBB_transport
40815cc4 t usb_stor_CB_comdat
40815edc t usb_stor_CBI_get_status.isra.4
40815fa4 t usb_stor_CB_transport
408161bc t usb_request_sense.constprop.10
4081622c t usb_stor_read
40816394 t usb_stor_write
408164fc T usb_stor_info
40816574 T usb_storage_probe
40816784 T usb_stor_get_info
40816a70 T usb_stor_scan
40816c5c W menu_display_statusline
40816c60 T menu_default_set
40816ce0 T menu_get_choice
40816ed8 T menu_item_add
40816fa8 T menu_create
40817038 T menu_destroy
408170a4 W env_get_char_spec
408170b0 T env_get_addr
408170d0 T env_get_char_memory
408170e0 T env_get_char
40817110 T getenv_yesno
4081714c T getenv_default
4081717c T set_default_env
40817248 T set_default_vars
40817280 T env_import
40817360 T env_export
40817404 T env_relocate
40817430 T env_complete
40817520 t console_setfile
408175dc T putc
40817610 T puts
40817644 T fgetc
40817668 T getc
4081768c T ftstc
408176b0 T tstc
408176d4 T ctrlc
4081772c T confirm_yesno
408177f8 T had_ctrlc
40817808 T clear_ctrlc
4081781c T search_device
40817844 T console_assign
40817884 t on_console
4081793c T console_init_f
4081794c T stdio_print_current_devices
408179fc T console_init_r
40817ad8 T print_to_hitool
40817b1c T sbrk
40817b88 T mem_malloc_init
40817bbc t malloc_trim
40817c8c t free
40817ecc t malloc
408184dc t calloc
4081861c t realloc
40818a58 t memalign
40818bc8 T initf_malloc
40818be0 T malloc_simple
40818c10 t on_loadaddr
40818c50 T image_check_hcrc
40818c9c T image_check_dcrc
40818cd4 T image_multi_count
40818cf4 T image_multi_getimg
40818d74 T getenv_bootm_low
40818da4 T getenv_bootm_size
40818e0c T getenv_bootm_mapsize
40818e3c T memmove_wd
40818e48 T genimg_print_size
40818e78 T get_table_entry
40818e9c T get_table_entry_name
40818ebc T genimg_get_os_name
40818ed4 T genimg_get_arch_name
40818eec T genimg_get_type_name
40818f04 T genimg_get_comp_name
40818f1c T image_print_contents
40819098 T get_table_entry_id
408190e4 T genimg_get_os_id
408190fc T genimg_get_arch_id
40819114 T genimg_get_type_id
4081912c T genimg_get_comp_id
40819144 T genimg_get_kernel_addr_fit
408191b4 T genimg_get_kernel_addr
408191d8 T genimg_get_format
4081920c T genimg_get_image
40819210 T boot_get_ramdisk
40819580 T boot_ramdisk_high
408196b0 T boot_get_setup
408196b4 T boot_get_loadable
40819798 t fit_image_get_address
408197fc T fit_parse_conf
40819860 T fit_parse_subimage
408198c4 T fit_get_desc
408198f4 T fit_image_get_node
40819924 T fit_image_get_os
40819960 T fit_image_get_arch
4081999c T fit_image_get_type
408199d8 T fit_image_get_comp
40819a14 T fit_image_get_load
40819a24 T fit_image_get_entry
40819a34 T fit_image_get_data
40819a74 T fit_image_hash_get_algo
40819aa4 T fit_image_hash_get_value
40819ae4 t fit_image_print_data
40819c28 T fit_image_print
40819f74 T fit_get_end
40819f84 T calculate_hash
4081a07c T fit_image_verify
4081a298 T fit_all_image_verify
4081a394 T fit_image_check_os
4081a3c4 T fit_image_check_arch
4081a408 T fit_image_check_type
4081a438 T fit_image_check_comp
4081a468 T fit_check_format
4081a4a8 T fit_conf_get_node
4081a514 T fit_conf_get_prop_node
4081a540 T fit_conf_print
4081a6dc T fit_print_contents
4081a8e0 T fit_get_node_from_config
4081a920 T fit_image_load
4081ae88 T boot_get_setup_fit
4081aef4 W get_effective_memsize
4081aefc t stdio_serial_tstc
4081af00 t stdio_serial_getc
4081af04 t stdio_serial_puts
4081af0c t stdio_serial_putc
4081af14 T stdio_get_list
4081af20 T stdio_get_by_name
4081af6c T stdio_clone
4081afa4 T stdio_register_dev
4081aff4 T stdio_register
4081affc T stdio_init_tables
4081b018 T stdio_add_devices
4081b090 T cli_simple_process_macros
4081b2a8 T run_command
4081b2b8 T run_command_list
4081b334 T do_run
4081b3a8 T cli_loop
4081b3b4 T cli_init
4081b3b8 t delete_char.part.0
4081b48c t cread_add_char
4081b574 T cli_readline_into_buffer
4081bf9c T cli_readline
4081bfb0 T find_cmd_tbl
4081c050 T find_cmd
4081c078 T cmd_usage
4081c0d4 T _do_help
4081c25c T var_complete
4081c2f0 T cmd_auto_complete
4081c7bc T cmd_get_data_size
4081c80c T cmd_process
4081c8f8 T cmd_process_error
4081c928 t hex1_bin
4081c968 t hex2_bin
4081c9a0 T srec_decode
4081cbec t CYGACC_COMM_IF_GETC_TIMEOUT.isra.0
4081cc48 t xyzModem_flush
4081cc64 t xyzModem_get_hdr
4081ce84 T xyzModem_stream_open
4081d0ac T xyzModem_stream_read
4081d2f8 T xyzModem_stream_close
4081d34c T xyzModem_stream_terminate
4081d3e0 T xyzModem_error
4081d400 t recv_byte
4081d420 t calc_crc16.constprop.0
4081d498 T download_process
4081d5cc W download_boot
4081d628 t do_ugzip
4081d734 T dev_print
4081d94c T part_init
4081d9a0 T part_print
4081dac8 T part_get_info
4081db34 T blk_get_device_by_str
4081dc88 T blk_get_device_part_str
4081e074 T part_set_generic_name
4081e0c0 t test_block_type
4081e194 t print_partition_extended
4081e404 T part_print_dos
4081e438 t part_test_dos
4081e498 t part_get_info_extended
4081e73c T part_get_info_dos
4081e760 T iso_dread
4081e80c T part_get_info_iso_verb
4081ebd4 t part_test_iso
4081ebf4 t part_print_iso
4081ec90 t part_get_info_iso
4081ec98 t print_efiname
4081ed20 t part_test_efi
4081edf0 t validate_gpt_entries
4081ee88 t validate_gpt_header
4081f0b0 t is_gpt_valid
4081f278 t is_pte_valid
4081f2d0 T part_print_efi
4081f554 T part_get_info_efi
4081f744 t device_bind_common.isra.0
4081fa58 t alloc_priv
4081fa9c T device_bind_by_name
4081fb04 T device_probe
4081fd20 T lists_driver_lookup_name
4081fd68 T lists_uclass_lookup
4081fda0 T lists_bind_drivers
4081fe2c T dm_root
4081fe58 T dm_init
4081feb0 T dm_scan_platdata
4081fedc W dm_scan_other
4081fee4 T dm_init_and_scan
4081ff14 T uclass_find
4081ff60 T uclass_get
40820078 T uclass_find_device_by_seq
408200f4 T uclass_bind_device
40820170 T uclass_unbind_device
408201bc T uclass_resolve_seq
40820270 T uclass_pre_probe_device
408202d4 T uclass_post_probe_device
408202f4 T uclass_pre_remove_device
40820314 T dm_warn
4082033c T device_free
408203cc T device_remove
408204f4 t show_devices
408205f4 T dm_dump_all
40820630 T dm_dump_uclass
4082071c t get_desc
40820788 T blk_driver_lookup_type
408207c0 T blk_get_devnum_by_type
408207fc T blk_dselect_hwpart
40820844 T blk_get_devnum_by_typename
408208ac T blk_select_hwpart_devnum
408208f4 T xhci_hcd_init
40820920 T usb2_eye_config
40820988 T usb2_trim_config
408209cc T usb2_svb_config
40820a48 T phy_hiusb_init
40820c34 T xhci_hcd_stop
40820c90 T ddr_cmd_prepare_copy
40820c94 T ddr_cmd_site_save
40820cf8 T ddr_cmd_site_restore
40820d30 T ddr_cmd_result_display
408214d8 T ddr_reg_result_display_by_rank
408215a0 T ddr_reg_result_display_by_phy
4082163c T ddr_reg_result_display
40821678 T ddr_cmd_get_entry
40821748 T ddr_cmd_training_if
40821794 T cmd_ddr_set_log_level
408218a8 t do_ddr_training
40821c08 T find_mmc_device
40821c54 t mmc_select_hwpartp
40821ca8 t mmc_get_dev
40821cd8 T mmc_get_blk_desc
40821ce0 T get_mmc_num
40821cf0 T mmc_do_preinit
40821d2c T mmc_list_init
40821d50 T print_mmc_devices
40821e10 t mmc_set_ios
40821e28 t mmc_set_capacity
40821ed8 W board_mmc_getwp
40821ee0 T mmc_getwp
40821f1c W board_mmc_getcd
40821f24 T mmc_send_cmd
40821f34 t mmc_go_idle
40821f80 t mmc_send_op_cond_iter
40821ff8 t mmc_switch_status
4082206c T mmc_send_status
40822138 t __mmc_switch
408221f0 T mmc_send_ext_csd
4082223c T mmc_switch
40822254 T mmc_switch_part
408222b8 T mmc_hwpart_config
408226ec T mmc_getcd
40822728 T mmc_set_clock
4082274c t mmc_startup
40823890 W board_mmc_power_init
40823894 T mmc_start_init
40823af8 T mmc_init
40823bf4 T mmc_set_dsr
40823c00 W cpu_mmc_init
40823c08 T mmc_initialize
40823c64 T mmc_boot_partition_size_change
40823d28 T mmc_set_boot_bus_width
40823d40 T mmc_set_part_conf
40823d58 T mmc_set_rst_n_function
40823d68 T mtd_erase
40823dec T mtd_read
40823e90 T mtd_write
40823f2c T mtd_read_oob
40823f8c T mtd_block_isbad
40823fdc T mtd_block_markbad
40824040 T mtd_arg_off
408240a8 T mtd_arg_off_size
408241c0 t part_erase
40824230 T mtd_erase_callback
408242b0 T hifmc_ip_ver_check
408242fc T hifmc_dev_type_switch
40824394 T debug_register_dump
408243fc T hifmc_set_fmc_system_clock
408244ec T hifmc_get_fmc_best_2x_clock
40824554 T nand_register
408245dc T nand_init
40824640 t verify_bbt_descr
408247f4 t create_bbt
408249f0 t scan_read
40824aec t read_bbt
40824cc4 t write_bbt
4082527c t nand_update_bbt
40825394 t mark_bbt_region
40825500 t search_bbt
40825688 t read_abs_bbt
40825748 T nand_default_bbt
40825ccc T nand_isreserved_bbt
40825d0c T nand_isbad_bbt
40825d58 T nand_markbad_bbt
40825db4 t check_skip_len
40825e60 T nand_erase_opts
408261b0 T nand_verify_page_oob
40826270 T nand_verify
4082635c T nand_write_skip_bad
4082661c T nand_read_skip_bad
40826874 T nand_write_yaffs_skip_bad
40826c90 T nand_fill_ecc
40826d10 T nand_read_yaffs_skip_bad
408270f4 T nand_calculate_ecc
40827218 T nand_correct_data
40827338 t nand_release_device
40827344 T nand_read_byte
40827358 t nand_read_byte16
40827370 t nand_read_word
40827384 t nand_write_byte
408273a8 t nand_write_byte16
408273cc T nand_write_buf
408273f4 T nand_read_buf
40827420 T nand_write_buf16
40827450 T nand_read_buf16
40827484 t nand_read_page_raw_syndrome
40827558 t nand_read_page_swecc
40827690 t nand_read_oob_std
408276cc t nand_read_oob_syndrome
408277d0 t nand_write_oob_std
40827840 t nand_write_oob_syndrome
408279d0 t nand_write_page_raw_syndrome
40827aa4 t nand_write_page_swecc
40827b70 t nand_write_page_hwecc
40827c40 t nand_write_page_syndrome
40827d34 t single_erase
40827d7c t nand_sync
40827d88 t nand_onfi_set_features
40827de4 t nand_onfi_get_features
40827e28 t nand_set_defaults
40827fb4 t nand_write_subpage_hwecc
40828140 t nand_check_erased_buf
4082828c t nand_block_bad
408283dc t nand_write_page
40828518 t nand_wait
408285cc t sanitize_string
40828608 t nand_block_isreserved
40828620 t nand_check_wp
4082866c t nand_read_page_raw
408286b0 t nand_write_page_raw
408286f4 t nand_block_checkbad
40828768 t nand_block_isbad
408287e0 t nand_select_chip
4082882c t nand_fill_oob
40828940 t nand_do_write_ops
40828c78 t nand_write
40828cf8 t nand_do_write_oob
40828ea4 t nand_default_block_markbad
40828f84 t nand_write_oob
40829020 t nand_transfer_oob
40829120 t panic_nand_write
408291e0 t nand_wait_status_ready.constprop.16
40829220 T nand_wait_ready
40829270 t nand_command
40829448 t nand_command_lp
40829690 t nand_do_read_ops
40829b04 t nand_read_oob
40829da0 t nand_read
40829e20 T nand_check_erased_ecc_chunk
40829edc t nand_read_page_syndrome
4082a090 t nand_read_subpage
4082a358 t nand_read_page_hwecc
4082a4fc t nand_read_page_hwecc_oob_first
4082a688 T nand_erase_nand
4082a8dc t nand_block_markbad
4082a9b4 t nand_erase
4082a9bc T get_nand_info
4082a9c8 T nand_scan_ident
4082b79c T nand_scan_tail
4082bd80 T nand_scan
4082bda4 T nand_ecc_name
4082bdc0 T match_ecc_type_to_yaffs
4082bde4 T match_page_type_to_reg
4082be08 T match_ecc_type_to_reg
4082be2c T match_page_type_to_size
4082be44 t hifmc100_read_byte
4082bf50 t hifmc100_read_word
4082bf80 t hifmc100_select_chip
4082bfe4 t hifmc100_cmdfunc
4082c120 t hifmc100_dev_ready
4082c1f0 t hifmc100_send_cmd_readid
4082c2cc t hifmc100_send_cmd_erase
4082c46c t hifmc100_send_cmd_readstart
4082c70c t hifmc100_send_cmd_pageprog
4082c9bc t hifmc100_read_buf
4082c9dc t hifmc100_write_buf
4082ca28 t hifmc100_set_config_info
4082cc58 t hifmc100_send_cmd_reset
4082ccf0 t hifmc100_send_cmd_status
4082cd68 T hifmc100_ecc0_switch
4082cdac T hifmc100_host_init
4082cf4c T hifmc100_spi_nand_init
4082d010 T board_nand_init
4082d178 T nand_get_ecctype
4082d1b0 t spi_do_not_qe_enable
4082d1b8 t hifmc100_spi_nand_search_rw.constprop.0
4082d22c T spi_nand_feature_op
4082d3d0 t spi_general_qe_enable
4082d4c4 t spi_general_write_enable
4082d59c t spi_general_wait_ready
4082d62c t spi_nand_get_flash_info
4082d9e0 T hifmc_spi_nand_ids_register
4082da10 T spi_flash_probe
4082da6c T get_spiflash_info
4082da9c T spi_flash_free
4082daa0 t hifmc100_set_host_addr_mode
4082dac8 t hifmc100_reg_erase
4082dd28 t hifmc100_dma_transfer
4082de6c t hifmc100_dma_read
4082e070 t hifmc100_dma_write
4082e24c T hifmc100_read_ids
4082e304 T hifmc100_spi_nor_scan
4082e394 T hifmc100_spi_nor_init
4082e454 T hifmc100_op_reg
4082e4f8 t hifmc100_driver_shutdown
4082e574 T hifmc100_spi_nor_probe
4082e650 T hifmc100_get_spi_nor_info
4082e680 t spi_do_not_qe_enable
4082e688 t hifmc_spi_nor_search_rw.constprop.0
4082e6fc T spi_general_get_flash_register
4082e7f0 t spi_general_entry_4addr
4082e934 t spi_general_write_enable
4082ea50 t spi_general_wait_ready
4082eaac t spi_w25q256fv_entry_4addr
4082ecc8 t spi_micron_entry_4addr
4082ee1c t spi_s25fl256s_entry_4addr
4082ef84 t spi_nor_reset_pin_enable.constprop.1
4082f08c T spi_is_quad
4082f0bc t spi_gd25qxxx_qe_enable
4082f354 t spi_mx25l25635e_qe_enable
4082f534 t spi_w25q256fv_qe_enable
4082f6b0 t spi_general_qe_enable
4082f838 T hifmc_spi_nor_get_erase
4082f898 T hifmc_spi_nor_probe
4082fcac t hieth_recv
4082fe0c t hieth_send
4082ff48 t hieth_halt
4082ff6c T eth_set_host_mac_address
40830064 T hieth_init
408303b8 T hieth_initialize
40830454 t hieth_mdiobus_write
40830470 t hieth_mdiobus_read
4083047c T phy_detected
40830540 T hieth_mdiobus_driver_init
40830618 T hieth_mdiobus_driver_exit
40830638 T hieth_irq_enable
40830650 T hieth_irq_disable
40830668 T hieth_read_irqstatus
40830678 T hieth_clear_irqstatus
40830690 T hieth_set_endian_mode
408306b8 T hieth_glb_preinit_dummy
40830824 t _set_linkstat
40830858 t _set_negmode
4083088c T hieth_set_linkstat
40830890 T hieth_set_mac_leadcode_cnt_limit
408308c8 T hieth_set_negmode
408308cc T hieth_set_mii_mode
40830904 t wait_mdio_ready.isra.0
40830940 T hieth_mdio_read
40830a24 T hieth_mdio_write
40830ae0 T hieth_mdio_reset
40830b2c T hieth_mdio_init
40830b3c T hieth_mdio_exit
40830b40 T set_efuse_unread
40830b44 T set_inner_phy_addr
40830b6c T set_phy_valtage
40830b70 T hieth_sys_startup
40830b98 T hieth_sys_allstop
40830b9c T hieth_sys_init
40830c50 T hieth_sys_exit
40830c54 t serial_stub_start
40830c60 t serial_stub_stop
40830c6c t serial_stub_putc
40830c7c t serial_stub_puts
40830c8c T serial_stub_getc
40830c98 T serial_stub_tstc
40830ca4 t get_current
40830ce4 W amirix_serial_initialize
40830ce4 W arc_serial_initialize
40830ce4 W arm_dcc_initialize
40830ce4 W asc_serial_initialize
40830ce4 W atmel_serial_initialize
40830ce4 W au1x00_serial_initialize
40830ce4 W bfin_jtag_initialize
40830ce4 W bfin_serial_initialize
40830ce4 W bmw_serial_initialize
40830ce4 W clps7111_serial_initialize
40830ce4 W cogent_serial_initialize
40830ce4 W cpci750_serial_initialize
40830ce4 W evb64260_serial_initialize
40830ce4 W imx_serial_initialize
40830ce4 W iop480_serial_initialize
40830ce4 W jz_serial_initialize
40830ce4 W leon2_serial_initialize
40830ce4 W leon3_serial_initialize
40830ce4 W lh7a40x_serial_initialize
40830ce4 W lpc32xx_serial_initialize
40830ce4 W marvell_serial_initialize