-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSystem.map
5885 lines (5885 loc) · 220 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
0000000000a00000 T __image_copy_start
0000000000a00000 T _start
0000000000a00008 T _TEXT_BASE
0000000000a00010 T _end_ofs
0000000000a00018 T _bss_start_ofs
0000000000a00020 T _bss_end_ofs
0000000000a00028 t reset
0000000000a0002c T save_boot_params_ret
0000000000a00100 t master_cpu
0000000000a00104 W apply_core_errata
0000000000a00124 t apply_a57_core_errata
0000000000a00128 W lowlevel_init
0000000000a00144 W smp_kick_all_cpus
0000000000a00150 T c_runtime_cpu_setup
0000000000a00188 W save_boot_params
0000000000a00800 T vectors
0000000000a00b90 t _exception_entry
0000000000a00c74 t exception_exit
0000000000a00cec T __arm_smccc_smc
0000000000a00d18 T __arm_smccc_hvc
0000000000a00d48 T cpu_suspend
0000000000a00dac t aborted
0000000000a00db4 t suspend_return
0000000000a00de8 T cpu_do_suspend
0000000000a00e54 T cpu_resume
0000000000a00e74 T cpu_do_resume
0000000000a00ed0 t _suspend_gd
0000000000a00ed4 T sdelay
0000000000a00ee0 T cleanup_before_linux
0000000000a00f0c T get_tbclk
0000000000a00f14 T get_ticks
0000000000a00f24 t count_required_pts
0000000000a0101c t create_table
0000000000a0108c t split_block
0000000000a0111c T get_tcr
0000000000a01200 t find_pte
0000000000a0128c t set_one_region
0000000000a01364 W get_page_table_size
0000000000a013ac T setup_pgtables
0000000000a01518 W mmu_setup
0000000000a01654 T invalidate_dcache_all
0000000000a01668 T flush_dcache_all
0000000000a0167c T invalidate_dcache_range
0000000000a01680 T flush_dcache_range
0000000000a01684 T dcache_enable
0000000000a01794 T dcache_disable
0000000000a01818 T mmu_set_region_dcache_behaviour
0000000000a018c0 T icache_disable
0000000000a01924 T invalidate_icache_all
0000000000a01938 T icache_enable
0000000000a019ac T __asm_dcache_level
0000000000a019d8 t loop_set
0000000000a019dc t loop_way
0000000000a01a10 T __asm_dcache_all
0000000000a01a30 t loop_level
0000000000a01a4c t skip
0000000000a01a6c t finished
0000000000a01a70 T __asm_flush_dcache_all
0000000000a01a78 T __asm_invalidate_dcache_all
0000000000a01a80 T __asm_flush_dcache_range
0000000000a01abc T __asm_invalidate_dcache_range
0000000000a01af0 T __asm_invalidate_icache_all
0000000000a01afc W __asm_invalidate_l3_dcache
0000000000a01b04 W __asm_flush_l3_dcache
0000000000a01b0c W __asm_invalidate_l3_icache
0000000000a01b14 T __asm_switch_ttbr
0000000000a01bf4 T __asm_invalidate_tlb_all
0000000000a01c40 T armv8_switch_to_el2
0000000000a01cf8 T cpu_suspend_save
0000000000a01d28 T _main
0000000000a01d6c t relocation_return
0000000000a01d78 t clear_loop
0000000000a01da8 T relocate_code
0000000000a01ddc t copy_loop
0000000000a01e00 t fixloop
0000000000a01e20 t fixnext
0000000000a01e28 t relocate_done
0000000000a01e7c T gic_init_secure
0000000000a01eb0 T gic_init_secure_percpu
0000000000a01f2c t el3_sre
0000000000a01f3c t el2_sre
0000000000a01f4c t el1_sre
0000000000a01f58 t el3_ctlr
0000000000a01f6c t el1_ctlr
0000000000a01f90 T gic_kick_secondary_cpus
0000000000a01fa0 T gic_wait_for_interrupt
0000000000a01fb4 T setjmp
0000000000a01fdc T longjmp
0000000000a0201c T arch_fixup_fdt
0000000000a020bc t boot_prep_linux
0000000000a02114 T arch_lmb_reserve
0000000000a02128 W update_os_arch_secondary_cores
0000000000a0212c t boot_jump_linux
0000000000a02244 T do_bootm_linux
0000000000a022b8 T boot_prep_vxworks
0000000000a02304 T boot_jump_vxworks
0000000000a02314 T bootz_setup
0000000000a02390 W arch_reserve_stacks
0000000000a023a0 T show_regs
0000000000a025fc T do_bad_sync
0000000000a02638 T do_bad_irq
0000000000a02674 T do_bad_fiq
0000000000a026b0 T do_bad_error
0000000000a026ec T do_sync
0000000000a02728 T do_fiq
0000000000a02764 W do_error
0000000000a027a0 T dump_core_stack
0000000000a0287c W flush_cache
0000000000a02884 T noncached_init
0000000000a028bc T noncached_alloc
0000000000a02908 T armv8_el2_to_aarch32
0000000000a02930 T board_fit_image_post_process
0000000000a02bc8 T fit_board_verify_required_sigs
0000000000a02c14 T rockchip_rockusb_get_chip_info
0000000000a02c34 t misc_require_recovery
0000000000a02d64 T get_bcb_recovery_msg
0000000000a02d88 T rockchip_get_boot_mode
0000000000a03074 T setup_boot_mode
0000000000a03164 t bootdev_init
0000000000a03208 t crypto_csum.isra.0
0000000000a03270 W rk_board_early_fdt_fixup
0000000000a03278 W rk_board_scan_bootdev
0000000000a0328c t boot_devtype_init
0000000000a03394 T rockchip_get_bootdev
0000000000a03674 W rockchip_dnl_key_pressed
0000000000a0368c T setup_download_mode
0000000000a03764 T rockchip_read_dtb_file
0000000000a039f8 T rockchip_ram_read_dtb_file
0000000000a03b60 t rockchip_set_serialno.isra.0
0000000000a03d04 W rk_board_late_init
0000000000a03d14 T rk_board_fdt_fixup
0000000000a03e80 W rk_board_dm_fdt_fixup
0000000000a03e88 W set_armclk_rate
0000000000a03e90 W rk_board_init
0000000000a03e98 T fb_set_reboot_flag
0000000000a03ed0 T board_late_init
0000000000a042f8 T board_init
0000000000a043d0 T interrupt_debugger_init
0000000000a043d8 T board_fdt_fixup
0000000000a0440c T arch_preboot_os
0000000000a04454 T enable_caches
0000000000a04468 T board_lmb_reserve
0000000000a0450c T board_bidram_reserve
0000000000a04564 T board_sysmem_reserve
0000000000a0456c T board_bidram_parse_fn
0000000000a04578 W board_init_f_boot_flags
0000000000a04598 T board_usb_cleanup
0000000000a045b0 T bootm_board_start
0000000000a04680 T bootm_image_populate_dtb
0000000000a046d8 T board_do_bootm
0000000000a04838 T autoboot_command_fail_handle
0000000000a0483c T board_quiesce_devices
0000000000a0489c T board_fdt_chosen_bootargs
0000000000a04ad4 T ft_verify_fdt
0000000000a04adc T iomem_show
0000000000a04b9c t iomem_show_by_match
0000000000a04cbc t do_iomem_by_match
0000000000a04d74 T is_hotkey
0000000000a04df8 T hotkey_run
0000000000a04ed8 T init_kernel_dtb
0000000000a05478 t fit_get_blob.constprop.0
0000000000a055b4 t fit_sig_require_conf.constprop.0
0000000000a05654 T fit_default_conf_get_node
0000000000a05698 t fdt_image_get_offset_size
0000000000a05730 t fit_image_get_param
0000000000a05798 T fix_image_set_addr
0000000000a05828 t fit_image_fixup_alloc
0000000000a058ec T fit_image_pre_process
0000000000a05984 T fit_image_fail_process
0000000000a05a14 T fit_image_get_bootables_size
0000000000a05b0c T fit_image_load_bootables
0000000000a05bd0 T fit_image_init_resource
0000000000a05e90 t __invoke_sip_fn_smc
0000000000a05ee0 T psci_system_suspend
0000000000a05f14 T sip_smc_request_share_mem
0000000000a05f3c T sip_smc_hdcp_config
0000000000a05f6c t mtd_vendor_write
0000000000a06058 t vendor_ops
0000000000a0616c T vendor_storage_init
0000000000a06620 T vendor_storage_fixup
0000000000a06694 T vendor_storage_read
0000000000a0673c T vendor_storage_write
0000000000a06964 T vendor_handle_hdcp
0000000000a06aa0 t do_dump_resource
0000000000a06b54 t resource_check_header
0000000000a06b68 t resource_add_file
0000000000a06c4c t resource_default
0000000000a06ca0 t resource_setup_list.isra.0
0000000000a06d5c T resource_setup_ram_list
0000000000a06dc0 t resource_scan
0000000000a071d8 t resource_get_file
0000000000a07240 T rockchip_read_resource_file
0000000000a07330 T rockchip_read_resource_dtb
0000000000a073d8 T param_parse_atf_mem
0000000000a07454 T param_parse_optee_mem
0000000000a0752c T param_parse_common_resv_mem
0000000000a07538 T param_parse_assign_bootdev
0000000000a075a4 T param_parse_atags_bootdev
0000000000a076e4 T param_parse_ddr_mem
0000000000a0784c T param_parse_pre_serial
0000000000a078e8 T param_parse_pubkey_fuse_programmed
0000000000a07940 T dram_init_banksize
0000000000a07958 T dram_init
0000000000a0798c T board_get_usable_ram_top
0000000000a079a4 t rk3568_board_fdt_fixup_ethernet.isra.0
0000000000a07b9c T board_debug_uart_init
0000000000a07bcc T arch_cpu_init
0000000000a07bd4 t js_hash
0000000000a07c20 T atags_bad_magic
0000000000a07c74 T atags_overflow
0000000000a07cbc T atags_is_available
0000000000a07cd8 T atags_get_tag
0000000000a07d74 T atags_destroy
0000000000a07d9c T usb_gadget_handle_interrupts
0000000000a07db8 T board_usb_init
0000000000a07dc4 t do_reboot_brom
0000000000a07e04 W do_go_exec
0000000000a07e14 t do_go
0000000000a07e9c T do_bootm
0000000000a07fc8 T do_bootd
0000000000a07ff4 T bootm_maybe_autostart
0000000000a08068 t do_help
0000000000a080a4 t do_version
0000000000a080e4 T blk_common_cmd
0000000000a084ac t do_blk
0000000000a085a0 T source
0000000000a08774 t do_source
0000000000a087f0 t print_num
0000000000a08804 t do_bdinfo
0000000000a08948 T do_avb_version
0000000000a08980 T do_avb_verify_partition
0000000000a08a20 t do_boot_avb
0000000000a08ab4 t do_boot_android
0000000000a08bac T do_avb_read_rollback_index
0000000000a08c54 T do_avb_read_is_device_unlocked
0000000000a08cfc T do_avb_write_is_device_unlocked
0000000000a08d94 T do_avb_get_size_of_partition
0000000000a08e30 T do_avb_get_get_unique_guid_for_partition
0000000000a08ed0 T do_perm_attr_test
0000000000a08fa4 T do_avb_write_rollback_index
0000000000a09064 T do_avb_read
0000000000a091a8 t do_android_print_hdr
0000000000a09264 t do_boot_fit
0000000000a093f0 t read_rockchip_image
0000000000a094ec t do_boot_rockchip
0000000000a096f4 t efi_do_enter
0000000000a09750 t efi_run_in_el2
0000000000a0978c t do_bootefi_exec
0000000000a09a70 t do_bootefi
0000000000a09b28 T efi_set_bootdev
0000000000a09c44 T do_bootz
0000000000a09d40 T do_booti
0000000000a09eac t do_coninfo
0000000000a09f88 t dump_hash
0000000000a09ffc t do_crypto_csum
0000000000a0a258 t do_dtimg
0000000000a0a2ec t dtimg_get_fdt.part.0
0000000000a0a3f0 t do_dtimg_start
0000000000a0a410 t do_dtimg_dump
0000000000a0a490 t do_dtimg_size
0000000000a0a4b0 t do_echo
0000000000a0a584 t do_exit
0000000000a0a5c4 T do_ext4_size
0000000000a0a5cc T do_ext4_load
0000000000a0a5d4 T do_ext4_ls
0000000000a0a5dc T do_ext2load
0000000000a0a5e4 t do_ext2ls
0000000000a0a5ec T do_fat_size
0000000000a0a5f4 T do_fat_fsload
0000000000a0a5fc t do_fat_ls
0000000000a0a604 t do_fat_fsinfo
0000000000a0a698 t do_fat_fswrite
0000000000a0a7b8 t fdt_valid
0000000000a0a884 t is_printable_string
0000000000a0a908 t print_data.part.0
0000000000a0aabc T set_working_fdt_addr
0000000000a0aad4 t do_fdt
0000000000a0ba4c t do_size_wrapper
0000000000a0ba54 t do_load_wrapper
0000000000a0bad4 t do_save_wrapper
0000000000a0badc t do_ls_wrapper
0000000000a0bae4 t do_fstype_wrapper
0000000000a0bae8 W do_board_download
0000000000a0baec t do_download
0000000000a0bb3c t do_mem_md
0000000000a0bc2c t do_mem_base
0000000000a0bc78 t do_mem_crc
0000000000a0bca8 t do_mem_loop
0000000000a0bdd0 t do_mem_cmp
0000000000a0bf58 t mod_mem.part.0
0000000000a0c108 t do_mem_mm
0000000000a0c12c t do_mem_mw
0000000000a0c234 t do_mem_cp
0000000000a0c2f4 t do_mem_nm
0000000000a0c318 t extract_range
0000000000a0c378 t extract_range
0000000000a0c410 t do_mii
0000000000a0cd04 t do_mdio
0000000000a0d1a8 t init_mmc_device
0000000000a0d20c t do_mmc_rescan
0000000000a0d234 t do_mmcrpmb
0000000000a0d354 t do_mmcops
0000000000a0d428 t do_mmc_dev
0000000000a0d574 t do_mmc_setdsr
0000000000a0d630 t do_mmcrpmb_counter
0000000000a0d680 t do_mmcrpmb_write
0000000000a0d784 t do_mmcrpmb_read
0000000000a0d8a0 t do_mmcrpmb_key
0000000000a0d940 t do_mmc_testefuse
0000000000a0d990 t do_mmc_test_secure_storage
0000000000a0da88 t do_mmc_hwpartition
0000000000a0df78 t do_mmc_list
0000000000a0df94 t do_mmcinfo
0000000000a0e354 t do_mmc_part
0000000000a0e3b8 t do_mmc_erase
0000000000a0e4bc t do_mmc_write
0000000000a0e5e0 t do_mmc_read
0000000000a0e6dc T init_rpmb
0000000000a0e78c T finish_rpmb
0000000000a0e7bc T do_readcounter
0000000000a0e7e8 T do_programkey
0000000000a0e814 T do_authenticatedread
0000000000a0e848 T do_authenticatedwrite
0000000000a0e874 T do_returnmmc
0000000000a0e880 t mtd_show_parts
0000000000a0e924 t mtd_dump_buf
0000000000a0e9f4 t do_mtd
0000000000a0f3f4 t do_mtd_blk
0000000000a0f41c t set_dev
0000000000a0f480 t do_nandboot
0000000000a0f7b4 t nand_print_and_set_info.constprop.0
0000000000a0f8b4 t do_nand
0000000000a103f4 t netboot_common
0000000000a106b8 t do_bootp
0000000000a106c4 t do_tftpput
0000000000a106d0 t do_dhcp
0000000000a106dc t do_nfs
0000000000a106e8 T do_tftpb
0000000000a10740 T do_tftpbootm
0000000000a1080c T do_tftpflash
0000000000a109d4 t do_ping
0000000000a10a50 t do_part_list
0000000000a10bdc t do_part_start
0000000000a10cb8 t do_part_size
0000000000a10d94 t do_part
0000000000a10ebc t pci_show_regions
0000000000a10ffc t pci_field_width
0000000000a11020 t pci_show_regs
0000000000a110bc t pci_header_show
0000000000a11190 t pciinfo
0000000000a112dc t pci_cfg_modify.constprop.0
0000000000a113fc t do_pci
0000000000a11af8 t eol_or_eof
0000000000a11b1c t do_pxe
0000000000a11bac t label_print
0000000000a11bc8 t do_get_tftp
0000000000a11c04 t from_env
0000000000a11c40 t label_destroy
0000000000a11ca8 t destroy_pxe_menu
0000000000a11d10 t do_get_any
0000000000a11d54 t do_get_fat
0000000000a11d94 t do_get_ext2
0000000000a11dd4 t format_mac_pxe.constprop.0
0000000000a11e40 t get_relfile
0000000000a11f78 t get_pxe_file
0000000000a11fd8 t get_pxelinux_path
0000000000a12070 t do_pxe_get
0000000000a121d8 t get_relfile_envaddr
0000000000a12234 t label_boot
0000000000a127a0 t handle_pxe_menu
0000000000a12928 t get_string.constprop.0.isra.0
0000000000a129fc t get_token
0000000000a12b48 t parse_sliteral
0000000000a12bb4 t parse_integer
0000000000a12c3c t parse_pxefile_top
0000000000a13034 t handle_include
0000000000a13108 t parse_pxefile
0000000000a13180 t do_pxe_boot
0000000000a13270 t do_sysboot
0000000000a13470 t do_nvme
0000000000a13528 t rkusb_fini
0000000000a13594 t rkusb_erase_sector
0000000000a135b4 t rkusb_write_sector
0000000000a13620 t do_rkusb
0000000000a13a68 t rkusb_read_sector
0000000000a13ac4 t substitute
0000000000a13bdc t get_arg
0000000000a13c4c t regex_sub.part.0
0000000000a13f10 t do_setexpr
0000000000a140bc t do_false
0000000000a140c4 t do_true
0000000000a140cc t do_test
0000000000a143f0 t usb_get_class_desc
0000000000a1449c t usb_display_class_sub
0000000000a14628 t usb_display_desc
0000000000a14774 t usb_show_tree_graph
0000000000a149a4 t usb_show_subtree
0000000000a149dc t usb_for_each_root_dev
0000000000a14a44 t usb_display_string
0000000000a14a90 t usb_display_config
0000000000a14ce4 t usb_show_info
0000000000a14d5c t usb_find_device
0000000000a14e0c t do_usbboot
0000000000a14e18 t do_usb_start
0000000000a14e48 T usb_show_tree
0000000000a14e54 t do_usb
0000000000a15240 T common_diskboot
0000000000a154e4 t do_fastboot
0000000000a1564c t ums_fini
0000000000a156bc t ums_write_sector
0000000000a156dc t ums_read_sector
0000000000a156fc t do_usb_mass_storage
0000000000a15a54 t extract_val
0000000000a15af4 t extract_env
0000000000a15bec t set_gpt_info.constprop.0
0000000000a16058 t do_gpt
0000000000a16348 T test_secure_storage_default
0000000000a16588 T test_secure_storage_security_partition
0000000000a167b8 t do_rkimg_test
0000000000a16928 t do_dump_atags
0000000000a171a4 t do_env_delete
0000000000a17268 t _do_env_set
0000000000a17420 t do_env_set
0000000000a17444 t do_env_save
0000000000a17474 t do_env
0000000000a174f8 t env_print
0000000000a175bc t do_env_print
0000000000a1769c t do_env_import
0000000000a178f0 t do_env_default
0000000000a17974 t do_env_exists
0000000000a179d4 T get_env_id
0000000000a179e0 T env_set
0000000000a17a38 T env_set_ulong
0000000000a17a64 T env_set_hex
0000000000a17aa0 t do_env_export
0000000000a17cc0 T envmatch
0000000000a17d3c T env_get_f
0000000000a17e24 T env_get
0000000000a17e94 T env_update_extract_subset
0000000000a17fd0 T env_exist
0000000000a18120 T env_delete
0000000000a181bc T env_get_hex
0000000000a18200 T env_get_ulong
0000000000a18240 t do_env_edit.part.0
0000000000a182f8 t do_env_edit
0000000000a1831c t env_append.isra.0
0000000000a18414 T env_update_filter
0000000000a1881c T env_update
0000000000a18824 t do_env_update
0000000000a1883c T board_init_f_alloc_reserve
0000000000a1884c T board_init_f_init_reserve
0000000000a1887c W show_boot_progress
0000000000a18884 T main_loop
0000000000a188ec t mdelay
0000000000a1891c t dummy
0000000000a18920 T get_version
0000000000a18928 T jumptable_init
0000000000a18b18 t hash_finish_crc32
0000000000a18b50 t hash_update_crc32
0000000000a18b84 t hash_init_crc32
0000000000a18bb4 t hash_finish_sha256
0000000000a18bfc t hash_update_sha256
0000000000a18c20 t hash_init_sha256
0000000000a18c54 t hash_finish_sha1
0000000000a18c9c t hash_update_sha1
0000000000a18cc0 t hash_init_sha1
0000000000a18cf4 T hash_lookup_algo
0000000000a18d68 T hash_command
0000000000a18f34 t b_reset
0000000000a18f4c t static_get
0000000000a18f68 t static_peek
0000000000a18f74 t mapset
0000000000a18f94 t syntax_err
0000000000a18fa0 t xmalloc
0000000000a18fc8 t new_pipe
0000000000a18fec t xrealloc
0000000000a19014 t is_assignment
0000000000a19064 t do_showvar
0000000000a19170 t b_addchr
0000000000a19204 t file_get
0000000000a193e0 t done_command.isra.0
0000000000a19470 t done_pipe.isra.0
0000000000a194b8 t done_word
0000000000a19744 t free_pipe_list.isra.0
0000000000a19814 t b_addqchr.isra.0
0000000000a1986c t file_peek
0000000000a19878 T get_local_var
0000000000a19914 T set_local_var
0000000000a19ab0 t insert_var_value_sub
0000000000a19d60 T parse_string_outer
0000000000a19e44 t run_list_real
0000000000a1a56c t parse_stream_outer
0000000000a1abd8 T parse_file_outer
0000000000a1ac18 T u_boot_hush_start
0000000000a1ac70 T bootdelay_process
0000000000a1ad3c T autoboot_command
0000000000a1ae50 t log_init
0000000000a1ae58 t log_init
0000000000a1ae60 t display_text_info
0000000000a1ae68 t setup_mon_len
0000000000a1ae88 t reserve_round_4k
0000000000a1ae9c t reserve_uboot
0000000000a1aec8 t reserve_malloc
0000000000a1aee4 t reserve_noncached
0000000000a1af04 t reserve_global_data
0000000000a1af20 t reserve_fdt
0000000000a1afcc W reserve_mmu
0000000000a1b018 t reloc_fdt
0000000000a1b064 t announce_serial
0000000000a1b0c0 t setup_reloc
0000000000a1b16c t announce_dram_init
0000000000a1b18c t reserve_board
0000000000a1b1d4 t reserve_video
0000000000a1b200 t initf_dm
0000000000a1b208 t initf_bootstage
0000000000a1b224 t init_baud_rate
0000000000a1b270 W arch_cpu_init_dm
0000000000a1b278 W mach_cpu_init
0000000000a1b280 t reserve_trace
0000000000a1b288 t setup_machine
0000000000a1b290 t reserve_bootstage
0000000000a1b298 t display_new_sp
0000000000a1b2a0 t reloc_bootstage
0000000000a1b2a8 t initf_console_record
0000000000a1b2b0 W reserve_arch
0000000000a1b2b8 W board_add_ram_info
0000000000a1b2bc t show_dram_config
0000000000a1b324 t setup_dest_addr
0000000000a1b36c t reserve_stacks
0000000000a1b388 T board_init_f
0000000000a1b3b4 t initr_trace
0000000000a1b3bc t initr_reloc
0000000000a1b3d4 t initr_announce
0000000000a1b3e4 t run_main_loop
0000000000a1b3f4 t initr_net
0000000000a1b418 t initr_ethaddr
0000000000a1b440 t initr_jumptable
0000000000a1b458 t initr_serial
0000000000a1b470 t initr_env_nowhere
0000000000a1b48c t initr_dm
0000000000a1b4a0 t initr_of_live
0000000000a1b4ac t initr_enable_interrupts
0000000000a1b4c4 t initr_noncached
0000000000a1b4dc t initr_bootstage
0000000000a1b4f8 t initr_malloc
0000000000a1b520 t initr_reloc_global_data
0000000000a1b55c t initr_caches
0000000000a1b5ec t bootstage_relocate
0000000000a1b5f4 t initr_pci
0000000000a1b5fc t initr_barrier
0000000000a1b604 t initr_console_record
0000000000a1b60c W power_init_board
0000000000a1b614 t initr_nand
0000000000a1b61c t initr_mmc
0000000000a1b624 W board_initr_caches_fixup
0000000000a1b62c W cpu_secondary_init_r
0000000000a1b630 t initr_secondary_cpu
0000000000a1b648 T board_init_r
0000000000a1b66c W checkboard
0000000000a1b674 W show_board_info
0000000000a1b6c0 T bootm_find_images
0000000000a1b798 T bootm_parse_comp
0000000000a1b7f8 T bootm_decomp_image
0000000000a1b9fc T bootm_disable_interrupts
0000000000a1ba48 T do_bootm_states
0000000000a1c398 t copy_args
0000000000a1c404 t do_bootm_rtems
0000000000a1c464 t do_bootm_plan9
0000000000a1c524 t do_bootm_standalone
0000000000a1c598 t do_bootm_netbsd
0000000000a1c6bc T do_bootvx_fdt
0000000000a1c7d4 t do_bootm_vxworks
0000000000a1c810 T boot_selected_os
0000000000a1c890 T bootm_os_get_boot_func
0000000000a1c8a0 t of_bus_default_map
0000000000a1c944 t fdt_pack_reg
0000000000a1ca1c t of_bus_default_translate
0000000000a1cad4 T fdt_support_default_count_cells
0000000000a1cb44 T fdt_find_and_setprop
0000000000a1cbd8 T fdt_find_or_add_subnode
0000000000a1cc4c T fdt_setprop_uxx
0000000000a1cc84 T fdt_root
0000000000a1cd1c T fdt_initrd
0000000000a1ce88 T fdt_chosen
0000000000a1cf40 T do_fixup_by_path
0000000000a1cf8c T do_fixup_by_path_u32
0000000000a1cfb4 T fdt_fixup_memory_banks
0000000000a1d118 T fdt_fixup_memory
0000000000a1d13c T fdt_update_reserved_memory
0000000000a1d1dc T fdt_fixup_ethernet
0000000000a1d388 T fdt_shrink_to_minimum
0000000000a1d450 T fdt_increase_size
0000000000a1d464 T fdt_translate_address
0000000000a1d6c0 T fdt_set_node_status
0000000000a1d7b4 T fdt_get_base_address
0000000000a1d800 T fdt_overlay_apply_verbose
0000000000a1d880 T miiphy_get_dev_by_name
0000000000a1d8e8 T miiphy_init
0000000000a1d900 T mdio_alloc
0000000000a1d93c T mdio_free
0000000000a1d940 T mdio_register
0000000000a1d9cc T mdio_list_devices
0000000000a1da90 T miiphy_set_current_dev
0000000000a1dad8 t miiphy_get_active_dev
0000000000a1db2c T mdio_get_current_dev
0000000000a1db38 T mdio_phydev_for_ethname
0000000000a1dbd4 T miiphy_get_current_dev
0000000000a1dbe8 T miiphy_read
0000000000a1dc44 T miiphy_write
0000000000a1dca4 T miiphy_listdev
0000000000a1dd34 T miiphy_info
0000000000a1ddd4 T miiphy_speed
0000000000a1de9c T miiphy_duplex
0000000000a1df64 T miiphy_is_1000base_x
0000000000a1df6c t usb_set_maxpacket_ep
0000000000a1dff0 T usb_int_msg
0000000000a1dff4 T usb_control_msg
0000000000a1e0b0 t usb_get_descriptor
0000000000a1e10c t get_descriptor_len
0000000000a1e1b0 t usb_setup_descriptor
0000000000a1e288 t usb_get_string
0000000000a1e32c t usb_string_sub
0000000000a1e440 T usb_bulk_msg
0000000000a1e4b8 T usb_maxpacket
0000000000a1e4d4 T usb_clear_halt
0000000000a1e570 T usb_get_configuration_len
0000000000a1e5e8 T usb_get_configuration_no
0000000000a1e628 T usb_set_interface
0000000000a1e6d8 T usb_string
0000000000a1e7ec T usb_select_config
0000000000a1ecf4 T usb_setup_device
0000000000a1ee18 T usb_device_has_child_on_port
0000000000a1ee20 T usb_find_usb2_hub_address_port
0000000000a1eeb0 t usb_set_port_feature
0000000000a1eefc t usb_get_hub_descriptor
0000000000a1ef60 t usb_clear_port_feature.isra.0
0000000000a1efac W usb_hub_reset_devices
0000000000a1efb0 T usb_hub_is_root_hub
0000000000a1efd0 T usb_get_port_status
0000000000a1f098 T usb_hub_port_connect_change
0000000000a1f214 t usb_hub_configure
0000000000a1f7ac T usb_hub_scan
0000000000a1f7c0 t usb_hub_post_probe
0000000000a1f7c4 t usb_stor_irq
0000000000a1f7dc t usb_stor_BBB_reset
0000000000a1f8ec t usb_stor_CB_reset
0000000000a1f9cc t usb_stor_CB_comdat
0000000000a1fbb8 t usb_stor_CBI_get_status
0000000000a1fc98 t usb_stor_CB_transport
0000000000a1fe94 t usb_request_sense.constprop.0.isra.0
0000000000a1ff1c t usb_stor_write
0000000000a2008c t usb_stor_read
0000000000a201fc t usb_stor_BBB_clear_endpt_stall.isra.0
0000000000a20248 t usb_stor_BBB_transport
0000000000a204b0 T usb_stor_info
0000000000a20538 T usb_stor_reset
0000000000a20544 T usb_stor_scan
0000000000a20590 T usb_storage_probe
0000000000a207e8 T usb_stor_get_info
0000000000a20ad4 t usb_mass_storage_probe
0000000000a20c6c T iomux_doenv
0000000000a20e38 W menu_display_statusline
0000000000a20e3c T menu_default_set
0000000000a20ed0 T menu_get_choice
0000000000a210ac T menu_item_add
0000000000a21184 T menu_create
0000000000a21224 T menu_destroy
0000000000a212a4 t cread_add_char
0000000000a213a4 t delete_char
0000000000a214ac T cli_readline_into_buffer
0000000000a21d48 T cli_readline
0000000000a21d5c T cli_simple_process_macros
0000000000a21f6c t cea_db_offsets
0000000000a21ff0 t drm_add_hdmi_modes
0000000000a2202c t svd_to_vic
0000000000a22048 t drm_get_max_frl_rate
0000000000a220c4 t drm_find_edid_extension
0000000000a22110 t cea_mode_alternate_clock
0000000000a22168 t hdmi_mode_alternate_clock
0000000000a2218c t find_gtf2
0000000000a221ac t mode_is_rb
0000000000a22200 t hdmi_infoframe_checksum
0000000000a22228 t hdmi_infoframe_set_checksum
0000000000a22244 t snip
0000000000a222b0 t cea_mode_for_vic
0000000000a2230c t drm_get_vrefresh
0000000000a22380 t valid_inferred_mode
0000000000a22474 t drm_mode_find_dmt
0000000000a22520 t cea_db_is_hdmi_vsdb
0000000000a22568 t drm_for_each_detailed_block
0000000000a226a4 t drm_gtf2_hbreak
0000000000a226e0 t drm_mode_equal_no_clocks_no_stereo
0000000000a22798 t drm_match_hdmi_mode
0000000000a22834 t is_rb
0000000000a22854 t drm_monitor_supports_rb
0000000000a22894 t fixup_mode_1366x768
0000000000a228d0 t do_established_modes
0000000000a229bc t drm_do_probe_ddc_edid.constprop.0
0000000000a22ac0 t drm_edid_block_valid.constprop.0
0000000000a22bec t drm_gtf_mode_complex.constprop.0
0000000000a22d58 t bitmap_set.constprop.0
0000000000a22dc0 t drm_cvt_mode.constprop.0
0000000000a23034 t do_cvt_mode
0000000000a231ac t mode_in_range
0000000000a23364 t do_inferred_modes
0000000000a2359c t drm_mode_std
0000000000a23988 t do_standard_modes
0000000000a23a10 t drm_display_mode_from_vic_index
0000000000a23a7c t do_detailed_mode
0000000000a23ebc T edid_check_info
0000000000a23f20 T edid_get_drm_mode
0000000000a240f0 T edid_print_info
0000000000a246e4 T do_cea_modes
0000000000a247a8 T drm_detect_hdmi_monitor
0000000000a24818 T drm_detect_monitor_audio
0000000000a248a0 T drm_match_cea_mode
0000000000a24948 T drm_default_rgb_quant_range
0000000000a2496c T drm_add_edid_modes
0000000000a25c88 T hdmi_vendor_infoframe_init
0000000000a25cd4 T drm_hdmi_avi_infoframe_quant_range
0000000000a25d28 T drm_hdmi_vendor_infoframe_from_display_mode
0000000000a25e3c T hdmi_avi_infoframe_init
0000000000a25e78 T drm_hdmi_avi_infoframe_from_display_mode
0000000000a25f7c T hdmi_vendor_infoframe_pack
0000000000a26088 T drm_mode_sort
0000000000a261a0 T drm_mode_prune_invalid
0000000000a26254 T drm_rk_filter_whitelist
0000000000a262ec T drm_rk_select_mode
0000000000a263e4 T drm_do_get_edid
0000000000a26518 T drm_scdc_readb
0000000000a26568 T drm_scdc_writeb
0000000000a265fc T bounce_buffer_start
0000000000a26684 T bounce_buffer_stop
0000000000a266e0 t console_tstc
0000000000a26774 t console_putc
0000000000a267e4 t on_console
0000000000a268a4 T serial_printf
0000000000a26958 T putc
0000000000a26998 T puts
0000000000a269c8 T tstc
0000000000a269f8 t fgetc.part.0
0000000000a26a48 T getc
0000000000a26a78 T flushc
0000000000a26a8c T ctrlc
0000000000a26ae0 T confirm_yesno
0000000000a26bb8 T disable_ctrlc
0000000000a26bcc T had_ctrlc
0000000000a26bd8 T clear_ctrlc
0000000000a26be4 T search_device
0000000000a26c18 T console_assign
0000000000a26cf0 T console_announce_r
0000000000a26da8 T console_init_f
0000000000a26db8 T console_init_r
0000000000a26f54 T sbrk
0000000000a26fc4 T mem_malloc_init
0000000000a26fe4 t malloc_trim
0000000000a270bc t free
0000000000a272d8 t malloc
0000000000a27904 t calloc
0000000000a279e8 t realloc
0000000000a27e48 t memalign
0000000000a27fd8 T initf_malloc
0000000000a27ff0 T malloc_simple
0000000000a28028 t on_loadaddr
0000000000a28064 T image_get_load
0000000000a2809c T image_get_ep
0000000000a280d4 T image_check_hcrc
0000000000a28124 T image_check_dcrc
0000000000a28168 T image_multi_count
0000000000a2818c T image_multi_getimg
0000000000a28210 T env_get_bootm_low
0000000000a28240 T env_get_bootm_size
0000000000a282b8 T env_get_bootm_mapsize
0000000000a282e8 T memmove_wd
0000000000a282f8 T genimg_print_size
0000000000a28330 T get_table_entry
0000000000a28350 T get_table_entry_name
0000000000a28378 T genimg_get_os_name
0000000000a28390 T genimg_get_arch_name
0000000000a283a8 T genimg_get_type_name
0000000000a283c0 T genimg_get_comp_name
0000000000a283d8 T image_print_contents
0000000000a285bc T get_table_entry_id
0000000000a2860c T genimg_get_os_id
0000000000a28624 T genimg_get_arch_id
0000000000a2863c T genimg_get_type_id
0000000000a28654 T genimg_get_comp_id
0000000000a2866c T genimg_get_kernel_addr_fit
0000000000a286e4 T genimg_get_kernel_addr
0000000000a28704 T genimg_get_format
0000000000a28760 T genimg_has_config
0000000000a28770 T boot_get_ramdisk
0000000000a28b28 T boot_ramdisk_high
0000000000a28c78 T boot_get_setup
0000000000a28c7c T boot_get_loadable
0000000000a28e18 T image_setup_linux
0000000000a28e78 t android_image_get_kernel_addr
0000000000a28ee4 t android_image_get_comp_addr
0000000000a28f70 t image_load
0000000000a29954 t images_load_verify
0000000000a29a70 T android_image_get_comp
0000000000a29a7c T android_image_get_kernel
0000000000a29c84 T android_image_check_header
0000000000a29c98 t android_image_separate
0000000000a29f74 t android_image_separate_v34
0000000000a2a0b4 t extract_boot_image_v34_header
0000000000a2a1d0 T android_image_get_end
0000000000a2a338 T android_image_get_kload
0000000000a2a33c T android_image_get_ramdisk
0000000000a2a534 T android_image_set_decomp
0000000000a2a5b0 T android_image_memcpy_separate
0000000000a2a698 T populate_boot_info
0000000000a2ad74 T populate_andr_img_hdr
0000000000a2b09c T android_bcb_msg_sector_offset
0000000000a2b18c T android_image_init_resource
0000000000a2b34c T android_image_load
0000000000a2b500 T android_print_contents
0000000000a2ba40 t android_bootloader_message_write
0000000000a2bacc t get_partition_size
0000000000a2bb70 t avb_image_distribute_prepare.constprop.0
0000000000a2bc80 t android_slot_verify
0000000000a2c2bc T android_bootloader_message_load
0000000000a2c344 T android_bcb_write
0000000000a2c400 T android_bootloader_boot_kernel
0000000000a2c650 T android_assemble_cmdline
0000000000a2c840 T android_image_verify_resource
0000000000a2cb58 W board_select_fdt_index
0000000000a2cb60 T android_fdt_overlay_apply
0000000000a2cf14 T android_image_load_by_partname
0000000000a2cf90 T android_bootloader_boot_flow
0000000000a2d228 t fdt_error
0000000000a2d260 T boot_mem_rsv_regions
0000000000a2d3b0 T boot_fdt_add_mem_rsv_regions
0000000000a2d460 T boot_fdt_add_sysmem_rsv_regions
0000000000a2d5f0 T boot_relocate_fdt
0000000000a2d7bc T boot_get_fdt
0000000000a2db40 T image_setup_libfdt
0000000000a2dc54 t fit_image_get_address
0000000000a2dcd8 t fit_image_set_address
0000000000a2dd50 t crypto_csum
0000000000a2ddb4 t hw_fit_calculate_hash
0000000000a2def4 T fit_parse_conf
0000000000a2df6c T fit_parse_subimage
0000000000a2dfe4 T fit_get_desc
0000000000a2e01c T fit_image_get_node
0000000000a2e064 T fit_image_get_os
0000000000a2e0b0 T fit_image_get_arch
0000000000a2e0fc T fit_image_get_type
0000000000a2e148 T fit_image_get_comp
0000000000a2e194 T fit_image_get_load
0000000000a2e1a4 T fit_image_set_load
0000000000a2e1b4 T fit_image_get_entry
0000000000a2e1c4 T fit_image_set_entry
0000000000a2e1d4 T fit_image_get_data_offset
0000000000a2e21c T fit_image_get_data_position
0000000000a2e264 T fit_image_get_data_size
0000000000a2e2ac T fit_image_get_data
0000000000a2e388 T fit_image_hash_get_algo
0000000000a2e3c0 T fit_image_hash_get_value
0000000000a2e410 t fit_image_print_data
0000000000a2e568 T fit_image_print
0000000000a2e8f4 T fit_get_end
0000000000a2e904 T fit_image_check_hash
0000000000a2ea90 T fit_image_verify_with_data
0000000000a2ebc4 T fit_image_verify
0000000000a2ec5c T fit_image_check_os
0000000000a2ec98 T fit_image_check_arch
0000000000a2ecfc T fit_image_check_type
0000000000a2ed38 T fit_image_check_comp
0000000000a2ed74 T fit_check_format
0000000000a2edc8 T fit_conf_get_node
0000000000a2eea4 T fit_conf_get_prop_node_index
0000000000a2eee0 T fit_conf_get_prop_node
0000000000a2eee8 T fit_conf_print
0000000000a2f11c T fit_print_contents
0000000000a2f33c T fit_get_node_from_config
0000000000a2f390 T fit_image_load_index
0000000000a2f994 T fit_image_load
0000000000a2f9cc T boot_get_setup_fit
0000000000a2fa44 T boot_get_fdt_fit
0000000000a2fd3c W get_effective_memsize
0000000000a2fd44 t stdio_serial_clear
0000000000a2fd48 t stdio_serial_tstc
0000000000a2fd4c t stdio_serial_getc
0000000000a2fd50 t stdio_serial_puts
0000000000a2fd58 t stdio_serial_putc
0000000000a2fd60 T stdio_get_list
0000000000a2fd70 T stdio_get_by_name
0000000000a2fe6c T stdio_clone
0000000000a2feb8 T stdio_register_dev
0000000000a2ff10 T stdio_register
0000000000a2ff18 T stdio_init_tables
0000000000a2ff30 T stdio_add_devices
0000000000a2ffb4 T android_dt_check_header
0000000000a2ffcc T android_dt_get_fdt_by_index
0000000000a30048 T android_dt_print_contents
0000000000a30288 T write_sparse_image
0000000000a306d4 t fb_mmc_sparse_reserve
0000000000a306dc t fb_mmc_blk_write
0000000000a307b8 t fb_mmc_sparse_write
0000000000a307c4 t part_get_info_by_name_or_alias
0000000000a30840 T fb_mmc_flash_write
0000000000a30ee0 T fb_mmc_erase
0000000000a31060 T fb_mmc_get_erase_grp_size
0000000000a31098 T fastboot_fail
0000000000a310f0 T fastboot_okay
0000000000a31148 T timed_send_info
0000000000a3114c T run_command
0000000000a31160 T run_command_list
0000000000a311f0 T do_run
0000000000a31278 T cli_process_fdt
0000000000a312c8 T cli_secure_boot_cmd
0000000000a3133c T cli_loop
0000000000a3134c T cli_init
0000000000a31350 T find_cmd_tbl
0000000000a31410 T find_cmd
0000000000a31438 T cmd_usage
0000000000a314a0 T _do_help
0000000000a31628 T var_complete
0000000000a316b0 T cmd_auto_complete
0000000000a31b44 T cmd_get_data_size
0000000000a31bb0 T cmd_process
0000000000a31cbc T cmd_process_error
0000000000a31cf4 t part_driver_lookup_type
0000000000a31d98 t part_get_info_by_name_option
0000000000a31e80 T blk_get_dev
0000000000a31eb8 T dev_print
0000000000a320b8 T part_init
0000000000a32134 T part_print
0000000000a32294 T part_get_type
0000000000a322d8 T part_get_info
0000000000a32340 T part_get_info_whole_disk
0000000000a32394 T blk_get_device_by_str
0000000000a324f8 T blk_get_device_part_str
0000000000a3284c T part_get_info_by_name
0000000000a32854 T part_set_generic_name
0000000000a3289c t test_block_type
0000000000a3291c t print_partition_extended
0000000000a32b54 T part_print_dos
0000000000a32b90 t part_test_dos
0000000000a32c14 t part_get_info_extended
0000000000a32eac T part_get_info_dos
0000000000a32ec8 T is_valid_dos_buf
0000000000a32ee4 T write_mbr_partition
0000000000a32f64 t print_efiname
0000000000a32fb8 t validate_gpt_entries
0000000000a33060 t validate_gpt_header
0000000000a332b0 t is_gpt_valid
0000000000a33524 t set_protective_mbr
0000000000a33610 t is_pte_valid
0000000000a33674 T part_print_efi
0000000000a338d0 T part_get_info_efi
0000000000a33b7c t gpt_entry_modify.constprop.0
0000000000a33ce4 t part_efi_repair
0000000000a34164 t part_test_efi
0000000000a34354 T get_disk_guid
0000000000a34434 T write_gpt_table
0000000000a34838 T gpt_fill_pte
0000000000a34be0 T gpt_fill_header
0000000000a34e30 T gpt_restore
0000000000a34f80 T gpt_verify_headers
0000000000a35018 T gpt_verify_partitions
0000000000a3520c T is_valid_gpt_buf
0000000000a35354 T write_mbr_and_gpt_partitions
0000000000a357b0 T clk_request
0000000000a357dc t clk_get_by_indexed_prop
0000000000a3588c T clk_get_by_index
0000000000a358a0 T clk_get_by_name
0000000000a358f0 T clk_free
0000000000a35914 T clk_get_rate
0000000000a35938 T clk_set_rate
0000000000a3595c T clk_set_phase
0000000000a35980 T clk_set_parent
0000000000a359a4 T clk_set_defaults
0000000000a35b20 T clk_enable
0000000000a35b44 T clk_enable_bulk
0000000000a35ba0 T clk_disable
0000000000a35bc4 T clk_release_all
0000000000a35c40 T clk_get_bulk
0000000000a35d00 T clk_disable_bulk
0000000000a35d5c T clks_probe
0000000000a35de4 t clk_fixed_rate_ofdata_to_platdata
0000000000a35e24 t clk_fixed_rate_get_rate
0000000000a35e50 t rk3036_pll_get_rate.constprop.0
0000000000a35f24 T gcd
0000000000a35f54 t rockchip_get_pll_settings
0000000000a3626c t rk3036_pll_set_rate
0000000000a36440 T rockchip_pll_get_rate
0000000000a36558 T rockchip_pll_set_rate
0000000000a36850 T rockchip_get_cpu_settings
0000000000a36874 t rk3568_cpll_div_get_rate
0000000000a36934 t rk3568_adc_get_clk
0000000000a369c8 t rk3568_aclk_vop_get_clk
0000000000a36a18 t rk3568_ebc_get_clk
0000000000a36a7c t rk3568_rkvdec_get_clk
0000000000a36b00 t rk3568_uart_get_rate
0000000000a36c30 t rk3568_i2s3_get_rate
0000000000a36d84 t rk3568_pmuclk_probe
0000000000a36df0 t rk3568_pmuclk_ofdata_to_platdata
0000000000a36e24 t rk3568_clk_ofdata_to_platdata