forked from launchfur/u-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystem.map
More file actions
4376 lines (4376 loc) · 127 KB
/
Copy pathSystem.map
File metadata and controls
4376 lines (4376 loc) · 127 KB
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
4a000000 D __image_copy_start
4a000000 D uboot_spare_head
4a000640 T _start
4a000660 T _undefined_instruction
4a000664 T _software_interrupt
4a000668 T _prefetch_abort
4a00066c T _data_abort
4a000670 T _not_used
4a000674 T _irq
4a000678 T _fiq
4a000680 T IRQ_STACK_START_IN
4a000684 T IRQ_STACK_START
4a000688 T FIQ_STACK_START
4a0006a0 t undefined_instruction
4a000700 t software_interrupt
4a000760 t prefetch_abort
4a0007c0 t data_abort
4a000820 t not_used
4a000880 t irq
4a0008c0 t fiq
4a000900 T reset
4a000904 T save_boot_params_ret
4a000940 T c_runtime_cpu_setup
4a000950 W save_boot_params
4a000954 T cpu_init_cp15
4a0009b8 T cpu_init_crit
4a0009c0 T __v7_flush_dcache_all
4a0009d4 t start_flush_levels
4a0009d8 t flush_levels
4a000a14 t loop1
4a000a18 t loop2
4a000a3c t skip
4a000a48 t finished
4a000a5c T v7_flush_dcache_all
4a000a6c T __v7_invalidate_dcache_all
4a000a84 t inval_levels
4a000ac0 t inval_loop1
4a000ac4 t inval_loop2
4a000ae8 t inval_skip
4a000af4 t inval_finished
4a000b08 T v7_invalidate_dcache_all
4a000b18 T __arm_smccc_smc
4a000b38 T __arm_smccc_hvc
4a000b58 T __sunxi_smc_call
4a000b64 T invalidate_icache_all
4a000b78 W v7_outer_cache_enable
4a000b7a W v7_outer_cache_disable
4a000b7c W v7_outer_cache_flush_all
4a000b7e T flush_dcache_all
4a000b8c W v7_outer_cache_inval_all
4a000b8e T invalidate_dcache_all
4a000b9c T arm_init_before_mmu
4a000bbe W v7_outer_cache_flush_range
4a000bc0 T flush_dcache_range
4a000bf8 W v7_outer_cache_inval_range
4a000bfa T invalidate_dcache_range
4a000c3c W cpu_cache_initialization
4a000c3e T cleanup_before_linux_select
4a000c7c T cleanup_before_linux
4a000c84 W lowlevel_init
4a000ca8 t timerX_callback_default
4a000cb4 T timer0_func
4a000cf4 T timer1_func
4a000d34 T timer_init
4a000d50 T __udelay
4a000d74 T __usdelay
4a000d78 T __msdelay
4a000d84 T runtime_tick
4a000de4 T get_timer_masked
4a000de8 T get_timer
4a000df4 T get_ticks
4a000e0a T get_tbclk
4a000e10 T init_timer
4a000e14 T add_timer
4a000ed0 T del_timer
4a000f40 T _main
4a000f8c t here
4a000fe0 T memset
4a001080 T memcpy
4a001360 W relocate_vectors
4a00136c T relocate_code
4a00137c t copy_loop
4a001394 t fixloop
4a0013b4 t fixnext
4a0013bc t relocate_done
4a0013d4 T arch_fixup_fdt
4a0013fc t boot_prep_linux
4a001430 T arch_lmb_reserve
4a001470 t boot_jump_linux
4a001514 T do_bootm_linux
4a001550 T boot_prep_vxworks
4a001580 T boot_jump_vxworks
4a001586 T arch_reserve_stacks
4a0015b4 T interrupt_init
4a0015e4 T enable_interrupts
4a0015f2 T interrupts_is_open
4a001600 T disable_interrupts
4a001618 T bad_mode
4a001624 T show_regs
4a00172c T do_undefined_instruction
4a00174c T do_software_interrupt
4a00176c T do_prefetch_abort
4a00178c T do_data_abort
4a0017ac T do_not_used
4a0017cc T do_fiq
4a0017ec T do_reset
4a001814 W flush_cache
4a00181c T check_cache_range
4a001840 W arm_init_domains
4a001842 T set_section_dcache
4a001854 W dram_bank_mmu_setup
4a0018c4 T icache_enable
4a0018d6 T icache_disable
4a0018ec T dcache_enable
4a00195a T dcache_disable
4a00197a T s_init
4a001994 T reset_cpu
4a0019ac T board_fdt_blob_setup
4a0019cc T enable_caches
4a0019d0 W clock_init_sec
4a0019d2 T clock_init
4a0019e0 t gic_cpuif_init
4a001a6c t default_isr
4a001a7c t gic_distributor_init
4a001b48 T irq_enable
4a001ba4 T irq_disable
4a001c28 T irq_install_handler
4a001c6c T irq_free_handler
4a001c9c T do_irq
4a001d30 T arch_interrupt_init
4a001d7c T print_cpuinfo
4a001d8c T sunxi_gpio_set_cfgbank
4a001db0 T sunxi_gpio_set_cfgpin
4a001ddc T rtc_set_fel_flag
4a001e04 T rtc_set_bootmode_flag
4a001e28 T rtc_get_bootmode_flag
4a001e38 T pmic_bus_init
4a001e70 T pmic_bus_read
4a001e84 T pmic_bus_write
4a001e9c T clock_init_uart
4a001ee0 T clock_get_pll6
4a001f10 T clock_get_corepll
4a001f68 T clock_get_ahb
4a001fb4 T clock_get_apb1
4a002004 T clock_get_mbus
4a002038 T usb_open_clock
4a0020dc T usb_close_clock
4a00212c T sunxi_set_sramc_mode
4a00217e W clock_set_corepll
4a002182 T i2c_init_board
4a00219c T enable_smp
4a0021ac T smp_init
4a0021c4 T sunxi_plat_init
4a0021d8 T board_init
4a002268 T dram_init
4a0022a4 T board_mmc_pre_init
4a0022ac T board_mmc_get_num
4a0022b2 T board_mmc_set_num
4a0022b8 T board_mmc_init
4a0022d0 T misc_init_r
4a0022d8 T ft_board_setup
4a0022dc T reserve_arch
4a002330 T set_boot_work_mode
4a00233c T get_boot_work_mode
4a002348 T get_boot_storage_type_ext
4a002354 T get_boot_storage_type
4a002368 T set_boot_storage_type
4a002374 T sunxi_probe_secure_monitor
4a002388 T sunxi_probe_secure_os
4a002394 T sunxi_get_secureboard
4a0023a8 T sunxi_probe_securemode
4a002430 T sunxi_set_secure_mode
4a0024dc T sunxi_get_securemode
4a0024e2 T sunxi_get_uboot_shell
4a0024e8 T sunxi_set_uboot_shell
4a0024f0 T set_boot_dram_update_flag
4a0024fc T get_boot_dram_update_flag
4a00250c T initr_sunxi_display
4a00252c T board_early_init_r
4a002554 T board_bootlogo_display
4a00258c T board_env_late_init
4a0025a4 T update_boot0_head_for_ota
4a0025f4 T board_late_init
4a002648 T sunxi_generate_checksum
4a00269c T sunxi_verify_checksum
4a0026ac T board_quiesce_devices
4a0026b2 T sunxi_board_close_source
4a0026c0 T sunxi_board_restart
4a0026d6 T reset_misc
4a0026dc T sunxi_board_shutdown
4a0026ee T sunxi_board_run_fel
4a002704 T sunxi_update_subsequent_processing
4a00275c T sunxi_boot_image_get_embbed_cert_len
4a002784 T sunxi_prepare_bpk_bootlogo
4a0027d0 T sunxi_early_logo_display
4a002810 t sunxi_str_replace
4a002918 t write_recovery_msg_to_misc
4a0029f8 t sunxi_get_bootcmd_from_misc
4a002b04 t fdt_enable_node
4a002b3c T update_fdt_dram_para
4a002e28 T sunxi_dump
4a002e48 T sunxi_str_replace_all
4a002f68 T check_photo_key_and_ai_key
4a003018 T sunxi_respond_ir_key_action
4a003080 T sunxi_set_bootcmd
4a003248 T sunxi_update_bootcmd
4a003348 T sunxi_update_fdt_para_for_kernel
4a0034a8 T sunxi_update_partinfo
4a003674 T sunxi_force_rotpk
4a003684 T sunxi_update_rotpk_info
4a0036d4 T PIO_REG_CFG
4a003704 T PIO_REG_PULL
4a003730 T PIO_REG_DLEVEL
4a00375c T PIO_REG_DATA
4a00377c T PIO_REG_CFG_VALUE
4a0037a4 T PIO_REG_DATA_VALUE
4a0037c4 T gpio_set_one_pin_io_status
4a003834 T gpio_read_one_pin_value
4a003892 T gpio_write_one_pin_value
4a003912 T gpio_request_early
4a003bce T sunxi_gpio_request
4a003e60 T gpio_release
4a003e78 T fdt_get_all_pin
4a004100 T fdt_set_all_pin
4a004154 T fdt_get_one_gpio_by_offset
4a0041b0 T fdt_get_one_gpio
4a004214 T script_parser_fetch
4a004248 T sunxi_partition_init
4a0042fc T sunxi_partition_get_partno_byname
4a004358 T sunxi_flash_try_partition
4a00438c T sunxi_partition_get_info
4a0043e8 T sunxi_partition_get_info_byname
4a004418 T sunxi_partition_get_offset_byname
4a00443c T sunxi_partition_get_offset
4a00449c T update_sunxi_mac
4a0045c0 t sunxi_certif_pubkey_check
4a004650 t sunxi_verify_embed_signature
4a004788 T sunxi_verify_os
4a0048cc T sunxi_verify_rotpk_hash
4a004904 T sunxi_keydata_burn_by_usb
4a0049c0 T get_serial_num_from_chipid
4a004a08 T sunxi_set_serial_num
4a004a74 t search_key_in_linklist
4a004ad4 t default_keybox_installation
4a004b2c T sunxi_keybox_has_key
4a004b74 T sunxi_keybox_init
4a004cd0 T sunxi_keybox_burn_key
4a004d3c T check_user_data
4a004e54 T update_user_data_ali
4a004f30 T update_user_data
4a0050e0 T update_bootargs
4a0053d4 T do_sunxi_axp
4a0054ac T set_gpio_bias
4a00558c T axp_set_power_supply_output
4a005650 T axp_get_battery_status
4a005698 T sunxi_bat_low_vol_handle
4a005758 T axp_battery_status_handle
4a0057bc T sunxi_update_axp_info
4a005860 T do_bootd
4a005878 T do_bootm
4a005a30 t do_help
4a005a5c t do_version
4a005a8c T source
4a005b1c t do_source
4a005b4c t print_num
4a005b5c t do_bdinfo
4a005c14 t do_coninfo
4a005c98 t do_echo
4a005d0c T do_fat_size
4a005d1a T do_fat_fsload
4a005d28 t do_fat_ls
4a005d38 t do_fat_fswrite
4a005df4 t do_fat_fsinfo
4a005e48 t fdt_valid
4a005ebc t is_printable_string
4a005f04 t print_data
4a006008 T set_working_fdt_addr
4a00601c t do_fdt
4a006aac t do_flinfo
4a006ab0 t do_protect
4a006abc t do_flerase
4a006ac0 t do_i2c
4a006afc t do_i2c_bus_speed
4a006b50 t do_i2c_reset
4a006b70 t do_i2c_probe
4a006bcc t do_i2c_bus_num
4a006c4c t do_i2c_show_bus
4a006cd8 t get_alen.constprop.5
4a006cf4 t do_i2c_crc
4a006dac t mod_i2c_mem.isra.3
4a006ef0 t do_i2c_nm
4a006ef6 t do_i2c_mm
4a006efc t do_i2c_md
4a007040 t do_i2c_read
4a0070b8 t do_i2c_mw
4a00715c t do_i2c_write
4a007234 t do_i2c_loop
4a0072d0 t evalexp
4a00731a t evalstr
4a007358 t binary_test
4a007480 t do_itest
4a0074cc t bin_data_init
4a0074e8 t k_data_save
4a00751c t k_data_restore
4a007550 t getcxmodem
4a007568 t load_serial_ymodem
4a0075f8 t bin_data_char
4a007614 t chk1.constprop.2
4a007634 t s1_sendpacket.constprop.3
4a007668 t load_serial
4a00778c t do_load_serial
4a00781c t do_load_serial_bin
4a007d50 t do_mem_mw
4a007dcc t do_mem_loop
4a007e50 t do_mem_md
4a007ef0 t do_mem_cmp
4a007fdc t do_mem_base
4a008004 t do_mem_cp
4a008074 t do_mem_crc
4a0080a0 t mod_mem.isra.0
4a008190 t do_mem_mm
4a008196 t do_mem_nm
4a00819c t do_sleep
4a008224 t do_mmcops
4a00829c t init_mmc_device
4a0082d0 t do_mmc_rescan
4a0082e8 t do_mmc_hwpartition
4a00866c t do_mmc_list
4a008678 t do_mmc_dev
4a008708 t do_mmc_read
4a00879c t do_mmc_erase
4a00883c t do_mmc_write
4a0088ec t do_mmcinfo
4a008bbc t do_mmc_setdsr
4a008c30 t do_mmc_part
4a008c68 T do_card0_probe
4a008cc8 t do_part_list
4a008db8 t do_part_info
4a008e54 t do_part
4a008efc t substitute
4a008f94 t get_arg
4a008fc8 t regex_sub.part.1
4a0091cc t do_setexpr
4a0092bc t do_fastboot
4a0092e4 t extract_val
4a009340 t extract_env
4a0093e0 t set_gpt_info.isra.0.constprop.1
4a009728 t do_gpt
4a00993c T do_timer_test
4a009994 T do_timer_test1
4a0099ec t timer0_test_func
4a009a0c t timer1_test_func
4a009a2c T do_sprite_test
4a009ac0 T do_sunxi_flash
4a009d8c T do_efex
4a009da0 T do_read_from_boot
4a009e24 T do_burn_from_boot
4a009f34 T do_probe_secure_storage
4a00a0c8 T usage
4a00a0d4 t do_memtester
4a00a2d4 T compare_regions
4a00a32c T test_stuck_address
4a00a408 T test_random_value
4a00a488 T test_xor_comparison
4a00a4c8 T test_sub_comparison
4a00a508 T test_mul_comparison
4a00a548 T test_div_comparison
4a00a59a T test_or_comparison
4a00a5da T test_and_comparison
4a00a61a T test_seqinc_comparison
4a00a650 T test_solidbits_comparison
4a00a6ec T test_checkerboard_comparison
4a00a788 T test_blockseq_comparison
4a00a81c T test_walkbits0_comparison
4a00a8b4 T test_walkbits1_comparison
4a00a950 T test_bitspread_comparison
4a00aa14 T test_bitflip_comparison
4a00aac4 t do_env_delete
4a00ab2c t do_env_exists
4a00ab6c t do_env_save
4a00ab7c t do_env
4a00abb8 t env_print
4a00ac30 t do_env_print
4a00acac t do_env_import
4a00ae24 t do_env_default
4a00ae74 t _do_env_set.isra.0
4a00af90 t do_env_set
4a00afa4 T env_set
4a00afe0 T env_set_ulong
4a00aff8 T env_set_hex
4a00b018 t do_env_export
4a00b170 T eth_parse_enetaddr
4a00b1a0 T envmatch
4a00b1e4 T env_get_f
4a00b27c T env_get
4a00b2cc T env_get_hex
4a00b2ee T eth_env_get_enetaddr
4a00b324 T eth_env_set_enetaddr
4a00b354 T env_get_ulong
4a00b370 t do_env_edit.part.3
4a00b3e0 t do_env_edit
4a00b3fc T board_init_f_alloc_reserve
4a00b406 T board_init_f_init_reserve
4a00b410 W show_boot_progress
4a00b414 T main_loop
4a00b44c t mdelay
4a00b462 t dummy
4a00b464 T get_version
4a00b468 T jumptable_init
4a00b5dc T hash_command
4a00b648 T bootdelay_process
4a00b6cc T autoboot_command
4a00b7a8 t log_init
4a00b7ac t log_init
4a00b7b0 t display_text_info
4a00b7b4 t setup_mon_len
4a00b7cc W arch_cpu_init
4a00b7d0 t reserve_round_4k
4a00b7e4 W reserve_mmu
4a00b812 t reserve_uboot
4a00b83c t reserve_malloc
4a00b850 t reserve_global_data
4a00b868 W dram_init_banksize
4a00b888 t reloc_fdt
4a00b8b4 t setup_reloc
4a00b8ec t announce_dram_init
4a00b8fc t reserve_fdt
4a00b97c t reserve_board
4a00b9a4 t init_func_i2c
4a00b9c4 t init_baud_rate
4a00b9e0 t initf_bootstage
4a00b9ec W arch_cpu_init_dm
4a00b9f0 W mach_cpu_init
4a00b9f4 t reserve_video
4a00b9f8 t reserve_trace
4a00b9fc t setup_machine
4a00ba00 t reserve_bootstage
4a00ba04 t display_new_sp
4a00ba08 t reloc_bootstage
4a00ba0c t initf_console_record
4a00ba10 t initf_dm
4a00ba14 W coloured_LED_init
4a00ba16 W red_led_on
4a00ba18 W board_add_ram_info
4a00ba1c t show_dram_config
4a00ba40 W board_get_usable_ram_top
4a00ba52 t setup_dest_addr
4a00ba82 t reserve_stacks
4a00ba9c T board_init_f
4a00babc t initr_trace
4a00bac0 t initr_reloc_global_data
4a00badc t sunxi_close_ce
4a00bb08 t run_main_loop
4a00bb10 t sunxi_burn_key
4a00bb2c t initr_env
4a00bb74 t initr_sunxi_plat
4a00bb8c t initr_enable_interrupts
4a00bb96 t initr_jumptable
4a00bba0 t initr_serial
4a00bbaa t initr_bootstage
4a00bbb8 t initr_malloc
4a00bbd4 t initr_reloc
4a00bbf4 T mute_key_jump_fel
4a00bc94 t bootstage_relocate
4a00bc98 t initr_barrier
4a00bc9c t initr_console_record
4a00bca0 W power_init_board
4a00bca4 t initr_announce
4a00bca8 t initr_mmc
4a00bcac W cpu_secondary_init_r
4a00bcae t initr_secondary_cpu
4a00bcb8 t initr_caches
4a00bcc8 T board_init_r
4a00bce4 W checkboard
4a00bce8 W show_board_info
4a00bd14 T bootm_find_images
4a00bd40 T bootm_decomp_image
4a00be08 T do_bootm_states
4a00c364 t copy_args
4a00c39c t do_bootm_rtems
4a00c3c8 t do_bootm_plan9
4a00c430 t do_bootm_standalone
4a00c46c t do_bootm_netbsd
4a00c510 T do_bootvx_fdt
4a00c5cc t do_bootm_vxworks
4a00c5e2 W arch_preboot_os
4a00c5e4 T boot_selected_os
4a00c620 T bootm_os_get_boot_func
4a00c62c T fdt_getprop_u32
4a00c66c T fdt_getprop_string
4a00c68c T fdt_find_and_setprop
4a00c6d0 T fdt_find_or_add_subnode
4a00c710 T fdt_root
4a00c770 T fdt_initrd
4a00c8a4 T fdt_chosen
4a00c910 T do_fixup_by_path
4a00c944 T fdt_fixup_memory_banks
4a00caa0 T fdt_fixup_memory
4a00cab8 T fdt_fixup_ethernet
4a00cbc4 T fdt_shrink_to_minimum
4a00cc54 T fdt_set_node_status
4a00cce4 T fdt_overlay_apply_verbose
4a00cd30 T iomux_doenv
4a00ce50 t delete_char.part.0
4a00ced4 t cread_add_char
4a00cf54 T cli_readline_into_buffer
4a00d5b8 T cli_readline
4a00d5c8 T cli_simple_parse_line
4a00d618 T cli_simple_process_macros
4a00d740 T cli_simple_run_command
4a00d810 T cli_simple_loop
4a00d868 T cli_simple_run_command_list
4a00d8a4 t console_tstc
4a00d8fc t console_putc
4a00d934 t console_puts
4a00d96c t pre_console_putc
4a00d984 t on_console
4a00d9f4 T serial_printf
4a00da28 t console_getc.isra.0
4a00da40 T putc
4a00da78 T getc
4a00daac T tstc
4a00dac6 T puts
4a00db14 t print_pre_console_buffer
4a00dba8 T fputs
4a00dbb4 T uprintf
4a00dc28 T fprintf
4a00dc60 T ctrlc
4a00dc98 T disable_ctrlc
4a00dca8 T had_ctrlc
4a00dcb4 T clear_ctrlc
4a00dcc0 T search_device
4a00dcd8 T console_assign
4a00dd5c T console_init_f
4a00dd9c T console_init_r
4a00deb8 T sbrk
4a00def8 T mem_malloc_init
4a00df14 t malloc_trim
4a00df98 t free
4a00e0f4 t malloc
4a00e500 t calloc
4a00e568 t realloc
4a00e828 t memalign
4a00e92c T initf_malloc
4a00e930 T malloc_align
4a00e962 T free_align
4a00e96c t on_loadaddr
4a00e98c T image_check_hcrc
4a00e9b6 T image_check_dcrc
4a00e9d8 T image_multi_count
4a00e9ea T image_multi_getimg
4a00ea34 T env_get_bootm_low
4a00ea54 T env_get_bootm_size
4a00eaac T env_get_bootm_mapsize
4a00ead0 T memmove_wd
4a00eadc T genimg_print_size
4a00eb00 T get_table_entry
4a00eb12 T get_table_entry_name
4a00eb24 T genimg_get_os_name
4a00eb38 T genimg_get_arch_name
4a00eb4c T genimg_get_type_name
4a00eb60 T genimg_get_comp_name
4a00eb74 T image_print_contents
4a00ec88 T genimg_get_kernel_addr_fit
4a00ec9c T genimg_get_format
4a00eccc T boot_ramdisk_high
4a00eda0 T boot_get_setup
4a00eda6 T image_setup_linux
4a00edd0 T get_vendor_hdr_addr
4a00ee24 T android_image_get_kernel
4a00efc0 T android_image_check_header
4a00efd0 T android_image_get_end
4a00f134 T android_image_get_kload
4a00f1bc T android_image_get_ramdisk
4a00f2a0 T android_image_get_vendor_ramdisk
4a00f300 t fdt_error
4a00f324 T boot_fdt_add_mem_rsv_regions
4a00f36c T boot_relocate_fdt
4a00f4ac W ft_verify_fdt
4a00f4b0 T image_setup_libfdt
4a00f584 T get_ram_size
4a00f616 W get_effective_memsize
4a00f61c t stdio_serial_tstc
4a00f620 t stdio_serial_getc
4a00f624 t stdio_serial_puts
4a00f62a t stdio_serial_putc
4a00f630 T stdio_get_list
4a00f638 T stdio_get_by_name
4a00f668 T stdio_clone
4a00f68c T stdio_register_dev
4a00f6c0 T stdio_register
4a00f6c8 T stdio_init_tables
4a00f6dc T stdio_add_devices
4a00f730 T run_command
4a00f73e T run_command_repeatable
4a00f742 T run_command_list
4a00f798 T do_run
4a00f7e4 T cli_process_fdt
4a00f814 T cli_secure_boot_cmd
4a00f860 T cli_loop
4a00f864 T cli_init
4a00f866 T find_cmd_tbl
4a00f8c8 T find_cmd
4a00f8e4 T cmd_usage
4a00f920 T _do_help
4a00fa24 T var_complete
4a00fa6c T cmd_auto_complete
4a00fd50 T cmd_get_data_size
4a00fd84 T cmd_process
4a00fe18 t hex1_bin
4a00fe42 t hex2_bin
4a00fe66 T srec_decode
4a00ffe0 t CYGACC_COMM_IF_GETC_TIMEOUT.isra.0
4a01000e t xyzModem_flush
4a010024 t xyzModem_get_hdr
4a010194 T xyzModem_stream_open
4a010304 T xyzModem_stream_read
4a0104c0 T xyzModem_stream_close
4a010500 T xyzModem_stream_terminate
4a010568 T xyzModem_error
4a010580 t part_driver_lookup_type
4a0105c4 T blk_get_dev
4a0105e0 T dev_print
4a010750 T part_init
4a01077c T part_print
4a010828 T part_get_info
4a010860 T part_get_info_whole_disk
4a010898 T blk_get_device_by_str
4a010964 T blk_get_device_part_str
4a010ba8 T part_get_info_by_name_type
4a010bf0 T part_get_info_by_name
4a010bf8 T part_set_generic_name
4a010c2c t test_block_type
4a010c78 t print_partition_extended
4a010e0c T part_print_dos
4a010e2c t part_test_dos
4a010e74 t part_get_info_extended
4a011060 T part_get_info_dos
4a011078 t print_efiname
4a0110b0 t part_test_efi
4a011128 t validate_gpt_entries
4a0111a8 t validate_gpt_header
4a011348 t is_gpt_valid
4a011508 t is_pte_valid
4a011540 T part_print_efi
4a011738 T part_get_info_efi
4a0118a8 T get_disk_guid
4a01194c T write_gpt_table
4a011cd8 T gpt_fill_pte
4a011f64 T gpt_fill_header
4a01210c T gpt_restore
4a0121d4 T gpt_verify_headers
4a012228 T gpt_verify_partitions
4a0123bc T tee_smc_call
4a0123d4 T arm_smccc_smc
4a0123f4 t sunxi_clk_fators_is_enabled
4a012410 t sunxi_clk_factors_recalc_rate
4a012528 t sunxi_clk_factors_round_rate
4a01254c t sunxi_clk_disable_plllock
4a0125b0 t sunxi_clk_fators_disable
4a01262c t sunxi_clk_is_lock
4a012740 t sunxi_clk_factors_set_rate
4a0128cc t sunxi_clk_fators_enable
4a012964 T sunxi_clk_register_factors
4a012a0c T sunxi_clk_com_ftr_sr
4a012b30 t sunxi_clk_periph_get_parent
4a012b5a t sunxi_clk_periph_is_enabled
4a012bc6 t sunxi_clk_periph_set_rate
4a012c76 t sunxi_clk_periph_round_rate
4a012ccc t sunxi_clk_periph_recalc_rate
4a012d3a t sunxi_clk_periph_set_parent
4a012d74 t sunxi_clk_periph_enable
4a012efe t sunxi_clk_periph_disable
4a013080 T sunxi_clk_get_periph_ops
4a01308c T sunxi_clk_register_periph
4a0130fc t __clk_disable
4a01311c t __clk_recalc_rates
4a013138 t __clk_enable
4a013194 T __clk_lookup
4a0131c0 T __clk_init
4a013364 T clk_disable
4a013376 T clk_prepare_enable
4a013382 T clk_get_parent
4a013388 T clk_set_parent
4a01347c T clk_get_rate
4a013490 T clk_set_rate
4a013504 T clk_get
4a01350a T clk_put
4a01350c T clk_init
4a013524 T clk_register
4a01357c T of_pll_clk_config_setup
4a013674 T of_periph_clk_config_setup
4a0137d8 T of_clk_get
4a013898 t clk_fixed_rate_recalc_rate
4a01389c T clk_register_fixed_rate
4a013910 t clk_factor_round_rate
4a013922 t clk_factor_set_rate
4a013926 t clk_factor_recalc_rate
4a013954 T clk_hw_register_fixed_factor
4a0139c0 T clk_register_fixed_factor
4a0139d8 T dcxo_out_priv_enable
4a0139f8 T dcxo_out_priv_disable
4a013a18 T dcxo_out_priv_is_enabled
4a013a3c T set_dcxo_out_priv_ops
4a013a58 t calc_rate_audio
4a013b08 t calc_rate_video2
4a013b58 t calc_rate_video0
4a013ba4 t calc_rate_pll_periph
4a013bf0 t calc_rate_pll_ddr
4a013c44 t calc_rate_media
4a013c48 t calc_rate_pll_cpu
4a013c98 t get_factors_pll_com
4a013d14 t get_factors_pll_ve
4a013d90 t get_factors_pll_video2
4a013e0c t get_factors_pll_video1
4a013e88 t get_factors_pll_video0
4a013f04 t get_factors_pll_gpu
4a013f80 t get_factors_pll_periph1
4a013ffc t get_factors_pll_periph0
4a014078 t get_factors_pll_ddr
4a0140f4 t get_factors_pll_cpu
4a014170 t get_factors_pll_audio
4a0141fc T sunxi_clk_factor_initlimits
4a0142a8 T sunxi_set_clk_priv_ops
4a0142dc T init_clocks
4a01440c t get_desc
4a014448 T blk_driver_lookup_type
4a014468 T blk_get_devnum_by_type
4a014488 T blk_dselect_hwpart
4a0144b0 T blk_get_devnum_by_typename
4a0144ec T blk_select_hwpart_devnum
4a014516 t mmc_set_ios
4a014524 t mmc_set_capacity
4a014592 W board_mmc_getwp
4a014598 T mmc_getwp
4a0145b8 W board_mmc_getcd
4a0145c0 T mmc_mode_name
4a0145d8 T mmc_send_cmd
4a0145e0 t mmc_read_blocks
4a014658 t mmc_go_idle
4a01468c t mmc_send_if_cond
4a0146d8 t mmc_send_op_cond_iter
4a01471c t mmc_send_op_cond
4a014750 t mmc_complete_op_cond
4a0147b0 t sd_send_op_cond.constprop.19
4a014848 T mmc_send_status
4a0148d0 T mmc_set_blocklen
4a01491c T mmc_send_manual_stop
4a01495c T mmc_send_ext_csd
4a01499c T mmc_decode_ext_csd
4a014ac0 T mmc_switch
4a014b00 t mmc_startup_v4
4a014d80 T mmc_mmc_switch_to_ds
4a014dc8 T mmc_mmc_switch_to_hs
4a014e18 T mmc_mmc_switch_to_hs200
4a014e68 T mmc_mmc_switch_to_hs400
4a014eb8 T mmc_mmc_switch_speed_mode
4a014efc T mmc_switch_part
4a014f3c T mmc_hwpart_config
4a015218 T mmc_getcd
4a015238 T mmc_set_clock
4a015258 T mmc_set_bus_width
4a015260 T mmc_mmc_switch_bus_width
4a015330 T mmc_mmc_switch_bus_mode
4a015380 t mmc_startup
4a015c14 t mmc_complete_init
4a015c40 T mmc_dump_capabilities
4a015c42 W board_mmc_power_init
4a015c44 T mmc_start_init
4a015d78 T mmc_update_config_for_dragonboard
4a015ebc T mmc_update_config_for_sdly
4a01638c T mmc_init_product
4a016524 T mmc_init
4a01668c T mmc_force_reinit
4a01671c T mmc_bread
4a016878 T mmc_set_dsr
4a01687e W cpu_mmc_init
4a016884 T mmc_initialize
4a0168b8 T mmc_exit
4a0169a4 t mmc_write_blocks
4a016a60 T mmc_berase
4a016ba8 T mmc_bwrite
4a016cd0 T mmc_set_erase_start_addr
4a016d20 T mmc_set_erase_end_addr
4a016d70 T mmc_launch_erase
4a016d90 T mmc_mmc_def_erase_timeout
4a016e24 T mmc_mmc_update_timeout
4a016ec4 T mmc_mmc_erase_timeout
4a016f48 T mmc_erase_timeout
4a016f58 T mmc_do_erase
4a016ff0 T mmc_erase_group_aligned
4a01701c T mmc_align_erase_group
4a017064 T mmc_erase
4a017124 T mmc_do_sanitize
4a017160 T mmc_add_skip_space
4a017178 T mmc_insecure_secure_erase
4a017230 T mmc_do_secure_wipe
4a017404 T mmc_mmc_secure_wipe
4a017494 T mmc_mmc_erase
4a0175b0 T mmc_mmc_sanitize
4a017620 T mmc_mmc_trim
4a0176ec T mmc_mmc_discard
4a0177bc T mmc_mmc_secure_erase
4a017880 T mmc_mmc_secure_trim
4a017954 T find_mmc_device
4a017984 t mmc_select_hwpartp
4a0179ba t mmc_get_dev
4a0179d8 T mmc_get_blk_desc
4a0179dc T get_mmc_num
4a0179e8 T mmc_do_preinit
4a017a08 T mmc_list_init
4a017a20 T mmc_list_add
4a017a34 T print_mmc_devices
4a017a98 T mmc_create
4a017b0c t sunxi_mmc_core_init
4a017b1c t sunxi_mmc_core_init
4a017b78 t sunxi_mmc_core_init
4a017be4 t sunxi_mmc_core_init
4a017c5c t sunxi_mmc_core_init
4a017cd4 t sunxi_mmc_getcd_legacy
4a017cd8 t sunxi_detail_errno
4a017ce8 t mmc_rint_wait.isra.4
4a017d8c t sunxi_tm4_retry.isra.1.constprop.9
4a017e50 t sunxi_decide_rty
4a017f34 T mmc_dump_errinfo
4a01802c T dumphex32
4a018088 t mmc_update_clk.isra.6
4a01810c t sunxi_mmc_set_ios_legacy
4a0181ac T sunxi_mmc_pin_release
4a0181c8 T mmc_clk_io_onoff
4a0181e4 t sunxi_mmc_send_cmd_legacy
4a018a44 T sunxi_mmcno_to_devnum
4a018a80 T sunxi_mmc_init
4a018da0 t _get_best_sdly
4a018ebc T gen_pat_bus4_1bit
4a018f58 T gen_pat_bus8_1bit
4a018fd0 T gen_tuning_blk_bus8
4a019088 T gen_tuning_blk_bus4
4a01913c T sunxi_mmc_tuning_init
4a0191c0 T sunxi_mmc_tuning_exit
4a0191dc T sunxi_select_freq
4a01927c T sunxi_need_rty
4a0192b8 T write_tuning_try_freq
4a019464 T sunxi_write_tuning
4a0194b4 T sunxi_execute_tuning
4a019bc8 T sunxi_pack_tuning_result
4a019cb0 T sunxi_bus_tuning
4a019db8 T sunxi_switch_to_best_bus
4a019f80 T mmc_request_update_boot0
4a019fac T mmc_write_info
4a01a20c T mmc_init_blk_ops
4a01a274 T sunxi_host_mmc_config
4a01b1d0 t mmc_init_default_timing_para
4a01b220 t mmc_init_default_timing_para
4a01b280 t mmc_init_default_timing_para
4a01b39c t mmc_init_default_timing_para
4a01b458 t sunxi_mmc_clk_io_onoff
4a01b538 t sunxi_mmc_clk_io_onoff
4a01b620 t sunxi_mmc_clk_io_onoff
4a01b708 t sunxi_mmc_clk_io_onoff
4a01b7f0 t mmc_set_mod_clk
4a01b964 t mmc_set_mod_clk
4a01bb30 t mmc_set_mod_clk
4a01bd5c t mmc_set_mod_clk
4a01bf58 t sunxi_mmc_set_speed_mode
4a01bfa2 t sunxi_mmc_set_speed_mode
4a01bfec t sunxi_mmc_set_speed_mode
4a01c01c t sunxi_mmc_set_speed_mode
4a01c064 T sunxi_mmc_host_tm0_init
4a01c0c0 T sunxi_mmc_host_tm1_init
4a01c11c t mmc_ddr_mode_onoff
4a01c160 t mmc_hs400_mode_onoff.isra.0
4a01c1b0 T sunxi_mmc_host_tm4_init
4a01c20c t mmc_hs400_mode_onoff.isra.1
4a01c25c T sunxi_mmc_host_tm5_init
4a01c2b8 t disp_blank
4a01c2ec t drv_lcd_open_callback
4a01c388 t drv_lcd_check_open_finished
4a01c3bc T disp_getprop_regbase
4a01c444 T disp_getprop_irq
4a01c4dc T sunxi_get_lcd_op_finished
4a01c514 T disp_draw_colorbar
4a01c5ec T do_sunxi_disp_colorbar
4a01c684 T drv_disp_init
4a01c9e0 T sunxi_disp_get_source_ops
4a01cab8 T disp_ioctl
4a01d2a8 T disp_sys_register_irq
4a01d2b6 T disp_sys_unregister_irq
4a01d2ba T disp_sys_enable_irq
4a01d2be T disp_sys_disable_irq
4a01d2c4 T tasklet_init
4a01d2e0 T tasklet_schedule
4a01d2f8 T disp_fdt_init
4a01d324 T disp_fdt_nodeoffset
4a01d35c T disp_sys_script_get_item
4a01d418 T disp_sys_gpio_request
4a01d43c T disp_sys_gpio_request_simple
4a01d462 T disp_sys_gpio_release
4a01d474 T disp_sys_gpio_set_direction
4a01d478 T disp_sys_gpio_set_value
4a01d47c T disp_sys_pin_set_state
4a01d4c4 T disp_sys_power_enable
4a01d4f4 T disp_sys_power_disable
4a01d518 T disp_sys_pwm_request
4a01d52c T disp_sys_pwm_enable
4a01d534 T disp_sys_pwm_disable
4a01d542 T disp_sys_pwm_config
4a01d54a T disp_sys_pwm_set_polarity
4a01d554 T disp_tasklet
4a01d580 T bsp_disp_shadow_protect
4a01d5cc T bsp_disp_open
4a01d5d0 T disp_device_attached_and_enable
4a01d680 T bsp_disp_device_switch
4a01d6d2 T bsp_disp_device_set_config
4a01d70e T disp_init_connections
4a01d7cc T bsp_disp_init
4a01d85c T bsp_disp_vsync_event_enable
4a01d874 T sync_event_proc
4a01d93c T bsp_disp_get_output_type
4a01d962 T bsp_disp_hdmi_get_support_mode
4a01d994 T bsp_disp_hdmi_get_work_mode
4a01d9c2 T bsp_disp_hdmi_check_support_mode
4a01d9f2 T bsp_disp_hdmi_get_hpd_status
4a01da1e T bsp_disp_tv_set_hpd
4a01da22 T bsp_disp_lcd_get_open_flow
4a01da3c T bsp_disp_lcd_set_panel_funs
4a01da84 T LCD_OPEN_FUNC
4a01daa2 T LCD_CLOSE_FUNC
4a01dac0 T bsp_disp_lcd_backlight_enable
4a01dada T bsp_disp_lcd_backlight_disable
4a01daf4 T bsp_disp_lcd_pwm_enable
4a01db0e T bsp_disp_lcd_pwm_disable
4a01db28 T bsp_disp_lcd_power_enable
4a01db46 T bsp_disp_lcd_power_disable
4a01db64 T bsp_disp_lcd_tcon_enable
4a01dbd2 T bsp_disp_lcd_tcon_disable
4a01dc3a T bsp_disp_lcd_pin_cfg
4a01dc58 T bsp_disp_lcd_gpio_set_value
4a01dc7a T bsp_disp_lcd_gpio_set_direction
4a01dc9c T bsp_disp_get_panel_info
4a01dccc T bsp_disp_lcd_dsi_mode_switch
4a01dd48 T bsp_disp_lcd_dsi_clk_enable
4a01ddb8 T bsp_disp_lcd_dsi_dcs_wr
4a01de40 T bsp_disp_lcd_dsi_gen_wr
4a01dec8 T bsp_disp_lcd_dsi_gen_short_read
4a01deec T bsp_disp_lcd_dsi_dcs_read
4a01df0c T bsp_disp_lcd_set_max_ret_size
4a01df10 T bsp_disp_feat_get_num_screens
4a01df14 T bsp_disp_feat_get_num_devices
4a01df18 T bsp_disp_feat_get_num_channels
4a01df1c T bsp_disp_feat_get_num_layers
4a01df20 T bsp_disp_feat_get_num_layers_by_chn
4a01df24 T bsp_disp_feat_is_supported_output_types
4a01df28 T disp_init_feat
4a01df2c T disp_feat_is_using_rcq
4a01df30 T disp_device_set_manager
4a01df50 T disp_device_unset_manager
4a01df74 T disp_device_get_resolution
4a01df98 T disp_device_get_timings
4a01dfc8 T disp_device_get
4a01dff4 T disp_device_find
4a01e01c T disp_device_register
4a01e030 T disp_device_show_builtin_patten
4a01e03a t disp_lcd_set_static_config
4a01e040 t disp_lcd_get_priv
4a01e05c t disp_lcd_is_used
4a01e074 t disp_lcd_cal_fps
4a01e0b8 t disp_lcd_bright_curve_init
4a01e19c t disp_lcd_set_panel_funs
4a01e22c t disp_lcd_init
4a01ebe4 t lcd_clk_disable
4a01ec60 t lcd_clk_enable
4a01eee4 t disp_lcd_pin_cfg
4a01efb0 t disp_lcd_backlight_disable
4a01f038 t disp_lcd_bright_get_adjust_value.part.1
4a01f038 t disp_lcd_exit.part.18
4a01f038 t disp_lcd_get_bright.part.2
4a01f038 t disp_lcd_get_dimensions.part.5
4a01f038 t disp_lcd_get_panel_info.part.14
4a01f038 t disp_lcd_is_enabled.part.3
4a01f038 t disp_lcd_power_disable.part.15
4a01f038 t disp_lcd_power_enable.part.13
4a01f038 t disp_lcd_pwm_disable.part.27
4a01f038 t disp_lcd_pwm_enable.part.28
4a01f038 t disp_lcd_set_bright_dimming.part.12
4a01f038 t disp_lcd_set_close_func.part.8
4a01f038 t disp_lcd_set_open_func.part.9
4a01f038 t disp_lcd_tcon_disable.part.25
4a01f038 t disp_lcd_tcon_enable.part.26
4a01f038 t lcd_calc_judge_line.part.23
4a01f04c T disp_lcd_get_bright
4a01f066 T disp_lcd_is_enabled
4a01f084 t disp_lcd_disable_gamma
4a01f0bc t disp_lcd_get_dimensions
4a01f0e4 t disp_lcd_get_close_flow
4a01f15c t disp_lcd_set_close_func
4a01f188 t disp_lcd_set_open_func
4a01f1b8 t disp_lcd_check_config_dirty
4a01f1e4 t disp_lcd_get_static_config
4a01f210 t disp_lcd_power_enable