-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSystem.map
3118 lines (3118 loc) · 110 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
0000000080020000 T __image_copy_start
0000000080020000 T _start
0000000080020008 T _TEXT_BASE
0000000080020010 T _end_ofs
0000000080020018 T _bss_start_ofs
0000000080020020 T _bss_end_ofs
0000000080020028 t reset
000000008002002c T save_boot_params_ret
0000000080020090 t master_cpu
0000000080020094 W apply_core_errata
00000000800200c8 t apply_a53_core_errata
00000000800200cc t apply_a57_core_errata
00000000800200dc W smp_kick_all_cpus
00000000800200e0 T c_runtime_cpu_setup
0000000080020128 T __efi_runtime_start
0000000080020128 T __efi_runtime_stop
0000000080020800 T vectors
0000000080020810 t _exception_entry
0000000080020890 t _save_el_regs
000000008002090c t exception_exit
0000000080020990 t _restore_regs
0000000080020b90 T __arm_smccc_smc
0000000080020bbc T __arm_smccc_hvc
0000000080020be8 T cleanup_before_linux
0000000080020c10 T get_tbclk
0000000080020c18 T get_ticks
0000000080020c28 t create_table
0000000080020c98 t split_block
0000000080020d28 T get_tcr
0000000080020e0c t find_pte
0000000080020e98 T setup_pgtables
0000000080021004 W mmu_setup
0000000080021140 T invalidate_dcache_all
0000000080021154 T flush_dcache_all
0000000080021168 T invalidate_dcache_range
000000008002116c T flush_dcache_range
0000000080021170 T dcache_enable
0000000080021280 T dcache_disable
0000000080021304 T dcache_status
0000000080021338 T icache_disable
000000008002139c T icache_status
00000000800213d0 T invalidate_icache_all
00000000800213e4 T icache_enable
0000000080021458 T __asm_dcache_level
0000000080021484 t loop_set
0000000080021488 t loop_way
00000000800214bc T __asm_dcache_all
00000000800214dc t loop_level
00000000800214f8 t skip
0000000080021518 t finished
000000008002151c T __asm_flush_dcache_all
0000000080021524 T __asm_invalidate_dcache_all
000000008002152c T __asm_flush_dcache_range
0000000080021560 T __asm_invalidate_dcache_range
0000000080021590 T __asm_invalidate_icache_all
000000008002159c W __asm_invalidate_l3_dcache
00000000800215a4 W __asm_flush_l3_dcache
00000000800215ac W __asm_invalidate_l3_icache
00000000800215b4 T __asm_invalidate_tlb_all
0000000080021600 T armv8_switch_to_el2
00000000800216b8 W armv8_el2_to_aarch32
00000000800216bc T smc_call
0000000080021700 T _main
0000000080021744 t relocation_return
0000000080021750 t clear_loop
0000000080021780 T relocate_code
00000000800217a8 t copy_loop
00000000800217c4 t fixloop
00000000800217e4 t fixnext
00000000800217ec t relocate_done
0000000080021844 T arch_fixup_fdt
0000000080021890 T arch_lmb_reserve
0000000080021914 W setup_board_tags
0000000080021918 t boot_prep_linux
0000000080021a10 W update_os_arch_secondary_cores
0000000080021a14 t boot_jump_linux
0000000080021acc T do_bootm_linux
0000000080021b48 T boot_prep_vxworks
0000000080021b9c T boot_jump_vxworks
0000000080021ba8 T booti_setup
0000000080021c60 T arch_reserve_stacks
0000000080021c70 T interrupt_init
0000000080021c78 T enable_interrupts
0000000080021c7c T disable_interrupts
0000000080021c84 T show_regs
0000000080021d20 T do_bad_sync
0000000080021d50 T do_bad_irq
0000000080021d80 T do_bad_fiq
0000000080021db0 T do_bad_error
0000000080021de0 T do_sync
0000000080021e10 T do_irq
0000000080021e40 T do_fiq
0000000080021e70 W do_error
0000000080021ea0 T do_reset
0000000080021ed8 W flush_cache
0000000080021f00 T lowlevel_init
0000000080022000 T rom_pointer
0000000080022020 T save_boot_params
0000000080022034 T restore_boot_params
0000000080022050 T board_lmb_reserve
00000000800220bc t do_bootaux
0000000080022174 T board_imx_vservice_get_buffer
00000000800221e4 T imx_vservice_get_buffer
00000000800221e8 T imx_vservice_blocking_request
000000008002232c T board_imx_vservice_find_mu
000000008002249c T imx_vservice_setup
0000000080022624 T call_imx_sip
000000008002264c T call_imx_sip_ret2
000000008002268c t fdt_edma_update_int_array
0000000080022710 t dram_bank_sort
00000000800227c4 t fdt_edma_swap_int_array
00000000800227e8 t check_owned_resource
000000008002280c t disable_fdt_node
0000000080022880 t get_owned_memreg
0000000080022928 t cpu_imx_is_current
000000008002294c t cpu_imx_get_info
0000000080022988 t cpu_imx_get_vendor
00000000800229b0 T cpu_imx_get_desc
0000000080022ab8 T get_pass_over_info
0000000080022ad8 T arch_cpu_init
0000000080022ae0 T arch_auxiliary_core_up
0000000080022d68 T arch_auxiliary_core_check_up
0000000080022db8 T arch_preboot_os
0000000080022dbc T arch_misc_init
0000000080022efc T get_boot_device
0000000080022fb0 T print_bootinfo
0000000080023090 T is_usb_boot
00000000800230ac T get_board_serial
0000000080023138 W board_mmc_get_env_dev
000000008002313c T mmc_get_env_dev
0000000080023198 T get_effective_memsize
0000000080023238 T dram_init
0000000080023338 T dram_init_banksize
00000000800234ac T enable_caches
0000000080023620 T get_page_table_size
000000008002362c T imx_get_mac_from_fuse
00000000800236ec T get_cpu_rev
0000000080023734 T arch_cpu_init_dm
00000000800237b8 t update_fdt_edma_nodes
0000000080023bb4 T ft_system_setup
0000000080024048 t cpu_imx_get_count
0000000080024070 T disconnect_from_pc
00000000800240ec T get_imx8_type
0000000080024130 T get_core_name
00000000800241c4 t imx8_cpu_probe
00000000800242a8 T power_off_pd_devices
000000008002432c T check_owned_udevice
00000000800243c4 T check_m4_parts_boot
000000008002446c T board_imx_virt_i2c_bind
000000008002448c T board_imx_lpi2c_bind
00000000800244ac T board_usb_gadget_port_auto
000000008002458c T imx8_iomux_setup_pad
00000000800245e0 T imx8_iomux_setup_multiple_pads
0000000080024624 T fuse_sense
0000000080024680 T fuse_read
0000000080024684 T fuse_prog
0000000080024730 T fuse_override
0000000080024750 T lpcg_clock_off
00000000800247a4 T lpcg_clock_on
0000000080024804 T lpcg_is_clock_on
000000008002482c T lpcg_all_clock_on
000000008002487c T enable_usboh3_clk
0000000080024884 T init_clk_usb3
0000000080024934 t partition_alloc
0000000080024a78 t do_scu_rm
0000000080025124 W mmc_map_to_kernel_blk
0000000080025128 T board_late_mmc_env_init
00000000800251c4 t tcpc_log
0000000080025244 T tcpc_set_cc_to_source
00000000800252b0 T tcpc_set_cc_to_sink
000000008002531c T tcpc_set_plug_orientation
00000000800253c8 T tcpc_get_cc_status
0000000080025600 T tcpc_clear_alert
0000000080025664 T tcpc_send_command
00000000800256c8 T tcpc_polling_reg
0000000080025778 T tcpc_print_log
00000000800257c0 T tcpc_disable_src_vbus
0000000080025800 T tcpc_disable_sink_vbus
0000000080025840 T tcpc_pd_sink_check_charging
00000000800258bc T tcpc_setup_dfp_mode
0000000080025a00 T tcpc_setup_ufp_mode
0000000080025b28 T tcpc_init
0000000080026568 T ss_mux_select
0000000080026580 T board_early_init_f
0000000080026614 T board_phy_config
00000000800266f0 T checkboard
0000000080026714 T board_usb_init
0000000080026778 T board_usb_cleanup
0000000080026798 T board_init
00000000800268b4 T board_quiesce_devices
00000000800268f4 T reset_cpu
00000000800268f8 T ft_board_setup
0000000080026900 T board_late_init
00000000800269b8 W do_go_exec
00000000800269c8 t do_go
0000000080026a50 T do_bootm
0000000080026b54 T do_bootd
0000000080026b80 t image_info
0000000080026cc8 t do_iminfo
0000000080026d44 T bootm_maybe_autostart
0000000080026db8 t do_help
0000000080026dfc t do_version
0000000080026e3c T blk_common_cmd
0000000080027168 T source
000000008002736c t do_source
00000000800273e4 t print_num
00000000800273fc t do_bdinfo
0000000080027530 t do_blkcache
00000000800275b0 t blkc_configure
0000000080027628 t blkc_show
000000008002765c T do_booti
000000008002776c t parse_argv
00000000800277d4 t do_icache
000000008002786c t do_dcache
0000000080027904 t do_clk
0000000080027984 t do_clk_dump
00000000800279b0 t do_coninfo
0000000080027a8c t do_cpu
0000000080027b00 t print_cpu_list
0000000080027ca0 t do_cpu_detail
0000000080027cc0 t do_cpu_list
0000000080027ce0 t do_dm_dump_devres
0000000080027ce8 t do_dm
0000000080027d7c t do_dm_dump_uclass
0000000080027d94 t do_dm_dump_all
0000000080027dac t do_echo
0000000080027e80 t load_elf_image_phdr
0000000080027fb0 T valid_elf_image
0000000080028008 T do_bootelf
0000000080028298 T do_bootvx
00000000800285cc t do_exit
000000008002860c T do_fat_size
0000000080028614 T do_fat_fsload
000000008002861c t do_fat_ls
0000000080028624 t do_fat_fsinfo
00000000800286b8 t do_fat_fswrite
0000000080028800 t do_fat_rm
0000000080028808 t do_fat_mkdir
0000000080028810 t fdt_valid
00000000800288dc t is_printable_string
000000008002895c t print_data
0000000080028b18 T set_working_fdt_addr
0000000080028b30 t do_fdt
0000000080029b28 t do_flinfo
0000000080029b30 t do_protect
0000000080029b3c t do_flerase
0000000080029b44 t strtou32
0000000080029b98 t do_fuse
0000000080029efc t gpio_get_description
0000000080029fd4 t do_gpio
000000008002a32c t do_i2c
000000008002a3ac t i2c_get_cur_bus
000000008002a3e4 t do_i2c_bus_speed
000000008002a494 t do_i2c_reset
000000008002a4cc t i2c_get_cur_bus_chip
000000008002a50c t do_i2c_probe
000000008002a5d8 t do_i2c_bus_num
000000008002a68c t show_bus
000000008002a724 t do_i2c_olen
000000008002a7dc t do_i2c_flags
000000008002a8a8 t do_i2c_show_bus
000000008002a968 t get_alen.constprop.11
000000008002a9a0 t do_i2c_crc
000000008002ab1c t mod_i2c_mem.isra.6.part.7
000000008002ad58 t do_i2c_nm
000000008002ad74 t do_i2c_md
000000008002afa8 t do_i2c_read
000000008002b0ac t do_i2c_mw
000000008002b1f0 t do_i2c_write
000000008002b3bc t do_i2c_loop
000000008002b508 t do_i2c_mm
000000008002b524 t evalexp
000000008002b5b8 t evalstr
000000008002b614 t binary_test
000000008002b7ac t do_itest
000000008002b83c t bin_data_init
000000008002b858 t k_data_save
000000008002b88c t k_data_restore
000000008002b8c0 t getcxmodem
000000008002b8e4 t load_serial_ymodem
000000008002b9d4 t bin_data_char
000000008002b9fc t chk1.constprop.1
000000008002ba30 t s1_sendpacket.constprop.2
000000008002ba8c t load_serial
000000008002bc68 t do_load_serial
000000008002bd48 t do_load_serial_bin
000000008002c4e4 t do_mem_md
000000008002c5dc t do_mem_base
000000008002c628 t do_mem_mtest
000000008002c858 t do_mem_loop
000000008002c980 t do_mem_cmp
000000008002cb28 t mod_mem.isra.2.part.3
000000008002cce0 t do_mem_mm
000000008002ccfc t do_mem_mw
000000008002ce04 t do_mem_cp
000000008002cec4 t do_mem_nm
000000008002cee0 t extract_range
000000008002cf44 t extract_range
000000008002cfd8 t do_mii
000000008002d8cc t do_mdio
000000008002dd6c t do_sleep
000000008002de54 t do_mmcops
000000008002df38 t init_mmc_device
000000008002dfbc t do_mmc_rst_func
000000008002e064 t do_mmc_rescan
000000008002e08c t do_mmc_partconf
000000008002e19c t do_mmc_bootbus
000000008002e264 t do_mmc_hwpartition
000000008002e750 t do_mmc_list
000000008002e76c t do_mmc_dev
000000008002e8b8 t do_mmcinfo
000000008002ec6c t do_mmc_setdsr
000000008002ed28 t do_mmc_boot_resize
000000008002ee08 t do_mmc_part
000000008002ee6c t do_mmc_erase
000000008002ef70 t do_mmc_write
000000008002f094 t do_mmc_read
000000008002f190 t netboot_common
000000008002f44c t do_bootp
000000008002f458 t do_dhcp
000000008002f464 t do_nfs
000000008002f470 T do_tftpb
000000008002f4c8 t do_ping
000000008002f544 t pci_cfg_modify.isra.0
000000008002f678 t pci_show_regs
000000008002f728 T pci_bar_show
000000008002f904 T pci_header_show
000000008002f9d8 T pciinfo_header
000000008002fa28 t do_pci
0000000080030018 t do_pinmux
0000000080030094 t do_list
0000000080030134 t show_pinmux
0000000080030220 t do_status
000000008003031c t do_dev
00000000800303ac T do_raw_read
0000000080030538 t bytes_per_second
0000000080030584 t do_spi_flash
0000000080030d4c t substitute
0000000080030e64 t get_arg
0000000080030ecc t regex_sub.part.1
0000000080031190 t do_setexpr
0000000080031338 t do_false
0000000080031340 t do_true
0000000080031348 t do_test
00000000800316a4 t do_unzip
0000000080031760 t do_gzwrite
0000000080031878 t do_lzmadec
0000000080031934 t usb_get_class_desc
00000000800319f4 t usb_display_class_sub
0000000080031b80 t usb_display_desc
0000000080031cc4 t usb_show_tree_graph
0000000080031ef8 t usb_show_subtree
0000000080031f30 t usb_for_each_root_dev
0000000080031f98 t usb_display_string
0000000080031fe4 t usb_display_config
0000000080032238 t usb_show_info
00000000800322b0 t usb_find_device
0000000080032360 t do_usbboot
000000008003236c t do_usb_start
000000008003239c T usb_show_tree
00000000800323a8 t do_usb
00000000800327ac T common_diskboot
0000000080032a50 t do_fastboot
0000000080032c54 t ums_fini
0000000080032cc4 t ums_write_sector
0000000080032ce4 t ums_read_sector
0000000080032d04 t do_usb_mass_storage
000000008003303c t do_imgextract
00000000800333f8 t del_gpt_info
0000000080033440 t extract_val
00000000800334e0 t calc_parts_list_len
0000000080033584 t extract_env
000000008003367c t get_gpt_info
00000000800337a8 t create_gpt_partitions_list.isra.1
00000000800338f0 t set_gpt_info.isra.0
0000000080033cec t print_gpt_info
0000000080033dd8 t do_gpt
000000008003447c t do_env_delete
000000008003453c t do_env_save
0000000080034558 t do_env
00000000800345d8 t env_print
000000008003469c t do_env_print
000000008003477c t do_env_default
0000000080034814 t do_env_exists
0000000080034874 t _do_env_set.isra.1
0000000080034a2c t do_env_set
0000000080034a4c T get_env_id
0000000080034a58 T env_set
0000000080034ab0 T env_set_ulong
0000000080034adc T env_set_hex
0000000080034b18 T eth_parse_enetaddr
0000000080034b88 T envmatch
0000000080034c04 T env_get_f
0000000080034d04 T env_get
0000000080034d74 T env_get_hex
0000000080034db8 T eth_env_get_enetaddr
0000000080034e20 T eth_env_set_enetaddr
0000000080034e74 T env_get_ulong
0000000080034eb4 t do_env_edit.part.4
0000000080034f68 t do_env_edit
0000000080034f90 T board_init_f_alloc_reserve
0000000080034fa0 T board_init_f_init_reserve
0000000080034fd0 W show_boot_progress
0000000080034fd8 T main_loop
0000000080035024 t mdelay
0000000080035030 t dummy
0000000080035034 T get_version
000000008003503c T jumptable_init
0000000080035224 t b_reset
000000008003523c t static_get
0000000080035258 t static_peek
0000000080035264 t mapset
0000000080035284 t syntax_err
0000000080035290 t free_pipe_list
0000000080035380 t xmalloc
00000000800353a8 t new_pipe
00000000800353cc t xrealloc
00000000800353f4 t done_command
0000000080035488 t done_pipe
00000000800354e0 t done_word
0000000080035780 t is_assignment
00000000800357cc t file_get
00000000800359c0 t do_showvar
0000000080035acc t b_addchr
0000000080035b60 t b_addqchr
0000000080035bb8 t file_peek
0000000080035bc4 T get_local_var
0000000080035c60 T set_local_var
0000000080035e04 t insert_var_value_sub
00000000800360c4 T parse_string_outer
00000000800361a8 t run_list_real
00000000800368c8 t parse_stream_outer
0000000080036f28 T parse_file_outer
0000000080036f68 T u_boot_hush_start
0000000080036fc0 T bootdelay_process
000000008003715c T autoboot_command
0000000080037270 t display_text_info
0000000080037278 t setup_mon_len
0000000080037298 t reserve_round_4k
00000000800372ac t reserve_uboot
00000000800372e4 t reserve_malloc
0000000080037300 t reserve_global_data
000000008003731c t reserve_fdt
0000000080037364 W reserve_mmu
00000000800373b0 t setup_reloc
00000000800373f8 t reloc_fdt
000000008003743c t reserve_board
0000000080037484 t reserve_video
00000000800374b0 t announce_dram_init
00000000800374d0 t print_cpuinfo
0000000080037528 t init_baud_rate
0000000080037558 t initf_dm
0000000080037560 t initf_bootstage
000000008003757c t setup_spl_handoff
0000000080037584 W mach_cpu_init
000000008003758c t reserve_trace
0000000080037594 t setup_machine
000000008003759c t reserve_bootstage
00000000800375a4 t reserve_bloblist
00000000800375ac t display_new_sp
00000000800375b4 t reloc_bootstage
00000000800375bc t reloc_bloblist
00000000800375c4 t initf_console_record
00000000800375cc W reserve_arch
00000000800375d4 W board_add_ram_info
00000000800375d8 t show_dram_config
0000000080037630 W board_get_usable_ram_top
0000000080037650 t setup_dest_addr
000000008003769c t reserve_stacks
00000000800376b8 T board_init_f
000000008003773c t bootstage_relocate
0000000080037744 t initr_trace
000000008003774c t initr_reloc
0000000080037764 t initr_reloc_global_data
0000000080037798 t run_main_loop
00000000800377a8 t initr_check_fastboot
00000000800377c0 t initr_net
00000000800377e4 t initr_fastboot_setup
00000000800377fc t initr_ethaddr
0000000080037824 t initr_enable_interrupts
000000008003783c t initr_jumptable
0000000080037854 t initr_env
00000000800378c8 t initr_mmc
00000000800378f0 t initr_serial
0000000080037908 t initr_dm
000000008003791c t initr_bootstage
0000000080037938 t initr_malloc
0000000080037960 t initr_caches
0000000080037978 t initr_announce
0000000080037980 t initr_pci
0000000080037988 t initr_barrier
0000000080037990 t initr_console_record
0000000080037998 W power_init_board
00000000800379a0 W cpu_secondary_init_r
00000000800379a4 t initr_secondary_cpu
00000000800379bc T board_init_r
0000000080037a34 W show_board_info
0000000080037a70 T bootm_find_images
0000000080037b3c T bootm_decomp_image
0000000080037ce4 T bootm_disable_interrupts
0000000080037d0c T do_bootm_states
00000000800385f4 t do_bootm_rtems
0000000080038654 T do_bootm_vxworks
000000008003878c t do_bootm_standalone
0000000080038800 t do_bootm_qnxelf
000000008003888c t do_bootm_plan9
0000000080038980 W board_preboot_os
0000000080038984 T boot_selected_os
0000000080038a00 T bootm_os_get_boot_func
0000000080038a10 t of_bus_default_map
0000000080038ab8 t of_bus_default_translate
0000000080038b70 T fdt_support_default_count_cells
0000000080038be0 T fdt_find_and_setprop
0000000080038c74 T fdt_find_or_add_subnode
0000000080038ce8 T fdt_root
0000000080038d80 T fdt_initrd
0000000080038f34 T fdt_chosen
0000000080038ff0 T do_fixup_by_path
000000008003903c T fdt_fixup_memory_banks
0000000080039270 T fdt_fixup_memory
0000000080039294 T fdt_fixup_ethernet
0000000080039440 T fdt_shrink_to_minimum
0000000080039508 T fdt_increase_size
000000008003951c T fdt_translate_address
0000000080039784 T miiphy_get_dev_by_name
00000000800397ec T miiphy_init
0000000080039808 T mdio_alloc
0000000080039844 T mdio_free
0000000080039848 T mdio_register
00000000800398d4 T mdio_unregister
0000000080039904 T mdio_list_devices
00000000800399cc T miiphy_set_current_dev
0000000080039a14 t miiphy_get_active_dev
0000000080039a74 T mdio_get_current_dev
0000000080039a80 T mdio_phydev_for_ethname
0000000080039b20 T miiphy_get_current_dev
0000000080039b34 T miiphy_read
0000000080039b90 T miiphy_write
0000000080039bec T miiphy_listdev
0000000080039c7c T miiphy_info
0000000080039d1c T miiphy_is_1000base_x
0000000080039d5c T miiphy_speed
0000000080039e78 T miiphy_duplex
0000000080039fb8 t usb_set_maxpacket_ep
000000008003a03c T usb_control_msg
000000008003a0dc t usb_get_descriptor
000000008003a138 t get_descriptor_len
000000008003a1dc t usb_setup_descriptor
000000008003a2c8 t usb_get_string
000000008003a36c t usb_string_sub
000000008003a484 T usb_bulk_msg
000000008003a504 T usb_maxpacket
000000008003a520 T usb_clear_halt
000000008003a5c0 T usb_get_configuration_len
000000008003a638 T usb_get_configuration_no
000000008003a678 T usb_set_interface
000000008003a738 T usb_string
000000008003a848 T usb_select_config
000000008003acf4 T usb_setup_device
000000008003ae08 T usb_device_has_child_on_port
000000008003ae10 T usb_find_usb2_hub_address_port
000000008003aea0 t usb_set_port_feature
000000008003aeec t usb_clear_port_feature
000000008003af38 t usb_get_hub_descriptor
000000008003af9c W usb_hub_reset_devices
000000008003afa0 T usb_hub_is_root_hub
000000008003afc0 T usb_get_port_status
000000008003b088 T usb_hub_port_connect_change
000000008003b208 t usb_hub_configure
000000008003b7a8 T usb_hub_scan
000000008003b7bc t usb_hub_post_probe
000000008003b7c0 t usb_stor_irq
000000008003b7d8 t usb_stor_BBB_reset
000000008003b8c4 t usb_stor_CB_reset
000000008003b998 t usb_stor_BBB_clear_endpt_stall.isra.0
000000008003b9e4 t usb_stor_BBB_transport
000000008003bc28 t usb_stor_CB_comdat
000000008003be14 t usb_stor_CBI_get_status.isra.2
000000008003bee4 t usb_stor_CB_transport
000000008003c0d8 t usb_request_sense.constprop.11
000000008003c164 t usb_stor_read
000000008003c2d4 t usb_stor_write
000000008003c444 T usb_stor_info
000000008003c4cc T usb_stor_reset
000000008003c4d8 T usb_stor_scan
000000008003c524 T usb_storage_probe
000000008003c78c T usb_stor_get_info
000000008003ca74 t usb_mass_storage_probe
000000008003cc00 T iomux_doenv
000000008003cdd0 t delete_char.part.0
000000008003cecc t cread_add_char
000000008003cfcc T cli_readline_into_buffer
000000008003d8f0 T cli_readline
000000008003d904 t console_tstc
000000008003d9ac t console_putc
000000008003da1c t console_puts
000000008003da8c t on_console
000000008003db50 T serial_printf
000000008003dbdc T puts
000000008003dc04 T putc
000000008003dc30 t console_getc.isra.0
000000008003dc60 T tstc
000000008003dc84 T getc
000000008003dcd0 T ctrlc
000000008003dd24 T confirm_yesno
000000008003ddfc T disable_ctrlc
000000008003de10 T had_ctrlc
000000008003de1c T clear_ctrlc
000000008003de28 T search_device
000000008003de5c T console_assign
000000008003df38 T console_init_f
000000008003df48 T stdio_print_current_devices
000000008003e004 T console_init_r
000000008003e1a4 T sbrk
000000008003e218 T mem_malloc_init
000000008003e240 t malloc_trim
000000008003e318 t free
000000008003e534 t malloc
000000008003eb5c t calloc
000000008003ec68 t realloc
000000008003f0c8 t memalign
000000008003f288 T initf_malloc
000000008003f2a0 t alloc_simple
000000008003f328 T malloc_simple
000000008003f330 t on_loadaddr
000000008003f370 T image_check_hcrc
000000008003f3c0 T image_check_dcrc
000000008003f404 T image_multi_count
000000008003f420 T image_multi_getimg
000000008003f4a4 T env_get_bootm_low
000000008003f4d8 T env_get_bootm_size
000000008003f550 T env_get_bootm_mapsize
000000008003f580 T memmove_wd
000000008003f590 T genimg_print_size
000000008003f5c8 T get_table_entry
000000008003f5e8 T get_table_entry_name
000000008003f610 T genimg_get_os_name
000000008003f628 T genimg_get_arch_name
000000008003f640 T genimg_get_type_name
000000008003f658 T genimg_get_comp_name
000000008003f670 T image_print_contents
000000008003f834 T get_table_entry_id
000000008003f884 T genimg_get_os_id
000000008003f89c T genimg_get_arch_id
000000008003f8b4 T genimg_get_type_id
000000008003f8cc T genimg_get_comp_id
000000008003f8e4 T genimg_get_kernel_addr_fit
000000008003f960 T genimg_get_format
000000008003f9bc T genimg_has_config
000000008003f9cc T boot_get_ramdisk
000000008003fd3c T boot_ramdisk_high
000000008003fe74 T boot_get_setup
000000008003fe78 T boot_get_loadable
0000000080040014 T image_setup_linux
0000000080040074 T android_image_get_kernel
0000000080040580 T android_image_check_header
0000000080040594 T android_image_get_end
0000000080040640 T android_image_get_kload
0000000080040698 T android_image_get_ramdisk
00000000800407c0 T android_image_get_second
000000008004090c T android_print_contents
0000000080040b1c t fdt_error
0000000080040b54 t boot_fdt_reserve_region
0000000080040ba4 T boot_fdt_add_mem_rsv_regions
0000000080040c98 T boot_relocate_fdt
0000000080040e4c T boot_get_fdt
0000000080041248 W ft_verify_fdt
0000000080041250 T image_setup_libfdt
00000000800413bc t fit_image_get_address
0000000080041440 T fit_parse_conf
00000000800414b8 T fit_parse_subimage
0000000080041530 T fit_get_desc
0000000080041568 T fit_image_get_node
00000000800415b0 T fit_image_get_os
00000000800415fc T fit_image_get_arch
0000000080041648 T fit_image_get_type
0000000080041694 T fit_image_get_comp
00000000800416e0 T fit_image_get_load
00000000800416f0 T fit_image_get_entry
0000000080041700 T fit_image_get_data
0000000080041750 T fit_image_get_data_offset
0000000080041798 T fit_image_get_data_position
00000000800417e0 T fit_image_get_data_size
0000000080041828 T fit_image_get_data_and_size
00000000800418d0 T fit_image_hash_get_algo
0000000080041908 T fit_image_hash_get_value
0000000080041958 t fit_image_print_data
0000000080041ae8 t fit_image_print_verification_data
0000000080041ba4 T fit_image_print
0000000080041ea0 T fit_print_contents
00000000800422f4 T fit_get_end
0000000080042304 T calculate_hash
0000000080042420 T fit_image_verify_with_data
0000000080042614 T fit_image_verify
00000000800426a4 T fit_all_image_verify
00000000800427b4 T fit_image_check_os
00000000800427f0 T fit_image_check_arch
0000000080042854 T fit_image_check_type
0000000080042890 T fit_image_check_comp
00000000800428cc T fit_check_format
0000000080042920 T fit_conf_get_node
00000000800429fc T fit_conf_get_prop_node_index
0000000080042a38 T fit_conf_get_prop_node
0000000080042a40 T fit_get_node_from_config
0000000080042a94 T fit_image_load
0000000080043000 T boot_get_setup_fit
0000000080043078 T boot_get_fdt_fit
0000000080043200 t stdio_serial_tstc
0000000080043204 t stdio_serial_getc
0000000080043208 t stdio_serial_puts
0000000080043210 t stdio_serial_putc
0000000080043218 T stdio_get_list
0000000080043228 T stdio_get_by_name
000000008004332c T stdio_clone
0000000080043378 T stdio_register_dev
00000000800433d0 T stdio_register
00000000800433d8 T stdio_init_tables
00000000800433f0 T stdio_add_devices
0000000080043468 T run_command
000000008004347c T run_command_list
000000008004350c T do_run
0000000080043594 T cli_process_fdt
00000000800435e4 T cli_secure_boot_cmd
0000000080043658 T cli_loop
0000000080043668 T cli_init
000000008004366c T find_cmd_tbl
000000008004372c T find_cmd
000000008004375c T cmd_usage
00000000800437c4 T _do_help
000000008004394c T var_complete
00000000800439cc T complete_subcmdv
0000000080043b80 T cmd_auto_complete
0000000080043f74 T cmd_get_data_size
0000000080044004 T cmd_always_repeatable
0000000080044014 T cmd_never_repeatable
0000000080044020 T cmd_process
0000000080044128 T cmd_process_error
0000000080044168 T log_get_cat_name
00000000800441b8 T log_get_level_name
00000000800441dc T _log
00000000800443c0 T log_init
000000008004447c t log_console_emit
0000000080044540 t hex1_bin
0000000080044584 t hex2_bin
00000000800445c4 T srec_decode
00000000800447ec t CYGACC_COMM_IF_GETC_TIMEOUT.isra.0
0000000080044840 t xyzModem_flush
000000008004485c t xyzModem_get_hdr
0000000080044a5c T xyzModem_stream_open
0000000080044c98 T xyzModem_stream_read
0000000080044eec T xyzModem_stream_close
0000000080044f28 T xyzModem_stream_terminate
0000000080044fcc T xyzModem_error
0000000080044ff4 t part_driver_lookup_type
000000008004509c T blk_get_dev
00000000800450d4 T dev_print
00000000800452c4 T part_init
000000008004534c T part_print
0000000080045484 T part_get_info
00000000800454ec T part_get_info_whole_disk
0000000080045548 T blk_get_device_by_str
000000008004568c T blk_get_device_part_str
00000000800459e8 T part_set_generic_name
0000000080045a30 t test_block_type
0000000080045ac0 t print_partition_extended
0000000080045d1c T part_print_dos
0000000080045d58 t part_test_dos
0000000080045dd0 t part_get_info_extended
0000000080046084 T part_get_info_dos
00000000800460a0 t print_efiname
00000000800460f4 t part_test_efi
00000000800461ac t validate_gpt_header
00000000800463dc t is_gpt_valid
00000000800466b0 t is_pte_valid
0000000080046714 T part_print_efi
0000000080046988 T part_get_info_efi
0000000080046ba0 T get_disk_guid
0000000080046c80 T write_gpt_table
000000008004717c T gpt_fill_pte
0000000080047514 T gpt_fill_header
0000000080047764 T gpt_restore
00000000800478b4 T gpt_verify_headers
000000008004794c T gpt_verify_partitions
0000000080047b40 T is_valid_gpt_buf
0000000080047c30 T write_backup_gpt_partitions
0000000080047fcc T clk_request
0000000080047ff0 t clk_get_by_indexed_prop.isra.1
00000000800480a4 T clk_get_by_index
00000000800480bc T clk_get_by_name
0000000080048110 T clk_free
0000000080048130 T clk_get_rate
0000000080048150 T clk_set_rate
0000000080048170 T clk_set_parent
0000000080048190 T clk_set_defaults
0000000080048330 T clk_enable
0000000080048350 T clk_enable_bulk
00000000800483b0 T clk_disable
00000000800483d0 T clk_release_all
000000008004844c T clk_get_bulk
0000000080048518 t clk_fixed_rate_ofdata_to_platdata
000000008004855c t clk_fixed_rate_get_rate
0000000080048588 t clk_fixed_factor_get_rate
00000000800485dc t clk_fixed_factor_ofdata_to_platdata
0000000080048654 t imx8_clk_probe
000000008004865c t check_imx8_lpcg_clk
00000000800486cc t check_imx8_slice_clk
000000008004873c t imx8_clk_set_parent
0000000080048860 t __imx8_clk_enable
0000000080048944 t imx8_clk_disable
0000000080048954 t imx8_clk_enable
0000000080048964 t __imx8_clk_get_rate
0000000080048a8c t imx8_clk_get_rate
0000000080048a98 t __imx8_clk_set_rate
0000000080048bf4 t imx8_clk_set_rate
0000000080048c04 T soc_clk_dump
0000000080048d28 t device_bind_common.isra.0
0000000080049038 t alloc_priv
00000000800490a0 T device_bind_with_driver_data
00000000800490b4 T device_bind
00000000800490c4 T device_bind_ofnode
00000000800490d4 T device_bind_by_name
0000000080049150 T device_probe
000000008004940c T dev_get_platdata
000000008004944c T dev_get_parent_platdata
000000008004948c T dev_get_uclass_platdata
00000000800494cc T dev_get_priv
000000008004950c T dev_get_uclass_priv
000000008004954c T dev_get_parent_priv
000000008004958c T device_find_first_child
00000000800495ac T device_find_next_child
00000000800495d4 T dev_get_parent
00000000800495dc T dev_get_driver_data
00000000800495e4 T dev_get_driver_ops
00000000800495f4 T device_get_uclass_id
0000000080049604 T device_has_active_children
0000000080049640 T device_is_last_sibling
0000000080049664 T device_set_name_alloced
0000000080049674 T device_is_compatible
0000000080049694 T devfdt_get_addr_index
0000000080049778 T devfdt_get_addr
0000000080049780 T lists_driver_lookup_name
00000000800497e8 T lists_uclass_lookup
0000000080049840 T lists_bind_drivers
00000000800498f0 T device_bind_driver_to_node
0000000080049958 T device_bind_driver
0000000080049964 T lists_bind_fdt
0000000080049b08 t dm_scan_fdt_node
0000000080049c10 t dm_scan_fdt_ofnode_path
0000000080049c58 T dm_root
0000000080049c90 T dm_get_translation_offset
0000000080049cac T dm_init
0000000080049d10 T dm_scan_platdata
0000000080049d44 T dm_scan_fdt_dev
0000000080049d6c T dm_scan_fdt
0000000080049d84 T dm_extended_scan_fdt
0000000080049ddc W dm_scan_other
0000000080049de4 T dm_init_and_scan
0000000080049e38 T uclass_find
0000000080049e80 T uclass_get
0000000080049fb0 T uclass_get_name
0000000080049fe0 T dev_get_uclass_index
000000008004a038 T uclass_find_device
000000008004a0b0 T uclass_find_first_device
000000008004a100 T uclass_find_next_device
000000008004a12c T uclass_find_device_by_name
000000008004a1c4 T uclass_find_device_by_seq
000000008004a254 T uclass_find_device_by_of_offset
000000008004a2cc T uclass_find_device_by_ofnode
000000008004a348 T uclass_find_device_by_phandle
000000008004a3fc T uclass_get_device_by_driver
000000008004a478 T uclass_get_device_tail
000000008004a4b8 T uclass_get_device
000000008004a4f0 T uclass_get_device_by_name
000000008004a528 T uclass_get_device_by_seq
000000008004a590 T uclass_get_device_by_of_offset
000000008004a5c8 T uclass_get_device_by_ofnode
000000008004a600 T uclass_get_device_by_phandle_id
000000008004a690 T uclass_get_device_by_phandle
000000008004a6c8 T uclass_first_device
000000008004a70c T uclass_first_device_err
000000008004a740 T uclass_next_device
000000008004a784 T uclass_next_device_err
000000008004a7b8 T uclass_first_device_check
000000008004a7f8 T uclass_next_device_check
000000008004a828 T uclass_bind_device
000000008004a898 T uclass_unbind_device
000000008004a8e4 T uclass_resolve_seq
000000008004a99c T uclass_pre_probe_device
000000008004aa00 T uclass_post_probe_device
000000008004aa64 T uclass_pre_remove_device
000000008004aa80 T dm_warn
000000008004aad4 T dm_ofnode_pre_reloc
000000008004ab38 T device_unbind
000000008004ac20 T device_chld_unbind
000000008004ac98 T device_free
000000008004ad18 T device_remove
000000008004ae6c T device_chld_remove
000000008004aee4 t simple_bus_post_bind
000000008004af44 t show_devices
000000008004b078 T dm_dump_all
000000008004b0cc T dm_dump_uclass
000000008004b1ec T regmap_init_mem
000000008004b358 T regmap_raw_read_range
000000008004b440 T regmap_raw_read
000000008004b454 T regmap_read
000000008004b45c T regmap_raw_write_range
000000008004b540 T regmap_raw_write
000000008004b554 T regmap_write
000000008004b574 T regmap_update_bits
000000008004b5bc t syscon_pre_probe
000000008004b608 T syscon_get_regmap
000000008004b644 T syscon_regmap_lookup_by_phandle
000000008004b688 T ofnode_read_u32
000000008004b6e4 T ofnode_read_u32_default
000000008004b704 T ofnode_read_string
000000008004b760 T ofnode_read_u32_array
000000008004b77c T ofnode_first_subnode
000000008004b7a0 T ofnode_next_subnode
000000008004b7c4 T ofnode_get_parent
000000008004b7e8 T ofnode_get_name
000000008004b7fc T ofnode_read_size
000000008004b834 T ofnode_stringlist_search
000000008004b878 T ofnode_parse_phandle_with_args
000000008004b8e4 T ofnode_count_phandle_with_args
000000008004b908 T ofnode_path
000000008004b92c T ofnode_get_property
000000008004b944 T ofnode_read_bool
000000008004b964 T ofnode_read_pci_addr
000000008004ba10 T ofnode_read_pci_vendev
000000008004bb14 T ofnode_read_addr_cells
000000008004bb24 T ofnode_read_size_cells
000000008004bb34 T ofnode_read_simple_addr_cells
000000008004bb38 T ofnode_read_simple_size_cells
000000008004bb3c T ofnode_pre_reloc
000000008004bbb8 T ofnode_read_resource
000000008004bc24 T ofnode_read_resource_byname
000000008004bc70 T ofnode_device_is_compatible
000000008004bc9c t pci_get_bus_max
000000008004bce8 t pci_uclass_pre_probe
000000008004bf4c T pci_get_bus
000000008004bfac T pci_get_controller
000000008004bfe4 T dm_pci_get_bdf
000000008004c014 T pci_bus_find_devfn
000000008004c078 T dm_pci_bus_find_bdf
000000008004c0b8 T pci_bus_write_config
000000008004c0d4 t pci_bridge_write_config
000000008004c0e0 T dm_pci_write_config
000000008004c150 T dm_pci_write_config8
000000008004c15c T dm_pci_write_config16
000000008004c168 T dm_pci_write_config32
000000008004c174 T pci_bus_read_config
000000008004c190 t pci_bridge_read_config
000000008004c19c T dm_pci_read_config
000000008004c20c T dm_pci_read_config8
000000008004c240 T dm_pci_read_config16
000000008004c274 T dm_pci_read_config32
000000008004c2a8 T pci_auto_config_devices
000000008004c35c T dm_pci_hose_probe_bus
000000008004c3ec T pci_bind_bus_devices
000000008004c7d4 t pci_uclass_post_probe
000000008004c808 T pci_get_devfn
000000008004c84c t pci_uclass_child_post_bind
000000008004c8a4 T pci_conv_32_to_size
000000008004c8d8 T pci_conv_size_to_32
000000008004c920 T pci_get_regions
000000008004ca28 T pci_init
000000008004ca58 T dm_pciauto_setup_device
000000008004ccec T dm_pciauto_prescan_setup_bridge
000000008004cec4 T dm_pciauto_postscan_setup_bridge
000000008004cfe8 T dm_pciauto_config_device
000000008004d0bc T pciauto_region_init
000000008004d0d4 T pciauto_region_align
000000008004d0f0 T pciauto_region_allocate
000000008004d140 T pciauto_config_init
000000008004d224 T pci_class_str
000000008004d38c t imx_pcie_atu_outbound_set
000000008004d41c t get_bus_address
000000008004d49c t imx_pcie_ofdata_to_platdata
000000008004d618 t pcie_phy_poll_ack
000000008004d674 t pcie_phy_wait_ack
000000008004d6d0 t imx_pcie_addr_valid
000000008004d6f8 t pcie_phy_read
000000008004d768 t pcie_phy_write.part.7
000000008004d7fc t imx_pcie_dm_read_config
000000008004d888 t imx_pcie_dm_write_config
000000008004d940 T imx_pcie_gpr_read
000000008004d948 T imx_pcie_gpr_update_bits
000000008004d950 t imx8_pcie_assert_core_reset.isra.9
000000008004da0c t imx_pcie_dm_remove
000000008004da38 t imx_pcie_dm_probe
000000008004e448 t pinconfig_post_bind
000000008004e524 t pinctrl_post_bind
000000008004e54c T pinctrl_select_state
000000008004e6b8 T pinctrl_get_pins_count
000000008004e6d4 T pinctrl_get_pin_name
000000008004e724 T pinctrl_get_pin_muxing
000000008004e740 t imx_pinctrl_set_state
000000008004ea5c T imx_pinctrl_probe
000000008004eb8c T imx_pinctrl_remove
000000008004eba4 T imx_pinctrl_scu_conf_pins