system.map文件

概述

system.map文件记录了所有符号(函数名和变量)的运行地址,帮助我们理解内核编译。每次编译内核都会生成新的system.map文件。

作用

对于计算机而言,只认识0和1,没有符号的概念,但是我们更容易理解函数名这样的符号,因此system文件就是计算机和人类在理解程序中的桥梁。当程序报错的时候,计算机会在堆栈信息里保存出错的内存地址,但是我们单看内存地址是无法知道哪里出了错误,于是就可以通过system.map文件将出错的内存地址转化为函数名。我们在通过gdb调试程序的时候就可以通过函数名设置断点,因为程序中也存在一份符号表。如果使用strip后的程序进行gdb调试,在用函数名设置断点的时候会提示找不到函数名,因为程序里的符号信息被删除了。

文件解析

(1)System.map文件的格式:地址 类型 符号
(2)符号类型:大写为全局符号,小写为局部符号
A:该符号的值是不能改变的,等于const
B:该符号来自于未初始化代码段bss段
C: 该符号是通用的,通用的符号指未初始化的数据。当链接时,多个通用符号可能对应一个名称,如果该符号在某一个位置定义,这个通用符号被当做未定义的引用。不明白,内核中也没有该类型的符号
D: 该符号位于初始化的数据段
G: 位于初始化数据段,专门对应小的数据对象,比如global int x,对应的大数据对象为 数组类型等
I: 到其他符号的间接引用,是对于a.out文件的GNU扩展,使用非常少
N:调试符号
R:只读代码段的符号
S:BSS段(未初始化数据段)的小对象符号
T:代码段符号,全局函数,t为局部函数
U:未定义的符号
V:该符号是一个weak object,当其连接到为定义的对象上上,该符号的值变为0
W: 类似于V
—: 该符号是a.out文件中的一个stabs symbol,获取调试信息
?: 未知类型的符号
U:未定义的符号

system.map示例

可以看出运行地址是80800000

80800000 T __image_copy_start
80800000 T _start
80800020 T _reset
80800024 T _undefined_instruction
80800028 T _software_interrupt
8080002c T _prefetch_abort
80800030 T _data_abort
80800034 T _not_used
80800038 T _irq
8080003c T _fiq
80800040 T IRQ_STACK_START_IN
80800060 t undefined_instruction
808000c0 t software_interrupt
80800120 t prefetch_abort
80800180 t data_abort
808001e0 t not_used
80800240 t irq
808002a0 t fiq
808002e8 T reset
808002ec T save_boot_params_ret
8080031c T c_runtime_cpu_setup
8080032c W save_boot_params
80800330 T cpu_init_cp15
80800390 T cpu_init_crit
80800398 T __efi_runtime_start
80800398 W efi_reset_system
8080039a W efi_get_time
808003a4 W efi_set_time
808003ac t efi_unimplemented
808003b4 t efi_set_virtual_address_map_runtime
808003bc t efi_convert_pointer_runtime
808003c4 T efi_convert_pointer
8080045c T efi_update_capsule
80800464 T efi_query_capsule_caps
8080046c T efi_update_table_header_crc32
80800480 T efi_memcpy_runtime
80800494 T efi_get_variable_runtime
808004b2 T efi_get_next_variable_name_runtime
808004b8 t efi_var_mem_compare
80800510 t efi_var_mem_notify_virtual_address_map
80800528 T efi_var_mem_find
808005b8 T efi_get_next_variable_name_mem
80800634 T efi_get_variable_mem
808006a4 T efi_var_mem_del
808006f8 T efi_var_mem_ins
808007a4 T efi_var_mem_free
808007b8 T efi_query_variable_info_runtime
808007c0 t efi_set_variable_runtime
808007c8 T efi_get_variable_int
808007cc T efi_get_next_variable_name_int
808007d0 T u16_strnlen
808007e4 T crc32_no_comp
80800870 T crc32
8080087c T efi_runtime_detach
808008a0 T efi_runtime_relocate
808009e8 T efi_events
808009f0 T systab
80800a38 t firmware_vendor
80800a50 t efi_virtmap
80800a54 t efi_descriptor_count
80800a58 t efi_descriptor_size
80800a60 T efi_runtime_services
80800ab0 t efi_current_var
80800ab4 T efi_var_buf
80800ab8 t crc_table
80800eb8 T efi_runtime_mmio
80800ec0 T __efi_runtime_stop
80800ec0 T __v7_flush_dcache_all
80800ed4 t start_flush_levels
80800ed8 t flush_levels
80800f14 t loop1
80800f18 t loop2
80800f3c t skip
80800f48 t finished
80800f5c T v7_flush_dcache_all
80800f6c T __v7_invalidate_dcache_all
80800f84 t inval_levels
80800fc0 t inval_loop1
80800fc4 t inval_loop2
80800fe8 t inval_skip
80800ff4 t inval_finished
80801008 T v7_invalidate_dcache_all
80801018 T allow_unaligned
80801028 T invalidate_icache_all
8080103c W v7_outer_cache_disable
8080103e W v7_outer_cache_flush_all
80801040 T flush_dcache_all
8080104e W v7_outer_cache_inval_all
80801050 T invalidate_dcache_all
8080105e W v7_outer_cache_flush_range
80801060 T flush_dcache_range
80801098 W v7_outer_cache_inval_range
8080109a T invalidate_dcache_range
808010dc W cpu_cache_initialization
808010de T cleanup_before_linux_select
8080111c T cleanup_before_linux
80801122 T mpu_enabled
8080112c T enable_caches
80801140 T _main
80801188 t here
808011e0 T memset
80801280 T memcpy
80801564 T setjmp
80801574 T longjmp
80801590 W relocate_vectors
808015b8 T relocate_code
808015c8 t copy_loop
808015e0 t fixloop
80801600 t fixnext
80801608 t relocate_done
80801620 T arch_fixup_fdt
80801654 t setup_initrd_tag.isra.0
80801680 T arch_lmb_reserve
808016e0 W board_quiesce_devices
808016e4 t boot_jump_linux
80801774 W setup_board_tags
80801776 W board_prep_linux
80801778 t boot_prep_linux
80801888 T do_bootm_linux
808018cc T boot_prep_vxworks
80801900 T boot_jump_vxworks
8080190c T arch_print_bdinfo
80801960 T arch_reserve_stacks
80801978 T interrupt_init
8080198c T enable_interrupts
8080198e T disable_interrupts
80801994 T bad_mode
808019a0 T show_regs
80801b24 T do_undefined_instruction
80801b4c T do_software_interrupt
80801b74 T do_prefetch_abort
80801b9c T do_data_abort
80801bc4 T do_not_used
80801bec T do_fiq
80801c14 T do_irq
80801c3c W flush_cache
80801c44 T check_cache_range
80801c64 W arm_reserve_mmu
80801c92 T arch_reserve_mmu
80801c96 T icache_enable
80801ca8 T icache_disable
80801cbe T icache_status
80801cc8 T dcache_enable
80801cf0 T dcache_disable
80801d10 T dcache_status
80801d1c T lowlevel_init
80801d30 t park_cpu
80801d38 T get_device_type
80801d78 T misc_init_r
80801db4 T board_init
80801db8 T dram_init
80801dd4 T dram_init_banksize
80801df0 T do_board_detect
80801e2c T checkboard
80801e50 t ti_eeprom_string_cleanup
80801e74 t ti_i2c_eeprom_get
80801ef8 t ti_i2c_eeprom_am6_get.part.0
8080205c T ti_i2c_eeprom_am6_get
808020c8 T ti_i2c_eeprom_am6_get_base
808020fc W do_go_exec
80802104 t do_go
80802150 T do_bootm
808021f0 T do_bootd
80802208 t image_info
808022cc t do_iminfo
80802308 T bootm_maybe_autostart
80802354 t do_help
80802380 t do_panic
80802394 t do_version
808023c4 T blk_common_cmd
808025c4 T image_source_script
80802700 t do_source
80802750 T bdinfo_print_num
80802760 T do_bdinfo
808028b8 t do_blkcache
808028f4 t blkc_configure
80802934 t blkc_show
8080295c t efi_reserve_memory
80802990 t do_bootefi_exec
808029e4 T efi_install_fdt
80802c4c T efi_run_image
80802d58 t do_bootefi
80802e0c T efi_set_bootdev
80802e74 t do_coninfo
80802f08 t do_echo
80802f88 T do_bootelf
80803058 T do_bootvx
80803288 t do_exit
808032a8 T do_fat_size
808032b6 T do_fat_fsload
808032c4 t do_fat_ls
808032d4 t do_fat_fsinfo
80803328 t do_fat_fswrite
80803336 t do_fat_rm
80803344 t do_fat_mkdir
80803354 t fdt_valid
808033c8 t is_printable_string
80803414 t print_data.part.0
80803530 T set_working_fdt_addr
80803544 t do_fdt
8080401c t do_flinfo
80804020 t do_protect
8080402c t do_flerase
80804030 t evalexp
8080407c t evalstr
808040b8 t binary_test
808041ac t do_itest
808041f8 t bin_data_initboard_fit_config_name_match
80804214 t k_data_save
80804248 t k_data_restore
8080427c t getcxmodem
80804294 t load_serial_ymodem
80804324 t bin_data_char
80804340 t chk1.constprop.0
80804360 t s1_sendpacket.constprop.0
80804394 t load_serial
808044b8 t do_load_serial
80804544 t do_load_serial_bin
80804a6c t do_mem_md
80804b0c t do_mem_base
80804b34 t do_mem_crc
80804b60 t do_random
80804bf8 t do_mem_loop
80804c98 t do_mem_cmp
80804d84 t mod_mem.isra.0.part.0
80804e80 t do_mem_mm
80804e94 t do_mem_mw
80804f10 t do_mem_cp
80804f80 t do_mem_nm
80804f92 t do_sleep
80805014 t do_mmcops
80805098 t do_mmc_list
808050a4 t print_mmcinfo
80805398 t do_mmc_setdsr
80805408 t __init_mmc_device.isra.0
80805450 t do_mmc_rescan
80805484 t do_mmc_hwpartition
80805820 t do_mmc_dev
8080591c t do_mmc_boot_wp
8080595c t do_mmcinfo
80805998 t do_mmc_part
808059d0 t do_mmc_erase
80805a6c t do_mmc_write
80805b1c t do_mmc_read
80805bb8 T mtd_arg_off
80805c0c T mtd_arg_off_size
80805cd0 t netboot_common
80805ea0 t do_bootp
80805ea8 t do_dhcp
80805eb0 t do_nfs
80805eb8 T do_tftpb
80805ee0 t do_pinmux
80805f20 t do_list
80805f88 t show_pinmux
80806018 t do_status
808060b0 t do_dev
80806104 t do_remoteproc
80806140 t do_remoteproc_list
80806228 t do_remoteproc_wrapper
80806308 t do_remoteproc_load
80806380 t do_rproc_init
808063dc t bytes_per_second
80806408 t do_spi_flash
80806984 t do_time
80806a04 t do_false
80806a08 t do_true
80806a0c t do_test
80806c0c t usb_get_class_desc
80806c80 t usb_display_class_sub
80806d78 t usb_display_desc
80806e70 t usb_show_tree_graph
80806fec t usb_show_subtree
80807008 t usb_for_each_root_dev
80807044 t usb_display_string
80807070 t usb_display_config
8080721c t usb_show_info
80807266 t usb_find_device
808072cc t do_usbboot
808072d8 t do_usb_start
808072f8 T usb_show_tree
80807304 t do_usb
80807598 T common_diskboot
80807754 t ums_fini
80807788 t ums_write_sector
80807796 t ums_read_sector
808077a4 t do_usb_mass_storage
808079dc t do_imgextract
80807c4c t do_dfu
80807cac t extract_val
80807d04 t extract_env
80807da4 t set_gpt_info.isra.0.constprop.0
808080e4 t do_gpt
808082e4 t do_env_delete
8080834c t do_env
80808388 t env_print
80808400 t do_env_print
8080847c t do_env_import
80808634 t do_env_default
80808690 t do_env_exists
808086d0 t _do_env_set.isra.0
808087f0 t do_env_set
80808804 T do_env_ask
808088fc T env_get_id
80808908 T env_set
80808944 T env_set_ulong
8080895c T env_set_hex
8080897c t do_env_export
80808ad8 T env_match
80808b1c T env_get_f
80808ba0 T env_get
80808bf0 T env_get_hex
80808c10 T eth_env_get_enetaddr
80808c44 T eth_env_set_enetaddr
80808c74 T env_get_ulong
80808c90 t do_env_edit.part.0
80808d00 t do_env_edit
80808d1c T board_init_f_alloc_reserve
80808d28 T board_init_f_init_reserve
80808d3c W show_boot_progress
80808d40 T main_loop
80808d74 t mdelay
80808d7e t dummy
80808d80 T get_version
80808d84 T jumptable_init
80808ee4 t hash_finish_crc32
80808f00 t hash_finish_crc16_ccitt
80808f1c t hash_update_crc32
80808f30 t hash_init_crc32
80808f44 t hash_init_crc16_ccitt
80808f58 t hash_update_crc16_ccitt
80808f6c t hash_finish_sha256
80808f8e t hash_update_sha256
80808f9e t hash_init_sha256
80808fb4 t hash_finish_sha1
80808fd6 t hash_update_sha1
80808fe6 t hash_init_sha1
80808ffc T hash_lookup_algo
80809034 T hash_command
80809164 t b_reset
80809172 t static_get
80809184 t static_peek
8080918c t mapset
808091a0 t free_pipe_list
80809230 t syntax_err
8080923c t xmalloc
80809254 t new_pipe
8080926c t xrealloc
80809284 t done_command
808092c6 t done_pipe
808092f4 t done_word
808094b4 t is_assignment
808094e4 t file_get
80809618 t do_showvar
808096b8 t b_addchr
808096fc t b_addqchr
8080972c t file_peek
80809734 T get_local_var
8080978c T set_local_var
8080987c t insert_var_value_sub
80809a38 T parse_string_outer
80809ac8 t run_list_real
80809fa4 t parse_stream_outer
8080a3c8 T parse_file_outer
8080a3f4 T u_boot_hush_start
8080a424 T bootdelay_process
8080a4a8 T autoboot_command
8080a550 t log_init
8080a554 t log_init
8080a558 t display_text_info
8080a55c t setup_mon_len
8080a574 t reserve_round_4k
8080a588 t reserve_uboot
8080a5b8 W checkcpu
8080a5bc t setup_reloc
8080a5e2 t reloc_fdt
8080a612 t reserve_board
8080a640 t announce_dram_init
8080a650 t print_resetinfo
8080a680 t init_baud_rate
8080a69c t initf_dm
8080a6a2 t initf_bootstage
8080a6ae W clear_bss
8080a6b2 t setup_spl_handoff
8080a6b6 W arch_cpu_init
8080a6ba W mach_cpu_init
8080a6be t reserve_video
8080a6c2 t reserve_trace
8080a6c6 t setup_machine
8080a6ca t reserve_bootstage
8080a6ce t reserve_bloblist
8080a6d2 t display_new_sp
8080a6d6 t reloc_bootstage
8080a6da t reloc_bloblist
8080a6de t initf_console_record
8080a6e2 W reserve_arch
8080a6e6 W arch_cpu_init_dm
8080a6ea t reserve_malloc
8080a702 t reserve_global_data
8080a71c t reserve_fdt
8080a756 W coloured_LED_init
8080a758 W red_led_on
8080a75a W board_add_ram_info
8080a75c t show_dram_config
8080a78c W board_get_usable_ram_top
8080a79c t setup_dest_addr
8080a7cc t reserve_stacks
8080a7de W arch_setup_bdinfo
8080a7e2 T setup_bdinfo
8080a7ec T board_init_f
8080a834 t initr_trace
8080a838 t initr_reloc
8080a84c t run_main_loop
8080a854 t initr_net
8080a868 t initr_ethaddr
8080a880 t initr_jumptable
8080a88c t initr_env
8080a8d4 t initr_mmc
8080a8ec t initr_dm
8080a902 t initr_bootstage
8080a910 t initr_malloc
8080a92c t initr_reloc_global_data
8080a964 t initr_caches
8080a96e t initr_barrier
8080a972 t initr_console_record
8080a976 t initr_of_live
8080a97a t initr_dm_devices
8080a97e W power_init_board
8080a982 t initr_announce
8080a986 t initr_binman
8080a98a W cpu_secondary_init_r
8080a98c t initr_secondary_cpu
8080a998 T board_init_r
8080a9e0 T bootm_find_images
8080aad8 T bootm_disable_interrupts
8080aae8 T do_bootm_states
8080b134 W switch_to_non_secure_mode
8080b136 t copy_args
8080b16c t do_bootm_rtems
8080b19c T do_bootm_vxworks
8080b2fc t do_bootm_efi
8080b37c t do_bootm_plan9
8080b3ec t do_bootm_standalone
8080b42c t do_bootm_qnxelf
8080b47c t do_bootm_netbsd
8080b52c W arch_preboot_os
8080b52e W board_preboot_os
8080b530 T boot_selected_os
8080b570 T bootm_os_get_boot_func
8080b57c t of_bus_default_map
8080b5f6 t fdt_pack_reg
8080b68a t of_bus_default_translate
8080b6f0 T fdt_support_default_count_cells
8080b724 t __of_translate_address
8080b89c T fdt_find_and_setprop
8080b8e4 T fdt_find_or_add_subnode
8080b924 T fdt_root
8080b984 T fdt_initrd
8080ba98 T fdt_chosen
8080bb04 T do_fixup_by_path
8080bb38 T fdt_fixup_memory_banks
8080bc20 T fdt_fixup_memory
8080bc38 T fdt_fixup_ethernet
8080bd40 T fdt_shrink_to_minimum
8080bdd0 T fdt_translate_address
8080bddc T fdt_overlay_apply_verbose
8080be28 T miiphy_get_dev_by_name
8080be5c T miiphy_init
8080be74 T mdio_alloc
8080be90 T mdio_free
8080be94 T mdio_register
8080bee0 t usb_set_maxpacket_ep
8080bf38 T usb_int_msg
8080bf46 T usb_control_msg
8080bfb2 t usb_get_descriptor
8080bfe8 t get_descriptor_len
8080c048 t usb_setup_descriptor
8080c0cc t usb_get_string
8080c11c t usb_string_sub
8080c1ac T usb_bulk_msg
8080c1f6 T usb_maxpacket
8080c20a T usb_clear_halt
8080c26c T usb_get_configuration_len
8080c2bc T usb_get_configuration_no
8080c2d8 T usb_set_interface
8080c34c T usb_string
8080c3e8 T usb_select_config
8080c700 T usb_setup_device
8080c7a4 T usb_device_has_child_on_port
8080c7a8 t usb_set_port_feature
8080c7d6 t usb_clear_port_feature
8080c804 t usb_get_hub_descriptor
8080c846 W usb_hub_reset_devices
8080c848 T usb_hub_is_root_hub
8080c858 T usb_get_port_status
8080c8c8 T usb_hub_port_connect_change
8080c9c0 t usb_hub_configure
8080cdac T usb_hub_scan
8080cdba t usb_hub_post_probe
8080cdbe t usb_stor_irq
8080cdd0 t usb_stor_BBB_reset
8080ce64 t usb_stor_CB_reset
8080ceec t usb_stor_BBB_clear_endpt_stall.isra.0
8080cf18 t usb_stor_BBB_transport
8080d0c8 t usb_stor_CB_comdat
8080d220 t usb_stor_CBI_get_status.isra.0
8080d2a4 t usb_stor_CB_transport
8080d400 t usb_request_sense.constprop.0
8080d44c t usb_stor_read
8080d548 t usb_stor_write
8080d644 T usb_stor_info
8080d68c T usb_stor_reset
8080d698 T usb_stor_scan
8080d6c8 T usb_storage_probe
8080d840 T usb_stor_get_info
8080da64 t usb_mass_storage_probe
8080db60 t delete_char.part.0
8080dbe4 t cread_add_char
8080dc64 T cli_readline_into_buffer
8080e2b8 T cli_readline
8080e2c8 W show_board_info
8080e2f4 t console_setfile
8080e368 t console_puts_select.part.0
8080e368 t fputs.part.0
8080e378 t fgetc.part.0
8080e39c T getchar
8080e3b8 T putc
8080e3e0 T puts
8080e404 T ftstc
8080e41c T tstc
8080e436 T fputs
8080e440 T ctrlc
8080e474 T disable_ctrlc
8080e484 T had_ctrlc
8080e490 T clear_ctrlc
8080e49c T search_device
8080e4b2 T console_assign
8080e4dc t on_console
8080e548 T console_init_f
8080e554 T stdio_print_current_devices
8080e5cc T console_init_r
8080e65c T sbrk
8080e69c T mem_malloc_init
8080e6c4 t malloc_trim
8080e748 t free
8080e8b0 t malloc
8080ecd4 t calloc
8080ed74 t realloc
8080f048 t memalign
8080f158 T initf_malloc
8080f16c t alloc_simple
8080f1ac T malloc_simple
8080f1b2 T memalign_simple
8080f1bc t on_loadaddr
8080f1d8 T image_check_hcrc
8080f202 T image_check_dcrc
8080f224 T image_multi_count
8080f236 T image_multi_getimg
8080f280 T env_get_bootm_low
8080f2a0 T env_get_bootm_size
8080f2f0 T env_get_bootm_mapsize
8080f310 T memmove_wd
8080f31c T genimg_print_size
8080f340 T get_table_entry
8080f352 T get_table_entry_name
8080f364 T genimg_get_os_name
8080f378 T genimg_get_arch_name
8080f38c T genimg_get_type_name
8080f3a0 T image_decomp
8080f43c T genimg_get_comp_name
8080f450 T image_print_contents
8080f564 T get_table_entry_id
8080f58c T genimg_get_os_id
8080f5a0 T genimg_get_arch_id
8080f5b4 T genimg_get_type_id
8080f5c8 T genimg_get_comp_id
8080f5dc T genimg_get_kernel_addr_fit
8080f618 T genimg_get_format
8080f638 T genimg_has_config
8080f644 T boot_get_ramdisk
8080f868 T boot_ramdisk_high
8080f924 T boot_get_setup
8080f928 T boot_get_loadable
8080fa0c T image_setup_linux
8080fa48 t fdt_error
8080fa6c T boot_fdt_add_mem_rsv_regions
8080fb68 T boot_relocate_fdt
8080fc74 T boot_get_fdt
8080feb4 W ft_verify_fdt
8080feb8 T image_setup_libfdt
8080ff6c t fit_image_get_address
8080ffb4 T fit_parse_conf
8080ffee T fit_parse_subimage
80810028 T fit_get_desc
80810048 T fit_image_get_node
8081006c T fit_image_get_os
80810094 T fit_image_get_arch
808100bc T fit_image_get_type
808100e4 T fit_image_get_comp
8081010c T fit_image_get_load
80810118 T fit_image_get_entry
80810124 T fit_image_get_data
8081014c T fit_image_get_data_offset
80810170 T fit_image_get_data_position
80810194 T fit_image_get_data_size
808101b8 T fit_image_get_data_and_size
80810210 T fit_image_hash_get_algo
80810230 T fit_image_hash_get_value
80810258 t fit_image_print_data
80810354 t fit_image_print_verification_data
808103b4 T fit_image_print
808105b0 T fit_print_contents
80810860 T fit_get_end
80810868 T calculate_hash
80810910 T fit_image_verify_with_data
80810a4c T fit_image_verify
80810a9c T fit_all_image_verify
80810b3c T fit_image_check_os
80810b5c T fit_image_check_type
80810b7c T fit_image_check_comp
80810b9c T fit_check_format
80810bc4 T fit_conf_get_node
80810c40 T fit_conf_get_prop_node_index
80810c60 T fit_conf_get_prop_node
80810c66 T fit_get_node_from_config
80810c90 T fit_image_load
808110e0 T boot_get_setup_fit
80811120 T boot_get_fdt_fit
808112fc W get_effective_memsize
80811302 t stdio_serial_tstc
80811306 t stdio_serial_getc
8081130a t stdio_serial_puts
80811310 t stdio_serial_putc
80811318 T stdio_get_list
80811320 T stdio_get_by_name
80811350 T stdio_clone
80811374 T stdio_register_dev
808113a8 T stdio_register
808113b0 T stdio_init_tables
808113c4 T stdio_add_devices
80811414 T run_command
80811422 T run_command_list
80811468 T do_run
808114b4 T cli_process_fdt
808114e4 T cli_secure_boot_cmd
80811530 T cli_loop
8081153e T cli_init
80811544 T run_usb_dnl_gadget
80811600 T find_cmd_tbl
80811664 T find_cmd
80811680 T cmd_usage
808116bc T _do_help
808117c4 T var_complete
80811814 T complete_subcmdv
80811920 T cmd_auto_complete
80811b9c T cmd_get_data_size
80811bd0 T cmd_always_repeatable
80811be0 T cmd_never_repeatable
80811bf0 T cmd_process
80811cc8 t hex1_bin
80811cf4 t hex2_bin
80811d18 T srec_decode
80811ea8 t CYGACC_COMM_IF_GETC_TIMEOUT.isra.0
80811ed6 t xyzModem_flush
80811eec t xyzModem_get_hdr
80812058 T xyzModem_stream_open
808121c4 T xyzModem_stream_read
8081236c T xyzModem_stream_close
808123ac T xyzModem_stream_terminate
80812414 T xyzModem_error
8081242c t part_driver_lookup_type
80812470 T blk_get_dev
80812488 T dev_print
808125ec T part_init
80812624 T part_print
808126e4 T part_get_info
8081271c T part_get_info_whole_disk
80812754 T blk_get_device_by_str
80812810 T blk_get_device_part_str
80812a54 T part_set_generic_name
80812a88 t test_block_type
80812b00 t part_test_dos
80812b58 t part_get_info_extended
80812d30 T part_get_info_dos
80812d4c t print_partition_extended
80812f00 T part_print_dos
80812f20 t print_efiname
80812f5c t part_test_efi
80812fd0 t validate_gpt_entries
80813050 t validate_gpt_header
808131f0 t is_gpt_valid
808133f8 t is_pte_valid
80813430 t find_valid_gpt
808134a0 T part_print_efi
8081364c T part_get_info_efi
80813784 T get_disk_guid
808137dc T write_gpt_table
80813b48 T gpt_fill_pte
80813da8 T gpt_fill_header
80813f50 T gpt_restore
80814014 T gpt_verify_headers
8081406c T gpt_verify_partitions
808141e4 t clk_clean_rate_cache
80814214 T clk_request
8081422a t clk_get_by_index_tail.isra.0.part.0
80814278 T clk_get_by_index
808142ac T clk_get_by_name
808142d8 t clk_get_by_indexed_prop.isra.0
80814304 T clk_free
80814318 T clk_get_rate
80814334 T clk_set_rate
80814362 T clk_set_parent
80814380 T clk_set_defaults
808144ec T clk_uclass_post_probe
808144f8 T clk_enable
80814514 T clk_disable
80814530 T devm_clk_get
8081455e t dummy_enable
80814562 t clk_fixed_rate_raw_get_rate
80814566 t clk_fixed_rate_get_rate
80814574 t clk_fixed_rate_ofdata_to_platdata
808145a0 t clk_fixed_factor_get_rate
808145c0 t clk_fixed_factor_ofdata_to_platdata
808145fc t ti_sci_clk_of_xlate
80814614 t ti_sci_clk_request
80814618 t ti_sci_clk_disable
80814664 t ti_sci_clk_enable
808146b0 t ti_sci_clk_set_parent
80814790 t ti_sci_clk_set_rate
808147fc t ti_sci_clk_get_rate
80814850 t ti_sci_clk_probe
80814874 t ti_sci_clk_free
80814878 t device_bind_common.isra.0
80814a7c t alloc_priv
80814ab4 T device_bind_with_driver_data
80814aca T device_bind_ofnode
80814ae0 T device_bind_by_name
80814b24 T device_ofdata_to_platdata
80814bdc T device_probe
80814d18 T dev_get_platdata
80814d38 T dev_get_parent_platdata
80814d58 T dev_get_uclass_platdata
80814d78 T dev_get_priv
80814d98 T dev_get_uclass_priv
80814db8 T dev_get_parent_priv
80814dd8 T device_find_first_child
80814dea T device_find_next_child
80814e00 T dev_get_parent
80814e04 T dev_get_driver_data
80814e08 T dev_get_driver_ops
80814e10 T device_get_uclass_id
80814e18 T device_has_active_children
80814e3c T device_is_last_sibling
80814e4e T device_set_name_alloced
80814e58 T device_set_name
80814e78 T devfdt_get_addr_index
80814ef0 T devfdt_get_addr_size_index
80814f1c T devfdt_get_addr_name
80814f44 T devfdt_get_addr
80814f4a T devfdt_get_addr_ptr
80814f5c T devfdt_remap_addr_index
80814f6c T devfdt_remap_addr_name
80814f7c T devfdt_get_addr_pci
80814f80 T lists_driver_lookup_name
80814fac T lists_uclass_lookup
80814fcc T lists_bind_drivers
8081504c T device_bind_driver_to_node
80815078 T device_bind_driver
8081508c T lists_bind_fdt
80815188 t dm_scan_fdt_node
808151e8 T dm_root
80815204 T dm_init
80815250 T dm_remove_devices_flags
80815264 T dm_scan_platdata
80815284 T dm_scan_fdt_dev
808152a0 T dm_scan_fdt
808152b4 T dm_extended_scan_fdt
80815308 W dm_scan_other
8081530c T dm_init_and_scan
80815338 T uclass_find
80815366 T uclass_get
80815410 T uclass_find_device
80815452 T uclass_find_first_device
80815474 T uclass_find_next_device
8081548c T uclass_find_device_by_name
808154d2 T uclass_find_device_by_seq
8081551e T uclass_find_device_by_of_offset
8081555e T uclass_find_device_by_ofnode
8081559e T uclass_find_device_by_phandle
808155fe T uclass_get_device_by_driver
8081563e T uclass_get_device_tail
80815654 T uclass_get_device
80815670 T uclass_get_device_by_name
8081568c T uclass_get_device_by_seq
808156c0 T uclass_get_device_by_of_offset
808156dc T uclass_get_device_by_ofnode
808156f8 T uclass_get_device_by_phandle_id
80815744 T uclass_get_device_by_phandle
80815760 T uclass_first_device
8081577e T uclass_first_device_err
80815794 T uclass_next_device
808157b6 T uclass_next_device_err
808157cc T uclass_first_device_check
808157ea T uclass_next_device_check
80815804 T uclass_bind_device
8081583e T uclass_unbind_device
80815864 T uclass_resolve_seq
808158d8 T uclass_pre_probe_device
80815906 T uclass_post_probe_device
80815934 T uclass_pre_remove_device
80815942 T dm_warn
8081595c T device_unbind
808159f4 T device_chld_unbind
80815a4c T device_free
80815a98 T device_remove
80815b7c T device_chld_remove
80815bb8 t simple_bus_post_bind
80815bec t regmap_alloc
80815c04 T regmap_init_mem_index
80815cc8 T regmap_init_mem
80815dc4 T regmap_raw_read_range
80815e74 T regmap_raw_read
80815e88 T regmap_read
80815e8e T regmap_raw_write_range
80815f4e T regmap_raw_write
80815f62 T regmap_write
80815f74 T regmap_update_bits
80815fa4 t syscon_pre_probe
80815fc8 T ofnode_read_u32_index
8081600a T ofnode_read_u32
80816012 T ofnode_read_u32_default
80816026 T ofnode_read_s32_default
80816038 T ofnode_read_u64
8081606c T ofnode_read_u64_default
80816082 T ofnode_read_prop
808160ac T ofnode_read_string
808160cc T ofnode_read_size
808160e4 T ofnode_find_subnode
808160fa T ofnode_read_u32_array
80816112 T ofnode_first_subnode
80816124 T ofnode_next_subnode
80816136 T ofnode_get_parent
80816144 T ofnode_get_name
80816156 T ofnode_get_by_phandle
80816164 T ofnode_stringlist_search
8081618a T ofnode_parse_phandle_with_args
808161cc T ofnode_count_phandle_with_args
808161f0 T ofnode_path
80816204 T ofnode_read_chosen_prop
80816220 T ofnode_get_chosen_node
80816238 T ofnode_get_property
8081624c T ofnode_read_bool
8081625c T ofnode_is_available
80816270 T ofnode_read_u8_array_ptr
80816284 T ofnode_read_simple_addr_cells
8081628e T ofnode_read_simple_size_cells
80816298 T ofnode_get_addr_size_index
808162d8 T ofnode_get_addr_index
808162e6 T ofnode_get_addr
808162ec T ofnode_pre_reloc
8081632c T ofnode_read_resource
8081636c T ofnode_read_resource_byname
80816390 T ofnode_translate_address
8081639e T ofnode_by_compatible
808163b4 T ofnode_by_prop_value
808163d0 t dfu_write_buffer_drain
80816438 W dfu_flush_callback
8081643a W dfu_initiated_callback
8081643c W dfu_usb_get_reset
80816440 T dfu_free_buf
80816454 T dfu_get_buf_size
80816460 T dfu_get_buf
808164e4 T dfu_transaction_cleanup
8081651c T dfu_transaction_initiate
80816570 T dfu_flush
808165b0 T dfu_write
80816660 T dfu_read
808167ac T dfu_free_entities
80816804 T dfu_alt_init
8081686c T dfu_alt_add
80816988 T dfu_config_interfaces
80816a30 T dfu_config_entities
80816aa0 T dfu_init_env_entities
80816b00 T dfu_get_dev_type
80816b28 T dfu_get_layout
80816b50 T dfu_show_entities
80816b9c T dfu_get_alt_number
80816ba8 T dfu_get_entity
80816bd4 t mmc_block_op
80816cf0 t mmc_file_op
80816de0 T dfu_flush_medium_mmc
80816e20 T dfu_free_entity_mmc
80816e38 T dfu_write_medium_mmc
80816f24 T dfu_get_medium_size_mmc
80816f7c T dfu_read_medium_mmc
80817078 T dfu_fill_entity_mmc
80817264 T dfu_get_medium_size_ram
80817270 t dfu_read_medium_ram
808172c0 t dfu_write_medium_ram
80817310 T dfu_fill_entity_ram
808173b0 t dfu_get_medium_size_sf
808173bc t dfu_flush_medium_sf
808173c0 t dfu_polltimeout_sf
808173c4 t dfu_free_entity_sf
808173ca t dfu_read_medium_sf
808173e4 t dfu_write_medium_sf
8081744c T dfu_fill_entity_sf
80817618 t sysreset_post_bind
8081761c T sysreset_request
8081762c T sysreset_get_status
8081763c T sysreset_walk
8081767c T sysreset_walk_halt
808176a0 T do_reset
808176bc t ti_sci_sysreset_request
80817700 t ti_sci_sysreset_probe
80817724 t ti_sci_setup_one_xfer
80817790 t ti_sci_do_xfer
808178f8 t ti_sci_cmd_change_fwl_owner
80817982 t ti_sci_cmd_get_fwl_region
80817b5c t ti_sci_cmd_set_fwl_region
80817c90 t ti_sci_cmd_rm_udmap_rx_flow_cfg
80817cf8 t ti_sci_cmd_rm_udmap_rx_ch_cfg
80817d56 t ti_sci_cmd_rm_udmap_tx_ch_cfg
80817dde t ti_sci_cmd_rm_psil_unpair
80817e28 t ti_sci_cmd_rm_psil_pair
80817e72 t ti_sci_cmd_ring_config
80817ee4 t ti_sci_cmd_get_proc_boot_status
80817fae t ti_sci_cmd_proc_auth_boot_image
80818046 t ti_sci_cmd_set_proc_boot_ctrl
808180c2 t ti_sci_cmd_set_proc_boot_cfg
8081817c t ti_sci_cmd_proc_handover
808181c6 t ti_sci_cmd_proc_release
8081820a t ti_sci_cmd_proc_request
8081824e t ti_sci_get_resource_range
808182de t ti_sci_cmd_get_resource_range_from_shost
808182e2 t ti_sci_cmd_get_resource_range
808182f4 t ti_sci_cmd_query_msmc
80818398 t ti_sci_cmd_core_reboot
808183dc t ti_sci_cmd_clk_get_freq
80818468 t ti_sci_cmd_clk_set_freq
808184da t ti_sci_cmd_clk_get_match_freq
80818590 t ti_sci_cmd_clk_get_num_parents
808185f0 t ti_sci_cmd_clk_get_parent
80818644 t ti_sci_cmd_clk_set_parent
80818692 t ti_sci_cmd_get_clock_state
808186fa t ti_sci_cmd_clk_is_off
80818744 t ti_sci_cmd_clk_is_on
8081878e t ti_sci_cmd_clk_is_auto
808187be t ti_sci_set_clock_state
80818812 t ti_sci_cmd_put_clock
80818824 t ti_sci_cmd_idle_clock
80818834 t ti_sci_cmd_get_clock
8081886a t ti_sci_get_device_state
80818916 t ti_sci_cmd_get_device_resets
8081892a t ti_sci_cmd_dev_is_trans
80818958 t ti_sci_cmd_dev_is_on
808189a0 t ti_sci_cmd_dev_is_stop
808189e8 t ti_sci_cmd_dev_is_idle
80818a16 t ti_sci_cmd_dev_get_clcnt
80818a28 t ti_sci_cmd_dev_is_valid
80818a40 t ti_sci_cmd_set_device_resets
80818a86 t cmd_set_board_config_using_msg
80818ace t ti_sci_cmd_set_board_config_pm
80818ad4 t ti_sci_cmd_set_board_config_security
80818ada t ti_sci_cmd_set_board_config_rm
80818ae0 t ti_sci_cmd_set_board_config
80818ae8 t ti_sci_probe
80818e24 t ti_sci_cmd_proc_shutdown_no_wait
80818f18 t ti_sci_set_device_state
80819006 t ti_sci_cmd_put_device
8081900e t ti_sci_cmd_release_exclusive_devices
80819050 t ti_sci_cmd_idle_device_exclusive
8081905a t ti_sci_cmd_idle_device
80819062 t ti_sci_cmd_get_device_exclusive
8081906c t ti_sci_cmd_get_device
80819074 T ti_sci_get_handle_from_sysfw
8081908a T ti_sci_get_handle
808190a0 T ti_sci_get_by_phandle
808190f4 T devm_ti_sci_get_of_resource
808191e8 t mtd_check_oob_ops
808192d8 T mtd_read
80819390 T mtd_read_oob
808193fe T mtd_write_oob
80819460 T mtd_unlock
808194bc T add_mtd_device
80819604 T nand_register
80819664 t verify_bbt_descr
8081974c t create_bbt
808198f4 t scan_read
80819992 t read_bbt
80819aec t write_bbt
80819ef0 t nand_update_bbt
80819fca t mark_bbt_region
8081a12c t search_bbt
8081a27e t read_abs_bbt
8081a340 T nand_default_bbt
8081a738 T nand_isreserved_bbt
8081a77a T nand_isbad_bbt
8081a7c4 T nand_markbad_bbt
8081a814 T nand_calculate_ecc
8081a8d4 T nand_correct_data
8081a994 t nand_release_device
8081a99e T nand_read_byte
8081a9ac t nand_read_byte16
8081a9bc t nand_read_word
8081a9ca t nand_write_byte
8081a9e2 t nand_write_byte16
8081a9fa T nand_write_buf
8081aa14 T nand_write_buf16
8081aa32 t nand_setup_data_interface
8081aa84 t nand_read_page_swecc
8081ab54 t nand_write_page_swecc
8081abcc t nand_sync
8081abd8 t nand_onfi_set_features
8081ac30 t nand_onfi_get_features
8081ac70 t nand_set_defaults
8081adb4 t nand_setup_read_retry_micron
8081add8 t nand_check_erased_buf
8081aea0 t nand_block_bad
8081afa2 t sanitize_string
8081afc4 t nand_block_isreserved
8081afd2 T nand_read_buf16
8081b008 t nand_block_checkbad
8081b058 t nand_block_isbad
8081b0b8 t nand_fill_oob
8081b170 t nand_select_chip
8081b1a8 t nand_transfer_oob
8081b250 t onfi_crc16.constprop.0
8081b28c T nand_read_buf
8081b2a8 T nand_wait_ready
8081b2dc T nand_read_page_op
8081b320 t nand_read_oob
8081b8a0 T nand_change_read_column_op
8081b8e6 T nand_read_oob_op
8081b924 t nand_read_oob_std
8081b940 T nand_prog_page_begin_op
8081b980 T nand_prog_page_end_op
8081b9a8 t nand_write_page
8081ba62 T nand_prog_page_op
8081bac2 t nand_write_oob_std
8081badc T nand_change_write_column_op
8081bb20 T nand_readid_op
8081bb5a T nand_status_op
8081bb7e t nand_check_wp
8081bba4 t nand_do_write_ops
8081be04 T nand_erase_op
8081be4c t single_erase
8081be5c T nand_reset_op
8081be70 T nand_read_data_op
8081beb0 t nand_wait
8081bf48 t nand_read_oob_syndrome
8081c00c t nand_read_page_raw_syndrome
8081c0a2 t nand_read_page_raw
8081c0ce t panic_nand_write
8081c148 t nand_wait_status_ready.constprop.0
8081c17a t nand_command
8081c2a4 t nand_command_lp
8081c42c T nand_write_data_op
8081c460 t nand_write_oob_syndrome
8081c564 t nand_write_page_raw_syndrome
8081c5fa t nand_write_page_syndrome
8081c6a2 t nand_write_subpage_hwecc
8081c796 t nand_write_page_raw
8081c7c2 t nand_write_page_hwecc
8081c848 T nand_reset
8081c8bc t nand_do_write_oob
8081ca3a t nand_default_block_markbad
8081cad0 t nand_write_oob
8081cb40 T nand_check_erased_ecc_chunk
8081cbb4 t nand_read_page_syndrome
8081ccec t nand_read_subpage
8081ceb8 t nand_read_page_hwecc
8081cfcc t nand_read_page_hwecc_oob_first
8081d0e8 T nand_erase_nand
8081d2f6 t nand_block_markbad
8081d392 t nand_erase
8081d398 T nand_get_flash_type
8081ded4 T nand_scan_ident
8081e198 T nand_scan_tail
8081e634 T nand_scan
8081e64c T onfi_init_data_interface
8081e6d4 T nand_get_default_data_interface
8081e6dc t omap_nand_hwcontrol
8081e734 t omap_dev_ready
8081e750 t omap_enable_hwecc_bch
8081e80c t omap_reverse_list
8081e828 t omap_correct_data_bch
8081e94c t _omap_calculate_ecc_bch.isra.0
8081ea4c t omap_calculate_ecc_bch
8081ea54 t omap_read_page_bch
8081eb84 t omap_nand_read_prefetch
8081edb0 T gpmc_nand_init
8081ef98 t gpmc_nand_probe
8081efcc T elm_check_error
8081f140 T elm_config
8081f188 T elm_reset
8081f1b0 T elm_init
8081f1c4 t spi_flash_post_bind
8081f1c8 T spi_flash_read_dm
8081f1d6 T spi_flash_write_dm
8081f1e4 T spi_flash_erase_dm
8081f1ec T spi_flash_free
8081f1f8 T spi_flash_probe_bus_cs
8081f248 T spi_flash_probe
8081f262 t spi_flash_std_write
8081f284 t spi_flash_std_read
8081f2a8 T spi_flash_std_probe
8081f2f0 t spi_flash_std_erase
8081f338 t spi_flash_std_remove
8081f346 t read_cr
8081f362 t write_enable
8081f374 t write_disable
8081f386 t stm_get_locked_range
8081f3f2 t spi_nor_read
8081f442 t spi_nor_read_sfdp
8081f49e t spi_nor_post_bfpt_fixups
8081f4b6 t spi_nor_hwcaps2cmd
8081f4d0 t s28hs512t_default_init
8081f4e8 t s28hs512t_post_sfdp_fixup
8081f520 t mt35xu512aba_default_init
8081f52c t mt35xu512aba_post_sfdp_fixup
8081f564 t s28hs512t_post_bfpt_fixup
8081f5d8 t spi_nor_read_sfdp_dma_unsafe
8081f61a t spi_nor_setup_op
8081f684 t spi_nor_read_op
8081f710 t spi_nor_read_data
8081f76c t spi_nor_soft_reset
8081f7ec t spi_nor_write_data
8081f878 t read_sr
8081f8fc t spi_nor_check_op
8081f940 t s28hs512t_erase_non_uniform
8081f9c4 t spi_nor_read_reg
8081fa0c t spi_nor_write_reg
8081fa56 t stm_is_locked
8081fab8 t spi_nor_default_setup
8081fcc0 t spi_nor_wait_till_ready
8081fe50 t spi_nor_micron_octal_dtr_enable
8081ff34 t spi_nor_cypress_octal_dtr_enable
8081fff0 t spi_nor_erase
808200be t write_sr_cr
808200ea t spansion_read_cr_quad_enable
80820136 t spansion_no_read_cr_quad_enable
80820160 t s28hs512t_setup
808201d8 t spi_nor_write
80820340 t write_sr_and_check.constprop.0
8082038e t stm_is_locked_sr
808203e8 t stm_lock
808205ca t stm_is_unlocked_sr
80820620 t stm_unlock
808207ce T spi_nor_remove
808207e8 T spi_nor_set_fixups
80820828 T spi_nor_scan
8082126c t pinconfig_post_bind
80821304 t pinctrl_post_bind
8082131c T pinctrl_select_state
80821414 T pinctrl_get_pins_count
80821424 T pinctrl_get_pin_name
80821448 T pinctrl_get_pin_muxing
80821460 t single_ofdata_to_platdata
808214d4 t single_set_state
808215e8 t k3_ddrss_get_info
808215ec t k3_msmc_probe
80821710 t k3_lpddr4_read_ddr_type
80821758 t k3_lpddr4_info_handler
8082185c T k3_lpddr4_probe
80821890 T k3_lpddr4_init
808218ec T populate_data_array_from_dt
8082199c T k3_lpddr4_hardware_reg_init
80821a0c T k3_lpddr4_start
80821a7c t k3_ddrss_probe
80822170 T lpddr4_getinstance
80822178 T lpddr4_pollctlirq
808221bc T lpddr4_addoffset
808221c2 T lpddr4_probe
808221d2 T lpddr4_init
808221ee T lpddr4_readreg
80822242 T lpddr4_writereg
80822290 T lpddr4_getmmrregister
808222e6 T lpddr4_setmmrregister
80822346 T lpddr4_writectlconfig
80822382 T lpddr4_writephyindepconfig
808223be T lpddr4_writephyconfig
808223fa T lpddr4_readctlconfig
80822436 T lpddr4_readphyindepconfig
80822472 T lpddr4_readphyconfig
808224ae T lpddr4_getphyindepinterruptmask
808224d0 T lpddr4_setphyindepinterruptmask
80822508 T lpddr4_checkphyindepinterrupt
80822532 T lpddr4_ackphyindepinterrupt
80822554 T lpddr4_start
808225f8 T lpddr4_checklvlerrors
80822704 T lpddr4_seterrors
80822796 T lpddr4_setsettings
808227ee T lpddr4_getlpiwakeuptime
80822926 T lpddr4_setlpiwakeuptime
80822aa4 T lpddr4_getdbireadmode
80822ace T lpddr4_getdbiwritemode
80822af4 T lpddr4_setdbimode
80822b4c T lpddr4_getrefreshrate
80822bb6 T lpddr4_setrefreshrate
80822c5a T lpddr4_refreshperchipselect
80822c84 W cps_uncachedread32
80822c88 W cps_uncachedwrite32
80822c8c W cps_delayns
80822c8e T lpddr4_enablepiinitiator
80822cc2 T lpddr4_getctlinterruptmask
80822ce2 T lpddr4_setctlinterruptmask
80822d14 T lpddr4_checkctlinterrupt
80822e38 T lpddr4_ackctlinterrupt
80822f6c T lpddr4_checkwrlvlerror
80822fb4 T lpddr4_getdebuginitinfo
80822ffe T lpddr4_getreducmode
80823028 T lpddr4_setreducmode
8082305e T lpddr4_checkmmrreaderror
808230aa T lpddr4_geteccenable
808230ba T lpddr4_seteccenable
808230ce t timer_post_probe
808230e4 t timer_pre_probe
80823130 T timer_get_count
8082314c T timer_get_rate
80823152 T timer_conv_64
80823174 T dm_timer_init
808231e8 t omap_timer_get_count
808231fe t omap_timer_ofdata_to_platdata
80823214 t omap_timer_probe
80823258 T mbox_get_by_index
808232d8 T mbox_get_by_name
80823300 T mbox_send
8082330a T mbox_recv
80823348 t k3_sec_proxy_request
8082334c t k3_sec_proxy_recv
808233e0 t k3_sec_proxy_send
80823524 t k3_sec_proxy_of_xlate
8082359c t k3_sec_proxy_remove
808235ac t k3_sec_proxy_probe
808236b4 t k3_sec_proxy_free
808236b8 t rproc_post_probe
808236ce t _rproc_dev_is_probed
808236de t for_each_remoteproc_device
80823718 t rproc_pre_probe
80823798 t _rproc_probe_dev
8082379c t _rproc_ops_wrapper
808237f2 t _rproc_name_is_unique
80823828 T rproc_is_initialized
80823840 T rproc_init
80823860 T rproc_dev_init
8082387e T rproc_load
808238b6 T rproc_start
808238bc T rproc_stop
808238c2 T rproc_reset
808238c8 T rproc_ping
808238ce T rproc_is_running
808238d4 t k3_sysctrler_start
8082396c t k3_sysctrler_load
80823ad8 t k3_sysctrler_probe
80823be0 t k3_arm64_init
80823be4 t k3_arm64_load
80823c34 t k3_arm64_start
80823cc4 t k3_arm64_probe
80823dfc t get_desc
80823e66 t blk_post_probe
80823e74 T blk_get_if_type_name
80823e80 T blk_get_devnum_by_typename
80823f04 T blk_list_part
80823f42 T blk_print_part_devnum
80823f68 T blk_list_devices
80823fa4 T blk_print_device_num
80823fcc T blk_show_device
80824020 T blk_select_hwpart
80824036 T blk_dselect_hwpart
8082403c T blk_first_device
80824072 T blk_next_device
808240a0 T blk_find_device
808240f0 T blk_get_device
80824106 T blk_get_devnum_by_type
80824120 T blk_select_hwpart_devnum
80824138 T blk_dread
808241a2 T blk_read_devnum
808241c0 T blk_dwrite
808241fc T blk_write_devnum
8082421a T blk_derase
8082424a T blk_find_max_devnum
80824290 T blk_next_free_devnum
808242a8 T blk_create_device
80824394 T blk_create_devicef
80824400 T blkcache_read
80824494 T blkcache_fill
80824554 T blkcache_invalidate
808245b4 T blkcache_configure
80824610 T blkcache_stats
80824628 t k3_esm_probe
808247f8 t mmc_send_cmd_retry
80824814 t mmc_send_op_cond_iter
80824858 t mmc_go_idle
8082488a t mmc_set_capacity
808248f8 t mmc_power_on.isra.0
80824924 t mmc_send_cmd_quirks.constprop.0
80824938 T mmc_mode_name
80824950 T mmc_send_status
8082497e t __mmc_switch.constprop.0
80824a30 T mmc_poll_for_busy
80824aa8 T mmc_set_blocklen
80824ad0 T mmc_bread
80824bc4 T mmc_send_ext_csd
80824bf4 t mmc_read_and_compare_ext_csd
80824c6c t mmc_set_card_speed.constprop.0
80824cd4 T mmc_switch
80824cd8 t mmc_startup_v4
80824f80 T mmc_boot_wp
80824f8a T mmc_switch_part
80824fe0 T mmc_hwpart_config
808252bc T mmc_set_clock
808252dc t mmc_startup
80825b6c T mmc_dump_capabilities
80825b70 T mmc_get_op_cond
80825d68 T mmc_start_init
80825dac T mmc_init
80825e52 T mmc_set_dsr
80825e58 T mmc_initialize
80825ed4 t mmc_blk_probe
80825ee8 T dm_mmc_set_ios
80825ef8 T mmc_set_ios
80825f00 T dm_mmc_wait_dat0
80825f10 T mmc_wait_dat0
80825f18 T dm_mmc_get_wp
80825f28 T mmc_getwp
80825f30 T dm_mmc_get_cd
80825f40 T mmc_getcd
80825f48 T dm_mmc_host_power_cycle
80825f56 T mmc_host_power_cycle
80825f5e T dm_mmc_deferred_probe
80825f6c T mmc_deferred_probe
80825f74 T dm_mmc_reinit
80825f82 T mmc_reinit
80825f8c T mmc_of_parse
8082619c T mmc_get_mmc_dev
808261b2 T dm_mmc_get_b_max
808261dc T mmc_get_b_max
808261e4 T dm_mmc_send_cmd
8082620a T mmc_send_cmd
80826212 t mmc_select_hwpart
8082625c T find_mmc_device
8082628c T get_mmc_num
8082629c T mmc_get_blk_desc
808262b6 T mmc_do_preinit
808262f8 T print_mmc_devices
80826390 T mmc_bind
808263f8 T mmc_berase
80826510 T mmc_bwrite
8082661c T sdhci_prepare_adma_table
808266c6 T sdhci_adma_init
808266d0 t sdhci_reset
80826734 t sdhci_deferred_probe
8082674e t sdhci_get_cd
808267ac t sdhci_send_command
80826e68 T sdhci_set_clock
80826fd0 t sdhci_set_ios
808270a4 T sdhci_set_uhs_timing
8082710e T sdhci_set_control_reg
80827114 T sdhci_probe
80827258 T sdhci_setup_cfg
8082747c T sdhci_bind
80827480 t am654_sdhci_write_b
808274a8 t j721e_4bit_sdhci_set_ios_post
808274f4 t am654_sdhci_ofdata_to_platdata
808275d0 t am654_sdhci_bind
80827610 t am654_sdhci_set_ios_post
80827824 t am654_sdhci_probe
80827960 T am654_sdhci_init
80827a30 t am654_sdhci_deferred_probe
80827a78 t gpmc_cs_write_reg
80827a8c t gpmc_cs_read_reg
80827aa0 t gpmc_cs_enable_mem
80827aba t gpmc_cs_disable_mem
80827ad4 t gpmc_get_fclk_period
80827af8 t set_gpmc_timing_reg
80827ba0 t gpmc_probe
80828928 t reset_get_by_index_tail.isra.0.part.0
80828974 T reset_get_by_index
808289a8 T reset_get_by_index_nodev
808289e4 T reset_free
80828a00 T reset_assert
80828a1c T reset_deassert
80828a38 T reset_deassert_bulk
80828a5a T reset_release_all
80828a8c t __reset_get_bulk.isra.0
80828af8 T reset_get_bulk
80828afe t ti_sci_reset_of_xlate
80828b16 t ti_sci_reset_request
80828b1c t ti_sci_reset_status
80828b74 t ti_sci_reset_set
80828c04 t ti_sci_reset_deassert
80828c0a t ti_sci_reset_assert
80828c10 t ti_sci_reset_probe
80828c34 t ti_sci_reset_free
80828c38 T thermal_get_temp
80828c48 t k3_ringacc_ring_reset_sci
80828ca0 t k3_ringacc_ring_reconfig_qmode_sci
80828cf8 t k3_nav_ringacc_ring_cfg_sci
80828d64 t k3_nav_ringacc_ring_pop_mem
80828dc0 t k3_dmaring_ring_reverse_pop_mem
80828e26 t k3_dmaring_ring_fwd_pop_mem
80828e8e t k3_nav_ringacc_ring_push_mem
80828ee2 t k3_nav_ringacc_probe
80828f0c t k3_nav_ringacc_init
808290b0 T k3_nav_ringacc_request_ring
808291c6 T k3_nav_ringacc_ring_reset
808291e8 T k3_nav_ringacc_ring_reset_dma
80829250 T k3_nav_ringacc_ring_free
80829324 T k3_nav_ringacc_request_rings_pair
808293ce T k3_nav_ringacc_get_ring_id
808293dc T k3_nav_ringacc_ring_cfg
808295bc T k3_nav_ringacc_ring_get_free
808295e0 T k3_nav_ringacc_ring_get_occ
808295f8 T k3_nav_ringacc_ring_is_full
80829606 T k3_nav_ringacc_ring_push
8082963a T k3_nav_ringacc_ring_pop
80829690 T k3_ringacc_dmarings_init
80829760 T soc_get
80829768 T soc_get_machine
80829778 T soc_get_family
80829788 T soc_get_revision
80829798 T soc_device_match
80829838 T soc_ti_k3_probe
80829904 t soc_ti_k3_get_family
80829924 t soc_ti_k3_get_revision
80829944 T dma_request
80829958 T dma_get_by_index
80829a00 T dma_get_by_name
80829a3c T dma_free
80829a4c T dma_enable
80829a5e T dma_disable
80829a70 T dma_prepare_rcv_buf
80829a82 T dma_receive
80829a94 T dma_send
80829aae T dma_get_cfg
80829ac0 T dma_get_device
80829afa T dma_memcpy
80829b64 t udma_reset_counters
80829bde t udma_start
80829cc6 t udma_put_rchan
80829d06 t udma_put_tchan
80829d66 t udma_put_rflow
80829da6 t bcdma_put_bchan
80829de8 t udma_get_cfg
80829e40 t udma_enable
80829e90 t udma_push_to_ring
80829eb8 T udma_prepare_rcv_buf
8082a0d0 t udma_reset_uchan
8082a0ec t udma_alloc_tx_resources
8082a30c t udma_free_tx_resources
8082a338 t udma_free_rx_resources
8082a36e t bcdma_free_bchan_resources
8082a39c t __udma_reserve_rflow
8082a4dc t udma_alloc_tchan_sci_req
8082a57c t udma_alloc_rchan_sci_req
8082a710 t udma_reset_rings
8082a74c t udma_disable
8082a8e4 t udma_rfree
8082aa84 t udma_poll_completion
8082aaf0 t udma_send
8082ae48 t udma_receive
8082afa4 t udma_of_xlate
8082b0b0 t udma_probe
8082bf24 t bcdma_alloc_chan_resources
8082c2d0 t udma_alloc_rx_resources
8082c47c t udma_alloc_chan_resources
8082c7f8 t udma_transfer
8082cbe4 t udma_request
8082d094 T psil_get_ep_config
8082d0fc t _gpio_get_value
8082d11a t gpio_post_bind
8082d11e t _dm_gpio_set_dir_flags
8082d194 t check_reserved
8082d1e0 t gpio_renumber
8082d226 t gpio_pre_remove
8082d256 t gpio_post_probe
8082d27a T gpio_xlate_offs_flags
8082d2d6 T dm_gpio_request
8082d338 t dm_gpio_requestf
8082d364 T dm_gpio_get_value
8082d380 T dm_gpio_set_value
8082d3e0 T dm_gpio_set_dir_flags
8082d404 t gpio_request_tail
8082d490 T gpio_request_by_name
8082d4e8 t pca953x_xlate
8082d4fa t pca953x_get_function
8082d52c t pca953x_write_single
8082d5d0 t pca953x_set_value
8082d612 t pca953x_direction_output
8082d648 t pca953x_read_regs
8082d6b4 t pca953x_probe
8082d85c t pca953x_get_value
8082d8c0 t pca953x_direction_input
8082d8ee t davinci_gpio_xlate
8082d902 t davinci_get_gpio_bank
8082d918 t davinci_gpio_get_function
8082d936 t davinci_gpio_get_value
8082d954 t davinci_gpio_direction_output
8082d97a t davinci_gpio_direction_input
8082d994 t davinci_gpio_ofdata_to_platdata
8082d9b4 t davinci_gpio_probe
8082d9f0 t davinci_gpio_set_value
8082da10 t i2c_setup_offset
8082da52 t i2c_probe_chip
8082da98 T i2c_uclass_init
8082dab8 t i2c_pre_probe
8082db00 t i2c_post_bind
8082db1e T dm_i2c_read
8082dc00 T dm_i2c_write
8082dd38 T i2c_get_chip
8082ddd8 T dm_i2c_probe
8082ddfc T dm_i2c_set_bus_speed
8082de24 t i2c_post_probe
8082de50 T i2c_set_chip_offset_len
8082de68 T i2c_chip_ofdata_to_platdata
8082dea0 t i2c_child_post_bind
8082dec0 t __omap24_i2c_setspeed
8082dfb4 t omap_i2c_set_bus_speed
8082dfd0 t wait_for_bb
8082e054 t wait_for_event
8082e0cc t flush_fifo
8082e10c t omap_i2c_probe_chip
8082e1d8 t omap_i2c_ofdata_to_platdata
8082e20c t omap_i2c_xfer
8082e458 t omap_i2c_probe
8082e6d0 t am65_cpsw_probe_nuss
8082e914 t am65_cpsw_read_rom_hwaddr
8082e950 t am65_cpsw_free_pkt
8082e9b0 t am65_cpsw_recv
8082e9c8 t am65_cpsw_send
8082ea1c t am65_cpsw_macsl_wait_for_idle.isra.0
8082ea38 t am65_cpsw_stop
8082eae0 t am65_cpsw_port_probe
8082ed54 T am65_cpsw_macsl_reset
8082ed78 t am65_cpsw_start
8082f1b4 t cpsw_mdio_wait_for_user_access.isra.0
8082f1e8 t cpsw_mdio_read
8082f23a t cpsw_mdio_write
8082f27c T cpsw_mdio_init
8082f350 T genphy_shutdown
8082f354 T genphy_restart_aneg
8082f39c T genphy_config_aneg
8082f538 T genphy_config
8082f5dc T genphy_update_link
8082f6dc T genphy_parse_link
8082f828 T genphy_startup
8082f840 T phy_register
8082f858 T genphy_init
8082f864 T phy_init
8082f874 T phy_set_supported
8082f8ac W get_phy_id
8082f8ec t get_phy_device_by_mask
8082fb1c T phy_reset
8082fba8 T phy_find_by_mask
8082fbcc T phy_connect_dev
8082fbfc T phy_connect
8082fc38 T phy_startup
8082fc44 W board_phy_config
8082fc50 T phy_config
8082fc54 T phy_shutdown
8082fc64 T phy_get_interface_by_name
8082fc8c T phy_ti_init
8082fc98 t dp83867_config
80830810 t dp83867_probe
8083082c T phy_dp83867_init
8083083c T power_domain_get_by_index
8083089c T power_domain_free
808308a6 T power_domain_on
808308b0 T power_domain_off
808308bc t dev_power_domain_ctrl
80830938 T dev_power_domain_on
8083093e T dev_power_domain_off
80830944 t ti_sci_power_domain_request
80830948 t ti_sci_power_domain_of_xlate
8083096c t ti_sci_power_domain_off
808309bc t ti_sci_power_domain_on
80830a14 t ti_sci_power_domain_probe
80830a38 t ti_sci_power_domain_free
80830a3c t regulator_pre_probe
80830b58 t regulator_post_bind
80830bcc T regulator_get_value
80830be8 T regulator_get_enable
80830c04 T regulator_set_value
80830c9a T regulator_set_enable
80830d10 T device_get_supply_regulator
80830d1c T regulator_common_ofdata_to_platdata
80830d98 T regulator_common_get_enable
80830da8 T regulator_common_set_enable
80830df0 t gpio_regulator_set_enable
80830e08 t gpio_regulator_get_enable
80830e1c t gpio_regulator_set_value
80830e6c t gpio_regulator_get_value
80830ea8 t gpio_regulator_ofdata_to_platdata
80830f2c t _serial_putc
80830f4e t __serial_getc
80830f68 t __serial_tstc
80830f78 t serial_stub_putc
80830f7e t serial_stub_getc
80830f84 t serial_stub_tstc
80830f8a t serial_pre_remove
80830f90 t serial_post_probe
80831004 t serial_stub_puts
8083101a T serial_putc
8083102c T serial_puts
8083104a T serial_getc
8083105a T serial_tstc
8083106a T serial_setbrg
80831088 T serial_init
8083116c T serial_initialize
80831170 t on_baudrate
8083120c T serial_stdio_init
8083120e t ns16550_serial_getinfo
80831234 T ns16550_serial_ofdata_to_platdata
808312e8 t ns16550_writeb.isra.0
80831300 t ns16550_serial_setconfig
8083133c t ns16550_readb.isra.0
80831350 t NS16550_setbrg
80831392 t ns16550_serial_setbrg
808313b0 t ns16550_serial_pending
808313d8 t ns16550_serial_putc
80831402 t ns16550_serial_getc
80831428 T NS16550_init
80831486 T ns16550_serial_probe
808314d8 t omap_serial_ofdata_to_platdata
80831554 t spi_child_pre_probe
80831578 t spi_post_probe
80831598 T dm_spi_claim_bus
8083166c T dm_spi_release_bus
8083167a T dm_spi_xfer
808316a4 T spi_claim_bus
808316aa T spi_release_bus
808316b0 T spi_xfer
808316b6 T spi_chip_select
808316c8 T spi_find_chip_select
8083173c T spi_find_bus_and_cs
8083176c T spi_get_bus_and_cs
80831870 T spi_slave_ofdata_to_platdata
8083197c t spi_child_post_bind
8083199a t cadence_spi_set_mode
808319ca t cadence_spi_write_speed
80831a08 t cadence_spi_phy_check_pattern
80831a74 t cadence_spi_phy_apply_setting
80831a90 t cadence_spi_find_rx_high
80831acc t cadence_spi_find_tx_high
80831b08 t cadence_spi_mem_exec_op
80831b8c t cadence_spi_mem_supports_op
80831bc2 t cadence_spi_remove
80831bd4 t cadence_spi_probe
80831c4c t cadence_spi_ofdata_to_platdata
80831df4 t cadence_spi_read_id.constprop.0
80831e30 t cadence_spi_set_speed
80831f80 t cadence_spi_find_tx_low.constprop.0
80831fbc t cadence_spi_find_rx_low.constprop.0
80831ff8 t cadence_spi_mem_do_calibration
80832500 t cadence_qspi_calc_rdreg
80832518 t cadence_qspi_set_protocol
8083257c t cadence_qspi_wait_idle
808325c4 t cadence_qspi_apb_exec_flash_cmd
80832620 t cadence_qspi_enable_dtr
80832672 T cadence_qspi_apb_set_tx_dll
80832694 T cadence_qspi_apb_set_rx_dll
808326b4 T cadence_qspi_apb_controller_enable
808326c6 T cadence_qspi_apb_controller_disable
808326d8 T cadence_qspi_apb_dac_mode_enable
808326ea T cadence_qspi_apb_readdata_capture
80832728 T cadence_qspi_apb_config_baudrate_div
80832762 T cadence_qspi_apb_set_clk_mode
80832794 T cadence_qspi_apb_chipselect
808327d8 T cadence_qspi_apb_delay
80832854 T cadence_qspi_apb_controller_init
808328ac T cadence_qspi_apb_command_read_setup
808328e0 T cadence_qspi_apb_command_read
8083299c T cadence_qspi_apb_command_write_setup
808329a0 T cadence_qspi_apb_command_write
80832a3c T cadence_qspi_apb_read_setup
80832adc T cadence_qspi_apb_read_execute
80832d90 T cadence_qspi_apb_write_setup
80832e30 T cadence_qspi_apb_write_execute
80832fb0 t spi_check_buswidth_req.isra.0
80833000 t spi_mem_check_buswidth
80833054 T spi_mem_dtr_supports_op
80833062 T spi_mem_default_supports_op
80833088 T spi_mem_supports_op
808330b0 T spi_mem_exec_op
808331e4 T spi_mem_adjust_op_size
80833244 T spi_mem_do_calibration
80833264 t cdns3_idle_role_start
80833268 t cdns3_idle_role_stop
8083326c t cdns3_role_stop
808332a8 t cdns3_role_start
808332f0 t cdns3_host_remove
8083330a t cdns3_gadget_remove
80833320 T cdns3_hw_role_switch
808333f0 t cdns3_probe
80833540 t cdns3_gadget_probe
80833552 t cdns3_host_probe
8083356c T cdns3_bind
808335d4 T cdns3_set_mode
80833648 T cdns3_get_id
80833656 T cdns3_get_vbus
80833664 T cdns3_is_host
8083367c T cdns3_is_device
8083369c T cdns3_drd_switch_host
80833744 T cdns3_drd_switch_gadget
808337f0 T cdns3_drd_update_mode
80833844 T cdns3_drd_init
808338e4 T cdns3_drd_exit
808338e8 t cdns3_disconnect_gadget
808338f6 t cdns3_gadget_get_frame
80833900 t cdns3_gadget_set_selfpowered
80833916 t cdns3_gadget_pullup
80833934 T cdns3_gadget_ep_free_request
80833946 t cdns3_ep_stall_flush
8083398c t cdns3_gadget_udc_set_speed
808339e4 T cdns3_gadget_ep_alloc_request
808339f8 t cdns3_gadget_match_ep
80833ac0 t cdns3_free_all_eps
80833af0 t __cdns3_gadget_init
80833da0 T cdns3_set_register_bit
80833db0 T cdns3_ep_addr_to_index
80833dc0 T cdns3_next_request
80833dce T cdns3_next_align_buf
80833ddc T cdns3_gadget_exit
80833e48 T cdns3_next_priv_request
80833e56 t cdns3_wa2_descmiss_copy_data
80833ed2 T cdns3_select_ep
80833ee8 t cdns3_gadget_udc_stop
80833f7e T cdns3_ring_size
80833f96 T cdns3_allocate_trb_pool
80833fec t cdns3_gadget_ep_enable
808341b4 T cdns3_hw_reset_eps_config
808341e2 t cdns3_gadget_suspend
80834218 T cdns3_move_deq_to_next_trb
80834276 T cdns3_allow_enable_l1
80834292 T cdns3_get_speed
808342c0 T cdns3_wa1_restore_cycle_bit
808342f4 T cdns3_configure_dmult
80834390 t cdns3_gadget_config
80834418 t cdns3_gadget_resume
80834428 t cdns3_gadget_udc_start
80834438 T cdns3_ep_config
808345b0 T __cdns3_gadget_ep_set_halt
808345d2 T __cdns3_gadget_wakeup
808345f0 T cdns3_ep_run_transfer
80834874 t cdns3_start_all_request.isra.0
808348c2 T cdns3_wa2_gadget_giveback
80834924 T cdns3_gadget_giveback
808349b4 T cdns3_wa2_gadget_ep_queue
80834a54 T cdns3_gadget_ep_dequeue
80834b14 t cdns3_gadget_ep_disable
80834c4c T cdns3_set_hw_configuration
80834cc8 t __cdns3_gadget_ep_queue.isra.0
80834e20 t cdns3_gadget_ep_queue
80834e70 t cdns3_transfer_completed
80834f46 T cdns3_rearm_transfer
80834f6a T __cdns3_gadget_ep_clear_halt
80834fc4 T cdns3_gadget_ep_set_halt
80834ffe t cdns3_gadget_wakeup
80835004 T cdns3_gadget_init
8083504c T dm_usb_gadget_handle_interrupts
808353f0 t cdns3_ep0_delegate_req
80835416 t __pending_setup_status_handler
8083543e t cdns3_gadget_ep0_enable
80835444 t cdns3_gadget_ep0_disable
8083544a t cdns3_gadget_ep0_set_halt
8083544e t cdns3_ep0_run_transfer
808354cc T cdns3_gadget_ep_set_wedge
808354e2 t cdns3_ep0_complete_setup
80835552 t cdns3_req_ep0_handle_feature
8083567c t cdns3_gadget_ep0_queue
808357a4 T cdns3_check_ep0_interrupt_proceed
80835ae0 T cdns3_ep0_config
80835b94 T cdns3_init_ep0
80835bec t cdns3_host_exit
80835c02 t __cdns3_host_init
80835c24 T cdns3_host_init
80835c5c t cdns_ti_remove
80835c7c t cdns_ti_probe
80835dd4 T usb_get_dr_mode
80835e14 T usb_get_maximum_speed
80835e54 T usb_ep_autoconfig
80835f74 T usb_ep_autoconfig_reset
80835f9c T usb_descriptor_fillbuf
80835fd4 T usb_gadget_get_string
808360ba t count_configs
80836102 t collect_langs
80836134 t composite_setup_complete
80836138 t composite_suspend
80836178 t composite_resume
808361b8 t g_dnl_unbind
808361ca t lookup_string
808361f4 t composite_unbind
808362a4 t composite_bind
80836350 t g_dnl_do_config
80836378 t reset_config.isra.0
808363a8 t composite_disconnect
808363d0 t composite_setup
808369c8 T usb_add_function
80836a3c T usb_interface_id
80836a5a T usb_add_config
80836ad6 T usb_string_id
80836af0 T usb_composite_register
80836b2c T usb_composite_unregister
80836b4c T g_dnl_set_serialnumber
80836b70 t on_serialno
80836b7c W g_dnl_bind_fixup
80836b80 W g_dnl_get_board_bcd_device_number
80836b84 t g_dnl_bind
80836c74 W g_dnl_board_usb_cable_connected
80836c7c T g_dnl_detach
80836c88 T g_dnl_trigger_detach
80836c94 T g_dnl_clear_detach
80836ca0 T g_dnl_register
80836ccc T g_dnl_unregister
80836cd8 t dfu_set_alt
80836ce8 t __dfu_get_alt
80836cee t dfu_disable
80836cfc T dfu_add
80836d94 t dfu_handle
80836e14 t dnload_request_flush
80836e2c t dnload_request_complete
80836e50 t dfu_unbind
80836ea4 t dfu_bind
80837000 t handle_upload.isra.0
8083701c t handle_getstatus
808370bc t state_dfu_error
808370f4 t state_dfu_manifest_sync
80837134 t state_dfu_dnload_idle
808371a0 t state_dfu_dnbusy
808371b8 t state_dfu_dnload_sync
808371e0 t state_app_detach
80837208 t state_app_idle
8083724c t state_dfu_upload_idle
808372ac t state_dfu_manifest
808372f0 t state_dfu_idle
80837374 t raise_exception
8083738e t ep0_queue
808373a4 t bulk_in_complete
808373c6 t bulk_out_complete
808373e8 t fsg_set_alt
808373fa t fsg_disable
80837408 t fsg_setup
808374a4 t fsg_unbind
808374d2 t store_cdrom_address
8083750c t fsg_set_halt.isra.0
80837514 t start_transfer.isra.0
80837534 t halt_bulk_in_endpoint.isra.0
80837554 t sleep_thread.isra.0
808375f0 t do_read
80837770 t send_status
80837824 t do_write
80837a70 t check_command.isra.0
80837b78 t do_mode_sense.isra.0
80837c64 T fsg_add
80837e80 t do_set_interface
8083800c T fsg_main_thread
80838dbc T usb_copy_descriptors
80838e08 t fsg_bind
80838e9c T fsg_init
80838eb8 t usb_gadget_remove_driver
80838ee6 t usb_udc_release
80838eec T usb_gadget_map_request
80838f1e T usb_gadget_unmap_request
80838f36 T usb_gadget_giveback_request
80838f3a T usb_gadget_set_state
80838f3e T usb_gadget_udc_reset
80838f4c T usb_add_gadget_udc_release
80838f90 T usb_add_gadget_udc
80838f98 T usb_del_gadget_udc
80838fe4 T usb_gadget_probe_driver
80839090 T usb_gadget_register_driver
80839094 T usb_gadget_unregister_driver
808390d8 T usb_gadget_initialize
80839134 T usb_gadget_release
8083915c T usb_gadget_handle_interrupts
80839174 t usb_match_device
808391f0 t usb_child_post_bind
80839240 t usb_match_one_id_intf.isra.0
80839290 t remove_inactive_children.isra.0
808392d6 T usb_lock_async
808392ec T usb_disable_asynch
80839300 T submit_int_msg
8083932e T submit_control_msg
8083937c T submit_bulk_msg
808393a0 T usb_alloc_device
808393b4 T usb_reset_root_port
808393ca T usb_update_hub_device
808393e0 T usb_get_max_xfer_size
808393f4 T usb_stop
80839458 T usb_get_bus
80839470 T usb_scan_device
80839688 t usb_scan_bus.isra.0
808396d4 T usb_init
808397e0 T usb_child_pre_probe
80839826 t xhci_microframes_to_exponent
8083986a t xhci_get_max_xfer_size
80839874 t handshake
808398d8 t xhci_reset
80839954 t xhci_submit_bulk_msg
8083997c t xhci_get_ep_index
80839998 t xhci_submit_int_msg
808399c0 T xhci_get_ctrl
808399e0 t xhci_configure_endpoints
80839a8c t xhci_update_hub_device
80839b78 t xhci_alloc_device
80839c04 t xhci_submit_control_msg
8083a38c T xhci_check_maxpacket
8083a400 T xhci_register
8083a580 T xhci_deregister
8083a5c0 t xhci_ring_free
8083a620 T xhci_flush_cache
8083a65c t xhci_malloc
8083a6a8 t xhci_segment_alloc
8083a6ec t xhci_alloc_container_ctx.isra.0
8083a764 T xhci_inval_cache
8083a7a0 T xhci_cleanup
8083a878 T xhci_ring_alloc
8083a94c T xhci_alloc_virt_device
8083a9ec T xhci_mem_init
8083ac14 T xhci_get_input_control_ctx
8083ac44 T xhci_get_slot_ctx
8083ac64 T xhci_get_ep_ctx
8083ac8a T xhci_endpoint_copy
8083acbc T xhci_slot_copy
8083ace4 T xhci_setup_addressable_virt_dev
8083aeb0 t xhci_td_remainder
8083af02 t giveback_first_trb
8083af44 t record_transfer_result
8083afb4 t queue_trb
8083b07c t prepare_ring
8083b140 T xhci_queue_command
8083b1c4 T xhci_acknowledge_event
8083b244 T xhci_wait_for_event
8083b2f8 t abort_td
8083b3e0 T xhci_bulk_tx
8083b60c T xhci_ctrl_tx
8083b874 T env_get_yesno
8083b89e T env_get_default
8083b8c8 T env_set_default
8083b938 T env_set_default_vars
8083b968 T env_relocate
8083b978 T env_complete
8083ba88 W env_get_location
8083ba94 t env_driver_lookup
8083bac4 W env_get_char_spec
8083bacc T env_get_char
8083bae0 T env_load
8083bb48 T env_init
8083bbb4 t regex_callback
8083bc8c T env_attr_walk
8083bd40 T env_attr_lookup
8083bd8c t skip_num
8083bdc8 t clear_flags
8083bdd0 t on_flags
8083be08 T env_flags_parse_vartype
8083be38 T env_flags_parse_varaccess
8083be68 t set_flags
8083becc T eth_validate_ethaddr_str
8083bf20 T env_flags_init
8083bfb0 T env_flags_validate
8083c138 t clear_callback
8083c140 t find_env_callback
8083c178 t on_callbacks
8083c1b0 t set_callback
8083c204 T env_callback_init
8083c280 t env_nowhere_init
8083c294 t env_nowhere_load
8083c2a8 t fs_probe_unsupported
8083c2bc t fs_ls_unsupported
8083c2c2 t fs_exists_unsupported
8083c2c6 t fs_size_unsupported
8083c2cc t fs_read_unsupported
8083c2d2 t fs_close_unsupported
8083c2d4 t fs_opendir_unsupported
8083c2dc t fs_get_info
8083c2f4 t fs_write_unsupported
8083c2fa t fs_mkdir_unsupported
8083c300 t fs_ln_unsupported
8083c306 t fs_uuid_unsupported
8083c30c t fs_unlink_unsupported
8083c314 T fs_get_type
8083c320 T fs_set_blk_dev
8083c394 T fs_set_blk_dev_with_part
8083c3fc T fs_close
8083c414 T fs_ls
8083c434 T fs_exists
8083c454 T fs_size
8083c478 T fs_read
8083c4b8 T fs_write
8083c518 T fs_opendir
8083c568 T fs_readdir
8083c5a4 T fs_closedir
8083c5d0 t fs_ls_generic
8083c65c T fs_unlink
8083c67c T fs_mkdir
8083c69c T do_size
8083c6dc T do_load
8083c924 T do_ls
8083c964 T file_exists
8083c980 T do_save
8083ca7c T do_rm
8083caa8 T do_mkdir
8083cadc t downcase
8083cb04 t mkcksum
8083cb3a t fat_itr_child
8083cb78 t disk_read
8083cba8 t get_cluster
8083cc90 t read_bootsectandvi
8083cd4c t fat_itr_root
8083ce70 t split_filename
8083cef8 t disk_write
8083cf48 t flush_dirty_fat_buffer
8083cfa0 t get_fatent
8083d098 t next_dent
8083d154 t set_fatent_value
8083d2be t determine_fatent
8083d2e4 t clear_fatent
8083d338 t set_sectors.isra.0
8083d424 t normalize_longname
8083d47c t set_name
8083d550 t fat_itr_next
8083d6d4 t fat_itr_resolve
8083d7c8 t flush_dir
8083d804 t new_dir_table
8083d884 t fill_dir_slot
8083d9ee t find_directory_entry
8083da4c t set_contents
8083e1e4 T fat_set_blk_dev
8083e270 T file_fat_detectfs
8083e344 T fat_exists
8083e384 T fat_size
8083e3fc T file_fat_read_at
8083e6f8 T fat_read_file
8083e728 T fat_opendir
8083e786 T fat_readdir
8083e7da T fat_closedir
8083e7f0 T fat_close
8083e7f4 T file_fat_write_at
8083e9c4 T file_fat_write
8083e9e0 T fat_unlink
8083ebb0 T fat_mkdir
8083ee2c t efi_uc_destroy
8083ee3c t efi_uc_init
8083ee4c t check_node_type
8083eea0 t efi_uc_start
8083ef2c t efi_uc_supported
8083efb0 t disconnect_child
8083eff4 t efi_uc_stop
8083f0bc T efi_driver_init
8083f178 t efi_bl_write
8083f1b2 t efi_bl_read
8083f1ec t efi_bl_bind
8083f2b0 t get_var.constprop.0
8083f304 T efi_set_load_options
8083f380 T efi_deserialize_load_option
8083f414 t try_load_entry
8083f574 T efi_bootmgr_load
8083f64c t efi_is_event
8083f670 T __efi_entry_check
8083f6a0 T __efi_exit_check
8083f6c8 t efi_process_event_queue
8083f724 t efi_queue_event
8083f77c t efi_set_mem
8083f798 t efi_copy_mem
8083f7b4 t efi_calculate_crc32
8083f7e4 t efi_set_watchdog_timer
8083f7fc t efi_get_next_monotonic_count
8083f830 t efi_register_protocol_notify
8083f890 t efi_close_event
8083f940 t efi_free_pool_ext
8083f958 t efi_allocate_pool_ext
8083f974 t efi_get_memory_map_ext
8083f99a t efi_free_pages_ext
8083f9b6 t efi_allocate_pages_ext
8083f9d8 t efi_raise_tpl
8083f9fc T efi_save_gd
8083fa08 T efi_restore_gd
8083fa20 T is_valid_tpl
8083fa44 T efi_signal_event
8083faac t efi_exit_boot_services
8083fb9c t efi_signal_event_ext
8083fbc8 T efi_add_handle
8083fbe4 T efi_create_handle
8083fc04 T efi_create_event
8083fcc0 T efi_create_event_ex
8083fd04 t efi_create_event_ext
8083fd30 T efi_timer_check
8083fda0 t efi_stall
8083fddc t efi_check_event
8083fe34 t efi_wait_for_event
8083fed0 t efi_restore_tpl
8083fef4 T efi_set_timer
8083ff90 t efi_set_timer_ext
8083ffb0 T efi_search_obj
8083ffcc T efi_search_protocol
80840010 T efi_remove_protocol
80840048 t efi_locate_protocol
808400ec t efi_open_protocol_information
80840178 t efi_locate_handle
80840258 T efi_locate_handle_buffer
808402d8 t efi_locate_device_path
8084039c t efi_locate_handle_ext
808403c4 T efi_remove_all_protocols
808403fc T efi_delete_handle
80840420 T efi_close_protocol
808404a4 t efi_delete_image
80840530 t efi_open_protocol
808406d4 t efi_disconnect_controller
80840868 t efi_disconnect_all_drivers
8084095c T efi_handle_protocol
8084097c t efi_bind_controller
808409f0 t efi_exit
80840ab8 t efi_uninstall_protocol
80840b3c t efi_uninstall_protocol_interface
80840b78 T efi_start_image
80840c5c T efi_unload_image
80840cdc t efi_protocols_per_handle
80840d54 t efi_connect_controller
80840e78 T efi_add_protocol
80840f40 t efi_install_protocol_interface
80840f84 T efi_install_multiple_protocol_interfaces
80841044 t efi_uninstall_multiple_protocol_interfaces
808410d4 t efi_reinstall_protocol_interface
8084111c T efi_install_configuration_table
80841218 t efi_install_configuration_table_ext
80841230 T efi_setup_loaded_image
808412ec T efi_load_image
808414cc T efi_initialize_system_table
8084151c t efi_cout_enable_cursor
80841548 t efi_cout_set_cursor_position
808415ac t efi_cout_clear_screen
808415d0 t efi_cout_set_attribute
8084161c t efi_cout_test_string
8084162c t efi_cout_reset
80841660 t efi_cin_set_state
80841674 t efi_cout_output_string
80841754 t efi_cin_unregister_key_notify
8084179c t efi_cin_empty_buffer
808417b4 t efi_cin_reset
808417d4 t efi_cin_reset_ex
808417f4 t efi_cin_register_key_notify
80841850 t term_get_char
8084187c t efi_cout_set_mode
808418c8 t efi_cout_query_mode
80841918 T set_shift_mask
80841958 t analyze_modifiers.constprop.0
808419b0 t efi_cin_check
80841c40 t efi_cin_read_key_stroke
80841c98 t efi_console_timer_notify
80841cac t efi_cin_read_key_stroke_ex
80841d44 t efi_key_notify
80841d58 T efi_console_register
80841f4c t dp_size
80841f9c t dp_alloc
80841fc0 t dp_part_size
80841fee t dp_part_node
80842120 t dp_fill
80842264 t dp_part_fill
8084229a T efi_dp_next
808422ba T efi_dp_match
808422fc T efi_dp_last_node
80842318 T efi_dp_instance_size
80842340 t find_obj
808423d4 T efi_dp_find_obj
80842400 T efi_dp_size
80842420 T efi_dp_dup
80842448 T efi_dp_append
8084249c T efi_dp_append_node
80842524 T efi_dp_create_device_node
80842548 T efi_dp_append_instance
808425ac T efi_dp_get_next_instance
80842604 T efi_dp_is_multi_instance
80842624 T efi_dp_from_part
80842650 T efi_dp_part_node
80842674 T efi_dp_from_file
80842714 T efi_dp_from_eth
80842748 T efi_dp_from_mem
80842814 T efi_dp_split_file_path
80842874 T efi_dp_from_name
80842924 T efi_dp_check_length
8084295c t dp_unknown
80842974 t efi_convert_single_device_node_to_text
80842df0 t efi_str_to_u16
80842e24 t efi_convert_device_path_to_text
80842e70 t efi_convert_device_node_to_text
80842e9a T efi_dp_str
80842eb6 t create_device_node
80842ed6 t is_device_path_multi_instance
80842eee t get_next_device_path_instance
80842f0a t append_device_path_instance
80842f26 t append_device_node
80842f42 t append_device_path
80842f5e t duplicate_device_path
80842f76 t get_device_path_size
80842f90 t efi_file_open_ex
80842f98 t efi_file_read_ex
80842fa0 t efi_file_flush
80842fb0 t efi_file_getpos
80842fd8 t set_blk_dev.isra.0
80842fe0 t file_open
808431f8 t efi_open_volume
80843224 t efi_file_open
80843298 t efi_file_write
80843328 t efi_file_delete
8084335c t efi_get_file_size
80843380 t efi_file_getinfo
808434e0 t efi_file_setpos
80843538 t efi_file_read
808436b4 t efi_file_write_ex
808436bc t efi_file_flush_ex
808436c4 t efi_file_close
808436e0 t efi_file_setinfo
808437cc T efi_file_from_path
80843894 T efi_simple_file_system
808438c4 t efi_hii_packagelist_exists
808438e0 t efi_hii_package_len
808438f0 t get_package_list_handle
80843934 t unregister_package_notify
80843948 t register_package_notify
8084397c t export_package_lists
808439a4 t list_package_lists
80843a3c t find_keyboard_layouts
80843ab8 t get_keyboard_layout
80843b48 t remove_guid_package
80843b6c t free_keyboard_layouts
80843b9c t remove_keyboard_package
80843bc8 t add_packages
80843e20 t language_match
80843e50 t get_secondary_languages
80843eac t get_string
80843f38 t get_languages
80843fdc t set_string
8084409c t new_string
80844154 t remove_strings_package
8084419e t free_packagelist
808441cc t remove_package_list
808441f8 t new_package_list
80844274 t set_keyboard_layout
80844288 t update_package_list
8084434c t get_alt_config
80844360 t config_to_block
80844374 t block_to_config
80844388 t route_config
8084439c t export_config
808443b0 t extract_config
808443c4 t efi_set_code_and_data_type
80844400 T efi_print_image_infos
80844494 T efi_load_pe
80844720 t efi_mem_cmp
80844740 t efi_check_allocated
808447ac t efi_find_free_memory
8084484c t efi_add_memory_map_pg
80844b5c T efi_add_memory_map
80844b94 T efi_allocate_pages
80844c28 T efi_alloc
80844c60 T efi_free_pages
80844cc4 T efi_allocate_pool
80844d28 T efi_free_pool
80844dc4 T efi_get_memory_map
80844e54 T efi_add_conventional_memory_map
80844f04 W efi_add_known_memory
80844f64 T efi_memory_init
80844fd0 T efi_root_node_register
8084509c t efi_reset_system_boottime
808450e4 t efi_set_time_boottime
808450f8 t efi_get_time_boottime
8084510c T efi_init_runtime_supported
80845140 W efi_reset_system_init
80845144 t efi_set_virtual_address_map
808452c4 T efi_init_obj_list
808453e8 t efi_str_to_fat
80845460 t efi_fat_to_str
8084549c t efi_str_upr
808454bc t efi_stri_coll
808454fa t efi_str_lwr
8084551a t next_lower
80845528 t metai_match
808455d8 t efi_metai_match
808455f4 T efi_get_variable
8084562c T efi_set_variable
80845668 T efi_get_next_variable_name
80845688 T efi_query_variable_info
808456ac T efi_init_secure_state
808457b4 T efi_auth_var_get_type
808457fc t efi_var_mem_notify_exit_boot_services
80845848 T efi_var_mem_init
808458c8 t efi_set_blk_dev_to_system_partition
80845918 T efi_var_collect
80845a34 T efi_var_to_file
80845a98 T efi_var_restore
80845b54 T efi_var_from_file
80845be0 T efi_set_variable_int
80845d14 T efi_query_variable_info_int
80845d3c T efi_variables_boot_exit_notify
80845d68 T efi_init_variables
80845d80 t efi_watchdog_timer_notify
80845db4 T efi_set_watchdog
80845dd8 T efi_watchdog_register
80845e34 t efi_disk_flush_blocks
80845e42 t efi_disk_reset
80845e50 t efi_disk_add_dev.isra.0.part.0
80845fc4 t efi_disk_read_blocks
80846074 t efi_disk_write_blocks
80846130 T efi_fs_from_path
80846178 T efi_disk_create_partitions
8084620c T efi_disk_register
808462bc t efi_pxe_base_code_start
808462c4 t efi_pxe_base_code_stop
808462cc t efi_pxe_base_code_discover
808462d4 t efi_pxe_base_code_mtftp
808462dc t efi_pxe_base_code_udp_write
808462e4 t efi_pxe_base_code_udp_read
808462ec t efi_pxe_base_code_set_ip_filter
808462f4 t efi_pxe_base_code_arp
808462fc t efi_pxe_base_code_set_parameters
80846304 t efi_pxe_base_code_set_packets
8084630c t efi_net_push
80846368 t efi_network_timer_notify
808463bc t efi_net_nvdata
808463d0 t efi_net_statistics
808463e4 t efi_net_station_address
808463f8 t efi_net_receive_filters
8084640c t efi_net_start
80846448 t efi_net_get_status
808464a0 t efi_net_receive
808465e0 t efi_net_transmit
808466b8 t efi_net_mcastiptomac
80846728 t efi_net_shutdown
80846778 t efi_net_stop
808467b4 t efi_net_initialize
80846824 t efi_net_reset
80846870 t efi_pxe_base_code_set_station_ip
80846878 t efi_pxe_base_code_dhcp
80846880 T efi_net_set_dhcp_ack
808468b4 T efi_net_register
80846b7c T efi_smbios_register
80846bc0 T fdt_ro_probe_
80846c14 T fdt_header_size_
80846c2e T fdt_header_size
80846c38 T fdt_check_header
80846cd0 T fdt_offset_ptr
80846d10 T fdt_next_tag
80846dd0 T fdt_check_node_offset_
80846df4 T fdt_check_prop_offset_
80846e18 T fdt_next_node
80846e86 T fdt_first_subnode
80846eac T fdt_next_subnode
80846ed6 T fdt_find_string_
80846f06 T fdt_move
80846f32 t fdt_mem_rsv
80846f4e t nextprop_
80846f80 t fdt_get_property_by_offset_
80846fb0 T fdt_get_string
80847048 T fdt_string
8084704e T fdt_get_mem_rsv
8084708c T fdt_num_mem_rsv
808470b6 T fdt_get_name
80847110 T fdt_subnode_offset_namelen
80847192 T fdt_subnode_offset
808471b0 T fdt_first_property_offset
808471c8 T fdt_next_property_offset
808471e0 t fdt_get_property_namelen_
80847256 T fdt_get_property_namelen
80847280 T fdt_get_property
808472a2 T fdt_getprop_namelen
808472d8 T fdt_getprop_by_offset
80847334 T fdt_getprop
80847358 T fdt_get_phandle
80847398 T fdt_find_max_phandle
808473d8 T fdt_get_alias_namelen
80847404 T fdt_path_offset_namelen
8084749a T fdt_path_offset
808474b4 T fdt_get_path
80847572 T fdt_supernode_atdepth_offset
808475de T fdt_node_depth
808475fc T fdt_parent_offset
8084761c T fdt_node_offset_by_prop_value
80847674 T fdt_node_offset_by_phandle
808476b6 T fdt_stringlist_contains
808476fc T fdt_stringlist_count
80847734 T fdt_stringlist_search
8084779a T fdt_stringlist_get
808477fc T fdt_node_check_compatible
80847824 T fdt_node_offset_by_compatible
80847864 T fdt_setprop_inplace_namelen_partial
80847894 T fdt_setprop_inplace
808478de T fdt_node_end_offset_
80847904 T fdt_strerror
80847940 t fdt_blocks_misordered_
80847976 t fdt_rw_probe_
808479b0 t fdt_splice_
808479fa t fdt_splice_mem_rsv_
80847a28 t fdt_splice_struct_
80847a4e t fdt_packblocks_
80847aaa t fdt_add_property_
80847b88 T fdt_add_mem_rsv
80847bde T fdt_del_mem_rsv
80847c1a T fdt_setprop_placeholder
80847c88 T fdt_setprop
80847cae T fdt_delprop
80847cec T fdt_add_subnode_namelen
80847d84 T fdt_add_subnode
80847da2 T fdt_del_node
80847dd4 T fdt_open_into
80847eb8 T fdt_pack
80847eec t fdt_cells
80847f18 T fdt_address_cells
80847f34 T fdt_size_cells
80847f4c t overlay_phandle_add_offset
80847f98 t overlay_adjust_node_phandles
80847ff4 t overlay_update_local_node_references
808480f0 t overlay_get_target
8084816c t overlay_apply_node
8084821c T fdt_overlay_apply
80848658 t get_code
808486d2 t read_string
808486ea t read_console
808486f8 T console_read_unicode
80848718 T utf8_get
80848724 T utf8_put
808487b4 T utf8_utf16_strnlen
808487e6 T utf16_get
80848842 T utf16_put
8084888e T utf8_utf16_strncpy
808488cc T utf16_strnlen
808488f2 T utf16_utf8_strnlen
80848934 T utf16_utf8_strncpy
80848974 T utf_to_lower
808489a0 T utf_to_upper
808489cc T u16_strncmp
808489ee T u16_strlen
80848a02 T u16_strdup
80848a2a T utf16_to_utf8
80848b00 T crc16_ccitt
80848b24 T crc16_ccitt_wd_buf
80848b48 T fdtdec_get_int
80848b64 t smbios_write_type127
80848b90 t smbios_write_type32
80848bbc t smbios_string_table_len
80848bd8 t smbios_add_string
80848c20 t smbios_write_type0
80848cb0 t smbios_add_prop
80848ccc t smbios_write_type3
80848d24 t smbios_write_type2
80848d94 t smbios_write_type1
80848e5c t smbios_write_type4
80848edc T write_smbios_table
80848fc4 T string_to_ip
8084900c T string_to_enetaddr
8084903e T compute_ip_checksum
80849086 T ip_checksum_ok
8084909a t merge
808490d0 T list_sort
808491bc t MD5Transform
8084985c t MD5Update
808498ee t MD5Final
80849958 T md5_wd
8084999c t sha1_process
8084a8f4 t sha1_update.part.0
8084a978 T sha1_starts
8084a9ac T sha1_update
8084a9b4 T sha1_finish
8084aa54 T sha1_csum_wd
8084aa78 t sha256_process
8084c6ec t sha256_update.part.0
8084c770 T sha256_starts
8084c7c0 T sha256_update
8084c7c8 T sha256_finish
8084c8a0 T sha256_csum_wd
8084c8c4 T zcalloc
8084c8cc T zcfree
8084c8d4 T inflate_fast
8084cc84 T inflate_table
8084cfa4 T inflateReset
8084cfe4 T inflateInit2_
8084d07c T inflateEnd
8084d0aa T adler32
8084d2d8 T inflate
8084e00c T gzalloc
8084e01a T gzfree
8084e020 T gzip_parse_header
8084e090 T zunzip
8084e138 T gunzip
8084e164 t get_prop_check_min_len
8084e18c T fdtdec_get_is_enabled
8084e1b4 T fdtdec_get_alias_seq
8084e260 T fdtdec_get_alias_highest_id
8084e2d8 T fdtdec_get_chosen_prop
8084e2fc T fdtdec_prepare_fdt
8084e32c T fdtdec_get_int_array
8084e362 T fdtdec_get_bool
8084e376 T fdtdec_parse_phandle_with_args
8084e440 T fdtdec_locate_byte_array
8084e458 T fdtdec_get_config_int
8084e480 T fdtdec_get_config_string
8084e4ac T fdtdec_get_number
8084e4c6 T fdtdec_get_addr_size_fixed
8084e532 T fdtdec_get_addr_size_auto_parent
8084e578 T fdtdec_get_addr_size_auto_noparent
8084e5ac T fdt_get_resource
8084e640 T fdtdec_setup_mem_size_base
8084e67c T get_next_memory_node
8084e6a8 T fdtdec_setup_memory_banksize
8084e718 T fdtdec_setup_mem_size_base_lowest
8084e78c W board_fdt_blob_setup
8084e794 W fdtdec_board_setup
8084e798 T fdtdec_setup
8084e7cc T qsort
8084e856 T strcmp_compar
8084e85e t cmpkey
8084e86a t _hdelete.isra.0
8084e898 t drop_var_from_set.part.0
8084e8c8 t match_string
8084e924 t match_entry
8084e9a0 T hcreate_r
8084e9fc T hdestroy_r
8084ea40 T hmatch_r
8084eaa0 T hsearch_r
8084ed60 T hdelete_r
8084edf4 T hexport_r
8084ef7c T himport_r
8084f1e8 T hwalk_r
8084f218 T display_options_get_banner_priv
8084f280 T display_options_get_banner
8084f28c T display_options
8084f2b0 T print_size
8084f3c4 T print_buffer
8084f4e4 T crc32_wd
8084f4e8 T crc32_wd_buf
8084f50a W __div64_32
8084f598 T hang
8084f5b0 T kmalloc
8084f5d8 T skip_spaces
8084f5f0 T strim
8084f624 t lmb_overlaps_region
8084f650 t lmb_add_region
8084f750 T lmb_dump_all_force
8084f80c T lmb_dump_all
8084f80e T lmb_add
8084f812 T lmb_free
8084f89a T lmb_reserve
8084f8a0 T __lmb_alloc_base
8084f928 T lmb_alloc_base
8084f948 T lmb_alloc
8084f94e T lmb_alloc_addr
8084f98e T lmb_get_free_size
8084f9d6 W board_lmb_reserve
8084f9d8 T lmb_init_and_reserve
8084fa1c T lmb_init_and_reserve_range
8084fa4c t emit
8084fa6c t store_char_in_data
8084fa90 t get_escape_char
8084fae4 t relocate
8084fb10 t match
8084fd78 t loop_greedy
8084fdce t loop_non_greedy
8084fe20 t quantifier
8084fe7c t fixup_branch
8084fea4 t compile
808500e4 T slre_compile
80850170 T slre_match
808501cc T strncasecmp
80850214 T strcasecmp
8085021c T strcpy
8085022c T strncpy
80850244 T strcat
80850262 T strncat
8085028a T strcmp
808502a0 T strncmp
808502c2 T strchr
808502dc T strlen
808502ec T strlcpy
8085031a T strrchr
8085033a T strnlen
80850354 T strdup
80850376 T strpbrk
80850398 T strsep
808503b4 T memmove
808503da T memcmp
808503f6 T strstr
80850436 T memchr
80850452 T get_tbclk
8085046e t tick_to_time
808504b4 T get_ticks
808504f0 W timer_init
808504f4 W get_timer
80850504 W timer_get_us
80850520 T usec_to_tick
80850588 W __udelay
808505b8 T udelay
808505d8 T uuid_str_valid
80850624 T uuid_str_to_bin
80850750 T uuid_bin_to_str
808507d4 T gen_rand_uuid
80850830 T gen_rand_uuid_str
8085084c T rand_r
80850860 T rand
8085086c T srand
80850878 t panic_finish
80850898 T panic_str
808508a2 T panic
808508b8 T __assert_fail
808508c8 t put_dec_trunc
80850960 t put_dec
80850a90 t number
80850cb4 t string16
80850d50 t string
80850df0 t vsnprintf_internal
80851374 T vscnprintf
8085138a T snprintf
808513a4 T vsprintf
808513b0 T sprintf
808513ca T printf
808513fe T vprintf
80851424 T simple_itoa
80851450 T str2off
80851474 t _parse_integer_fixup_radix
808514d0 T simple_strtoul
80851520 T strict_strtoul
80851562 T simple_strtol
8085157c T ustrtoul
808515c8 T simple_strtoull
8085163c T ustrtoull
8085169c T trailing_strtoln
808516e4 T trailing_strtol
808516ea T load_elf64_image_phdr
80851762 T load_elf64_image_shdr
808517e8 T load_elf_image_phdr
8085184a T load_elf_image_shdr
808518b0 T valid_elf_image
808518e0 T arp_init
80851918 T arp_raw_request
808519ac T arp_request
80851a00 T arp_timeout_check
80851a58 T arp_receive
80851bd8 T arp_is_waiting
80851be8 t dhcp_extended
80851d58 t dhcp_process_options
80851f14 t dhcp_packet_process_options
80851f70 t dhcp_handler
80852214 T bootp_reset
80852240 T bootp_request
80852428 t bootp_timeout_handler
80852480 T dhcp_request
80852484 t eth_get_uclass_priv
808524a0 t eth_write_hwaddr
8085251c t on_ethaddr
80852568 t eth_post_probe
808526ac t eth_post_bind
808526cc T eth_set_current_to_next
808526f0 T eth_get_dev
80852724 T eth_set_dev
80852748 t eth_pre_unbind
80852760 T eth_get_dev_by_name
808527ec T eth_get_ethaddr
808527fe T eth_halt_state_only
80852814 T eth_get_dev_index
8085282c T eth_init
808528c0 T eth_is_active
808528e0 T eth_halt
80852904 t eth_pre_remove
80852928 T eth_send
8085295a T eth_rx
808529c0 T eth_initialize
80852a8c T eth_env_get_enetaddr_by_index
80852ab8 T eth_env_set_enetaddr_by_index
80852ae4 T eth_common_init
80852af8 T eth_mac_skip
80852b24 T eth_get_name
80852b3c T eth_current_changed
80852b98 T eth_try_another
80852bec T eth_set_current
80852c44 t net_clear_handlers
80852c68 t start_again_timeout_handler
80852c74 t dummy_handler
80852c78 t on_ipaddr
80852c90 t on_gatewayip
80852ca8 t on_netmask
80852cc0 t on_serverip
80852cd8 t net_init_loop
80852cfc T net_init
80852d4c T net_start_again
80852e38 T net_set_udp_handler
80852e50 T net_get_arp_handler
80852e5c T net_set_timeout_handler
80852e90 T net_get_async_tx_pkt_buf
80852eac T net_process_received_packet
808530bc T net_eth_hdr_size
808530ec T net_set_ether
80853158 T net_update_ether
808531b0 T net_set_ip_header
80853230 T net_set_udp_header
80853288 T net_send_ip_packet
80853348 T net_send_udp_packet
80853364 T copy_filename
80853394 T is_serverip_in_cmd
808533ac t net_check_prereq
80853440 T net_auto_load
808534a8 T net_loop
80853650 T net_parse_bootfile
808536a0 T ip_to_string
808536c8 T string_to_vlan
808536f0 t on_nvlan
80853708 t on_vlan
80853720 t rpc_lookup_reply
80853788 t nfs_mount_reply
808537e8 t nfs_umountall_reply
80853840 t nfs_lookup_reply
808538f8 t nfs_readlink_reply
808539b4 t basename
808539d4 t nfs_read_reply
80853ad4 t rpc_req
80853b98 t nfs_read_req
80853c3c t nfs_readlink_req
80853cc0 t nfs_mount_req
80853d48 t nfs_umountall_req
80853d9c t nfs_lookup_req
80853ea8 t nfs_send
80853f7c t nfs_handler
808540f8 t nfs_timeout_handler
80854144 T nfs_start
808542ac t tftp_send
80854434 t tftp_handler
808547b4 t tftp_timeout_handler
80854818 T tftp_start
80854ad0 R efi_block_io_guid
80854ae0 r efi_file_handle_protocol
80854b20 R efi_file_info_guid
80854b30 R efi_file_system_info_guid
80854b40 R efi_global_variable_guid
80854b50 R efi_guid_device_path
80854b60 R efi_guid_device_path_to_text_protocol
80854b70 R efi_guid_device_path_utilities_protocol
80854b80 R efi_guid_driver_binding_protocol
80854b90 R efi_guid_event_group_exit_boot_services
80854ba0 R efi_guid_event_group_memory_map_change
80854bb0 R efi_guid_event_group_reset_system
80854bc0 R efi_guid_fdt
80854bd0 R efi_guid_hii_config_routing_protocol
80854be0 R efi_guid_hii_database_protocol
80854bf0 R efi_guid_hii_string_protocol
80854c00 R efi_guid_image_security_database
80854c10 R efi_guid_loaded_image
80854c20 R efi_guid_loaded_image_device_path
80854c30 R efi_guid_text_input_ex_protocol
80854c40 R efi_guid_text_input_protocol
80854c50 R efi_guid_text_output_protocol
80854c60 R efi_guid_unicode_collation_protocol2
80854c70 r efi_net_guid
80854c80 r efi_pxe_base_code_protocol_guid
80854c90 r efi_rt_properties_table_guid
80854ca0 R efi_simple_file_system_protocol_guid
80854cb0 R efi_system_volume_label_id
80854cc0 R efi_u_boot_guid
80854cd0 r onfi_sdr_timings
80855120 r partition_basic_data_guid
80855130 r smbios_guid
80855140 r system_guid
80855238 r CSWTCH.200
808552ac r CSWTCH.32
808552cc r CSWTCH.32
808552ec r CSWTCH.45
80855300 r CSWTCH.58
80855314 r CSWTCH.79
80855320 r am654_desc
80855330 R am654_drv_data
80855338 r am654_sdhci_ids
80855370 R am654_sdhci_ops
808553a4 R am654_sdhci_soc_attr
808553c4 R am654_sr1_drv_data
808553cc r am65_cpsw_nuss_ids
808553ec r am65_cpsw_ops
8085540c r am6x_valid_threads
80855448 r boot_os
808554bc r cadence_spi_ids
808554d4 r cadence_spi_mem_ops
808554e4 r cadence_spi_ops
80855508 R cdns3_gadget_ep0_ops
80855530 r cdns3_gadget_ep_ops
80855558 r cdns3_gadget_ops
80855584 r cdns3_ids
80855594 r cdns_ti_of_match
808555a4 r cdns_ti_rate_table
808555d8 r clk_fixed_factor_match
808555e8 R clk_fixed_factor_ops
80855608 r clk_fixed_rate_match
80855618 R clk_fixed_rate_ops
80855638 R clk_fixed_rate_raw_ops
80855658 r color
80855698 r ctlintmap
808558fc r davinci_gpio_ids
8085591c r dfu_state
80855948 r driver_ops
80855954 r efi_blk_ops
80855964 R efi_device_path_to_text
8085596c R efi_device_path_utilities
8085598c R efi_hii_config_routing
808559a4 R efi_hii_database
808559d0 R efi_hii_string
808559e4 R efi_unicode_collation_protocol2
80855a00 r env_flags_varaccess_mask
80855a10 r ext_csd_bus_width
80855a4c r fbase
80855a5c r fdt_errtable
80855aa8 r fdt_member_table
80855ad0 R force32bit_soc_attr
80855af0 r freqs.8636
80855b24 r generic_chip_i2c_ids
80855b34 r generic_simple_bus_ids
80855b4c r generic_syscon_ids
80855b5c r gpio_davinci_ops
80855b84 r gpio_regulator_ids
80855b94 r gpio_regulator_ops
80855bc4 r gpmc_dt_ids
80855bfc r gpmc_nand_ids
80855c14 r hub_id_table
80855c44 r hwcaps_pp2cmd.9516
80855c84 r hwcaps_read2cmd.9512
80855d04 r if_type_uclass_id
80855d3c r if_typename_str
80855d74 r init_sequence_f
80855e34 R j721e_4bit_drv_data
80855e3c R j721e_4bit_sdhci_ops
80855e70 R j721e_8bit_drv_data
80855e78 r j721e_rev_string_map
80855e80 r j721s2_data
80855e84 r k3_arm64_ids
80855e9c r k3_arm64_ops
80855ec8 r k3_data
80855ecc r k3_ddrss_ids
80855eec r k3_esm_ids
80855efc r k3_msmc_ids
80855f0c r k3_sec_proxy_ids
80855f1c r k3_sysctrler_am654_desc
80855f28 r k3_sysctrler_ids
80855f38 r k3_sysctrler_ops
80855f64 r knav_ringacc_ids
80855f74 r machines
80855f84 r mass_storage_id_table
80855fb4 r mmc_blk_ops
80855fc4 r mmc_modes_by_pref
80855fe4 r mmc_versions.9019
80856008 r mmr_names
80856024 r name_type
80856054 r names.8631
80856088 r ns16550_serial_ids
808560b8 R ns16550_serial_ops
808560d8 r omap_i2c_ids
808560f0 r omap_i2c_ops
80856108 r omap_serial_ids
80856148 r omap_timer_ids
80856168 r omap_timer_ops
8085616c R op_adv
8085626c r op_table
808562d4 r pca953x_ids
808563a4 r pca953x_ops
808563cc r phy_interface_strings
80856430 r range_names
80856444 r sd_au_size.8899
80856484 r sd_modes_by_pref
80856494 r sdhci_am64_4bit_drvdata
8085649c r sdhci_am64_8bit_drvdata
808564a4 R sdhci_ops
808564cc r sfdp_bfpt_erases
808564ec r sfdp_bfpt_reads
8085657c r single_pinctrl_match
8085658c R single_pinctrl_ops
808565e0 r smbios_write_funcs
80856618 r soc_ti_k3_ids
80856628 r soc_ti_k3_ops
80856634 r speed_names
80856650 r spi_flash_std_ids
80856660 r spi_flash_std_ops
8085666c R spi_nor_ids
80856ca8 r td
80856d38 r ti_sci_clk_of_match
80856d48 r ti_sci_ids
80856d60 r ti_sci_pmmc_am654_desc
80856d70 r ti_sci_pmmc_k2g_desc
80856d80 r ti_sci_power_domain_of_match
80856d90 r ti_sci_reset_of_match
80856da0 r ti_sci_sysreset_of_match
80856db0 r typical_rev_string_map
80856dbc r udma_ids
80856df4 r udma_ops
80856e1c r uimage_arch
80856f60 r uimage_comp
80856fc0 r uimage_os
80857068 r uimage_type
80857248 r usb_dr_modes
80857258 r usb_hub_ids
80857268 r usb_mass_storage_ids
80857278 r usb_storage_ops
80857288 r CSWTCH.38
8085729a r codepage
8085739a r crc16_tab
8085759a r dbase.6155
808575da r dext.6156
8085761a r distfix
808577a0 r lbase.6153
808577de r lenfix
80857fde r lext.6154
8085801c r order.6249
80858119 r CSWTCH.26
8085811c r CSWTCH.37
80858121 r CSWTCH.66
80858137 r CSWTCH.80
8085813a r END
8085813e r ROOT
80858152 r __FUNCTION__.7450
80858169 r __FUNCTION__.7623
80858267 r __func__.10092
80858276 r __func__.10238
80858285 r __func__.10431
8085829c r __func__.10472
808582b4 r __func__.10553
808582c3 r __func__.10570
808582d1 r __func__.10639
808582df r __func__.10640
808582f2 r __func__.10824
808582fe r __func__.10859
80858308 r __func__.10882
80858311 r __func__.10887
8085831d r __func__.10891
8085832d r __func__.10916
80858342 r __func__.10930
8085835a r __func__.10951
8085836e r __func__.11031
8085837f r __func__.11103
8085838b r __func__.11179
8085839a r __func__.11449
808583af r __func__.6979
808583bd r __func__.7304
808583ce r __func__.7326
808583e6 r __func__.7361
808583f2 r __func__.7372
80858401 r __func__.7373
80858413 r __func__.7384
80858426 r __func__.7446
80858432 r __func__.7464
80858445 r __func__.7514
80858452 r __func__.7524
80858461 r __func__.7533
80858478 r __func__.7538
80858485 r __func__.7563
8085849b r __func__.7583
808584b6 r __func__.7596
808584c8 r __func__.7612
808584e3 r __func__.7630
8085850b r __func__.7644
8085851d r __func__.7659
80858530 r __func__.7670
8085853e r __func__.7692
80858551 r __func__.7751
80858569 r __func__.7759
80858580 r __func__.7771
80858598 r __func__.7811
808585a9 r __func__.7825
808585b0 r __func__.7836
808585c4 r __func__.7853
808585d8 r __func__.7857
808585ed r __func__.7866
80858601 r __func__.7873
80858615 r __func__.7881
8085862b r __func__.7905
8085863d r __func__.7917
80858650 r __func__.8162
80858664 r __func__.8171
80858678 r __func__.8179
8085868c r __func__.8200
8085869b r __func__.8219
808586ab r __func__.8237
808586c1 r __func__.8238
808586da r __func__.8245
808586f3 r __func__.8253
8085870b r __func__.8261
80858723 r __func__.8275
80858734 r __func__.8310
8085874b r __func__.8317
80858762 r __func__.8323
80858770 r __func__.8343
80858788 r __func__.8353
8085879f r __func__.8363
808587b4 r __func__.8394
808587cd r __func__.8510
808587da r __func__.8516
808587eb r __func__.8520
80858803 r __func__.8524
8085881b r __func__.8528
80858828 r __func__.8532
8085883c r __func__.8536
80858850 r __func__.8646
8085885b r __func__.8719
8085886c r __func__.8743
80858878 r __func__.8750
8085888a r __func__.8783
8085889e r __func__.8789
808588af r __func__.8806
808588c2 r __func__.8820
808588d1 r __func__.8820
808588e1 r __func__.8834
808588ee r __func__.8885
808588f9 r __func__.8897
8085890c r __func__.8913
8085891c r __func__.8929
80858930 r __func__.8940
80858939 r __func__.8948
80858943 r __func__.8950
80858955 r __func__.8950
8085896c r __func__.8968
80858979 r __func__.9000
80858986 r __func__.9031
80858993 r __func__.9113
808589a9 r __func__.9127
808589be r __func__.9189
808589ce r __func__.9297
808589e0 r __func__.9307
808589f2 r __func__.9341
80858a04 r __func__.9372
80858a15 r __func__.9377
80858a26 r __func__.9386
80858a35 r __func__.9421
80858a41 r __func__.9436
80858a54 r __func__.9443
80858a64 r __func__.9463
80858a7a r __func__.9474
80858a93 r __func__.9506
80858aae r __func__.9518
80858ac9 r __func__.9544
80858ae2 r __func__.9550
80858b02 r __func__.9593
80858b16 r __func__.9607
80858b29 r __func__.9634
80858b37 r __func__.9702
80858b48 r __func__.9709
80858b58 r __func__.9803
80858b6f r __func__.9812
80858b7a r __func__.9817
80858b95 r __func__.9843
80858bb1 r __func__.9946
80858bc5 r __func__.9949
80858bd2 r __func__.9951
80858bea r __func__.9959
80858cb0 R _ctype
8085a99b R default_environment
8085c207 r dfu_func
8085c2ca r dfu_name
8085c4da r digits.10693
8085c4ea r dirletter.9156
8085f6de r env_flags_varaccess_rep
8085f6e3 r env_flags_vartype_rep
8085f7c2 r erase_seq
80860797 r fsg_string_interface
8086136e R hex_asc
8086149b r illegal
8086292d r manufacturer
808630bf r multipliers
808630cf r names.6187
8086310d r nand_ecc_precalc_table
80863459 R net_bcast_ethaddr
80863521 R net_null_ethaddr
80863f12 r phy_tuning_pattern
8086436a r product
808643f2 r reg_map_ip_v1
80864403 r reg_map_ip_v2
80864974 r sha1_padding
80864ce7 r spi_nor_3to4_erase.8934
80864ced r spi_nor_3to4_program.8930
80864cf7 r spi_nor_3to4_read.8926
8086a372 r tab_seq
8086adf9 r us_direction
8086b9c6 r vendor_id.9007
8086b9ef V version_string
8086c008 d bootm_help_text
8086c4dc d cmd_bootm_sub
8086c5d8 d source_help_text
8086c684 d cmd_blkc_sub
8086c6bc d bootefi_help_text
8086c847 d fdt_help_text
8086ceec d root.7492
8086ceee d tabs.7581
8086cf10 d do_echo
8086cf14 d dp_last_length
8086cf18 d cmd_mmc
8086d04c d curr_device
8086d050 d pinmux_subcmd
8086d0a4 d cmd_remoteproc_sub
8086d184 d usb_stor_curr_dev
8086d188 d imgextract_help_text
8086d23c d cmd_env_sub
8086d354 d env_help_text
8086d5d0 d env_id
8086d5d4 d hash_algo
8086d644 d reserved_list
8086d6c8 d init_sequence_r
8086d740 d of_busses
8086d758 d usb_scan_list
8086d760 d hist_cur
8086d764 d av_
8086db6c d sbrk_base
8086db70 d trim_threshold
8086db74 D image_load_addr
8086db78 D stdio_names
8086db84 d ti_sci_clk_ops
8086dba4 d root_info
8086dbac D dfu_list
8086dbb4 d ti_sci_sysreset_ops
8086dbc0 d ti_sci_list
8086dbc8 D nand_curr_device
8086dbcc d bbt_main_descr
8086dbf0 d bbt_main_no_oob_descr
8086dc14 d bbt_mirror_descr
8086dc38 d bbt_mirror_no_oob_descr
8086dc5c d bbt_pattern
8086dc60 d mirror_pattern
8086dc64 d scan_ff_pattern
8086dc68 D nand_flash_ids
8086ea00 d nand_oob_128
8086f5a8 d nand_oob_16
80870150 d nand_oob_64
80870cf8 d nand_oob_8
808718a0 d mt35xu512aba_fixups
808718ac d s28hs512t_fixups
808718b8 d k3_ddrss_ops
808718bc d driver.4218
80871944 D k3_sec_proxy_mbox_ops
80871958 d _stats
8087196c d block_cache
80871974 d cmd_timeout.8805
80871978 d gpmc_cs_num
8087197c d ti_sci_reset_ops
80871994 d k3_dmaring_fwd_ring_ops
808719a4 d k3_dmaring_reverse_ring_ops
808719b4 d k3_nav_mode_ring_ops
808719c4 d k3_nav_ringacc_data
808719c8 d k3_nav_ringacc_list
808719d0 d am64_bcdma_data
80871a0c d am64_pktdma_data
80871a48 d am654_main_data
80871a8c d am654_mcu_data
80871ad0 d j721e_main_data
80871b18 d j721e_mcu_data
80871b5c d am64_dst_ep_map
80871f04 D am64_ep_map
80871f18 d am64_src_ep_map
80872500 d genphy_driver
80872540 d phy_drivers
80872548 d DP83867_driver
80872588 d ti_sci_power_domain_ops
8087259c d cdns3_gadget_ep0_desc
808725a8 d composite_driver
808725cc d device_desc
808725e0 d g_dnl_composite_strings
808725e8 d g_dnl_driver
80872608 d g_dnl_string_defs
80872628 d g_dnl_string_tab
80872630 d dfu_generic_strings
80872638 d dfu_intf_runtime
80872644 d dfu_runtime_descs
8087264c d dfu_strings
80872654 d strings_dfu_generic
80872664 d stringtab_dfu
8087266c d stringtab_dfu_generic
80872674 d fsg_fs_bulk_in_desc
8087267d d fsg_fs_bulk_out_desc
80872688 d fsg_fs_function
80872698 d fsg_hs_bulk_in_desc
808726a1 d fsg_hs_bulk_out_desc
808726ac d fsg_hs_function
808726bc d fsg_intf_desc
808726c8 d fsg_strings
808726d8 d fsg_strings_array
808726e0 d fsg_stringtab
808726e8 d udc_list
808726f0 d descriptor
80872730 D xhci_usb_ops
8087275c D env_htab
8087276c d first_call
80872770 d first_call
80872774 d fstypes
80872800 d efi_boot_services
808728c8 D efi_event_queue
808728d0 D efi_obj_list
808728d8 D efi_register_notify_events
808728e0 d efi_tpl
808728e4 d entry_count
808728e8 d timers_enabled
808728ec d cin_notify_functions
808728f4 D efi_con_in
80872900 d efi_con_in_ex
80872918 d efi_con_mode
80872930 D efi_con_out
80872958 d efi_cout_modes
8087297c d efi_keyboard_layout_list
80872984 d efi_package_lists
8087298c D efi_mem
80872994 d lastoff.11448
80872998 D efi_obj_list_initialized
8087299c d capitalization_table
8087386c d sha256_padding
808738ac d y
808738b0 d first_call.8696
808738b4 D net_native_vlan
808738b6 D net_our_vlan
808738b8 d nfs_offset
808738bc d supported_nfs_versions
808738be d tftp_block_size
808738c0 d tftp_block_size_option
808738c4 D tftp_timeout_count_max
808738c8 d tftp_window_size_option
808738cc d timeout_count_max
808738d0 d timeout_ms
808738e0 D _u_boot_list_2_cmd_2_askenv
808738e0 d start.6026
808738e0 d start.6030
808738e0 d start.6531
808738e0 d start.6535
808738e0 d start.6590
808738e0 d start.6593
808738fc D _u_boot_list_2_cmd_2_base
80873918 D _u_boot_list_2_cmd_2_bdinfo
80873934 D _u_boot_list_2_cmd_2_blkcache
80873950 D _u_boot_list_2_cmd_2_boot
8087396c D _u_boot_list_2_cmd_2_bootd
80873988 D _u_boot_list_2_cmd_2_bootefi
808739a4 D _u_boot_list_2_cmd_2_bootelf
808739c0 D _u_boot_list_2_cmd_2_bootm
808739dc D _u_boot_list_2_cmd_2_bootp
808739f8 D _u_boot_list_2_cmd_2_bootvx
80873a14 D _u_boot_list_2_cmd_2_cmp
80873a30 D _u_boot_list_2_cmd_2_coninfo
80873a4c D _u_boot_list_2_cmd_2_cp
80873a68 D _u_boot_list_2_cmd_2_crc32
80873a84 D _u_boot_list_2_cmd_2_dfu
80873aa0 D _u_boot_list_2_cmd_2_dhcp
80873abc D _u_boot_list_2_cmd_2_echo
80873ad8 D _u_boot_list_2_cmd_2_editenv
80873af4 D _u_boot_list_2_cmd_2_env
80873b10 D _u_boot_list_2_cmd_2_erase
80873b2c D _u_boot_list_2_cmd_2_exit
80873b48 D _u_boot_list_2_cmd_2_false
80873b64 D _u_boot_list_2_cmd_2_fatinfo
80873b80 D _u_boot_list_2_cmd_2_fatload
80873b9c D _u_boot_list_2_cmd_2_fatls
80873bb8 D _u_boot_list_2_cmd_2_fatmkdir
80873bd4 D _u_boot_list_2_cmd_2_fatrm
80873bf0 D _u_boot_list_2_cmd_2_fatsize
80873c0c D _u_boot_list_2_cmd_2_fatwrite
80873c28 D _u_boot_list_2_cmd_2_fdt
80873c44 D _u_boot_list_2_cmd_2_flinfo
80873c60 D _u_boot_list_2_cmd_2_go
80873c7c D _u_boot_list_2_cmd_2_gpt
80873c98 D _u_boot_list_2_cmd_2_help
80873cb4 D _u_boot_list_2_cmd_2_iminfo
80873cd0 D _u_boot_list_2_cmd_2_imxtract
80873cec D _u_boot_list_2_cmd_2_itest
80873d08 D _u_boot_list_2_cmd_2_loadb
80873d24 D _u_boot_list_2_cmd_2_loads
80873d40 D _u_boot_list_2_cmd_2_loadx
80873d5c D _u_boot_list_2_cmd_2_loady
80873d78 D _u_boot_list_2_cmd_2_loop
80873d94 D _u_boot_list_2_cmd_2_md
80873db0 D _u_boot_list_2_cmd_2_mm
80873dcc D _u_boot_list_2_cmd_2_mmc
80873de8 D _u_boot_list_2_cmd_2_mmcinfo
80873e04 D _u_boot_list_2_cmd_2_mw
80873e20 D _u_boot_list_2_cmd_2_nfs
80873e3c D _u_boot_list_2_cmd_2_nm
80873e58 D _u_boot_list_2_cmd_2_panic
80873e74 D _u_boot_list_2_cmd_2_pinmux
80873e90 D _u_boot_list_2_cmd_2_printenv
80873eac D _u_boot_list_2_cmd_2_protect
80873ec8 D _u_boot_list_2_cmd_2_question_mark
80873ee4 D _u_boot_list_2_cmd_2_random
80873f00 D _u_boot_list_2_cmd_2_reset
80873f1c D _u_boot_list_2_cmd_2_rproc
80873f38 D _u_boot_list_2_cmd_2_run
80873f54 D _u_boot_list_2_cmd_2_setenv
80873f70 D _u_boot_list_2_cmd_2_sf
80873f8c D _u_boot_list_2_cmd_2_showvar
80873fa8 D _u_boot_list_2_cmd_2_sleep
80873fc4 D _u_boot_list_2_cmd_2_source
80873fe0 D _u_boot_list_2_cmd_2_test
80873ffc D _u_boot_list_2_cmd_2_tftpboot
80874018 D _u_boot_list_2_cmd_2_time
80874034 D _u_boot_list_2_cmd_2_true
80874050 D _u_boot_list_2_cmd_2_ums
8087406c D _u_boot_list_2_cmd_2_usb
80874088 D _u_boot_list_2_cmd_2_usbboot
808740a4 D _u_boot_list_2_cmd_2_version
808740c0 D _u_boot_list_2_driver_2_am654_sdhci_drv
808740c0 d end.6033
808740c0 d end.6538
808740c0 d end.6596
808740c0 d start.11132
808740c0 d start.6814
808740c0 d start.6818
808740c0 d start.6918
808740c0 d start.6922
808740c0 d start.7128
808740c0 d start.7132
808740c0 d start.7151
808740c0 d start.7155
808740c0 d start.7345
808740c0 d start.7349
80874104 D _u_boot_list_2_driver_2_am65_cpsw_nuss
80874148 D _u_boot_list_2_driver_2_am65_cpsw_nuss_port
8087418c D _u_boot_list_2_driver_2_cadence_spi
808741d0 D _u_boot_list_2_driver_2_cdns_ti
80874214 D _u_boot_list_2_driver_2_cdns_usb3_host
80874258 D _u_boot_list_2_driver_2_cdns_usb3_peripheral
8087429c D _u_boot_list_2_driver_2_clk_fixed_factor
808742e0 D _u_boot_list_2_driver_2_clk_fixed_rate_raw
80874324 D _u_boot_list_2_driver_2_efi_blk
80874368 D _u_boot_list_2_driver_2_efi_block
808743ac D _u_boot_list_2_driver_2_fixed_clock
808743f0 D _u_boot_list_2_driver_2_generic_syscon
80874434 D _u_boot_list_2_driver_2_gpio_regulator
80874478 D _u_boot_list_2_driver_2_gpmc_nand
808744bc D _u_boot_list_2_driver_2_i2c_generic_chip_drv
80874500 D _u_boot_list_2_driver_2_i2c_omap
80874544 D _u_boot_list_2_driver_2_jedec_spi_nor
80874588 D _u_boot_list_2_driver_2_k3_arm64
808745cc D _u_boot_list_2_driver_2_k3_ddrss
80874610 D _u_boot_list_2_driver_2_k3_esm
80874654 D _u_boot_list_2_driver_2_k3_msmc
80874698 D _u_boot_list_2_driver_2_k3_navss_ringacc
808746dc D _u_boot_list_2_driver_2_k3_sec_proxy
80874720 D _u_boot_list_2_driver_2_k3_sysctrler
80874764 D _u_boot_list_2_driver_2_mmc_blk
808747a8 D _u_boot_list_2_driver_2_ns16550_serial
808747ec D _u_boot_list_2_driver_2_omap_serial
80874830 D _u_boot_list_2_driver_2_omap_timer
80874874 D _u_boot_list_2_driver_2_pca953x
808748b8 D _u_boot_list_2_driver_2_pinconfig_generic
808748fc D _u_boot_list_2_driver_2_root_driver
80874940 D _u_boot_list_2_driver_2_simple_bus
80874984 D _u_boot_list_2_driver_2_single_pinctrl
808749c8 D _u_boot_list_2_driver_2_soc_ti_k3
80874a0c D _u_boot_list_2_driver_2_spi_generic_drv
80874a50 D _u_boot_list_2_driver_2_ti_dm6441_gpio
80874a94 D _u_boot_list_2_driver_2_ti_edma3
80874ad8 D _u_boot_list_2_driver_2_ti_gpmc
80874b1c D _u_boot_list_2_driver_2_ti_sci
80874b60 D _u_boot_list_2_driver_2_ti_sci_clk
80874ba4 D _u_boot_list_2_driver_2_ti_sci_pm_domains
80874be8 D _u_boot_list_2_driver_2_ti_sci_reset
80874c2c D _u_boot_list_2_driver_2_ti_sci_sysreset
80874c70 D _u_boot_list_2_driver_2_usb_dev_generic_drv
80874cb4 D _u_boot_list_2_driver_2_usb_generic_hub
80874cf8 D _u_boot_list_2_driver_2_usb_mass_storage
80874d3c D _u_boot_list_2_driver_2_usb_storage_blk
80874d80 D _u_boot_list_2_env_clbk_2_baudrate
80874d80 d end.11134
80874d80 d end.6821
80874d80 d end.6860
80874d80 d end.6925
80874d80 d end.7135
80874d80 d end.7158
80874d80 d end.7189
80874d80 d end.7352
80874d80 d end.7390
80874d80 d start.6019
80874d80 d start.6026
80874d80 d start.6853
80874d80 d start.6857
80874d80 d start.7182
80874d80 d start.7186
80874d80 d start.7383
80874d80 d start.7387
80874d88 D _u_boot_list_2_env_clbk_2_callbacks
80874d90 D _u_boot_list_2_env_clbk_2_console
80874d98 D _u_boot_list_2_env_clbk_2_ethaddr
80874da0 D _u_boot_list_2_env_clbk_2_flags
80874da8 D _u_boot_list_2_env_clbk_2_gatewayip
80874db0 D _u_boot_list_2_env_clbk_2_ipaddr
80874db8 D _u_boot_list_2_env_clbk_2_loadaddr
80874dc0 D _u_boot_list_2_env_clbk_2_netmask
80874dc8 D _u_boot_list_2_env_clbk_2_nvlan
80874dd0 D _u_boot_list_2_env_clbk_2_serialno
80874dd8 D _u_boot_list_2_env_clbk_2_serverip
80874de0 D _u_boot_list_2_env_clbk_2_vlan
80874de8 D _u_boot_list_2_env_driver_2_nowhere
80874de8 d end.6022
80874de8 d start.6437
80874de8 d start.6445
80874de8 d start.6519
80874de8 d start.6529
80874e00 D _u_boot_list_2_g_dnl_bind_callbacks_2___usb_function_name_usb_dnl_dfu
80874e00 d end.6440
80874e00 d end.6522
80874e00 d end.9629
80874e00 d start.11104
80874e00 d start.9626
80874e00 d start.9634
80874e08 D _u_boot_list_2_g_dnl_bind_callbacks_2___usb_function_name_usb_dnl_ums
80874e10 D _u_boot_list_2_part_driver_2_a_efi
80874e10 d start.7123
80874e10 d start.7127
80874e10 d start.7197
80874e10 d start.7201
80874e28 D _u_boot_list_2_part_driver_2_dos
80874e40 D _u_boot_list_2_uclass_2_blk
80874e40 d end.7130
80874e40 d end.7204
80874e40 d start.6833
80874e40 d start.6837
80874e40 d start.7364
80874e40 d start.7368
80874e8c D _u_boot_list_2_uclass_2_clk
80874ed8 D _u_boot_list_2_uclass_2_dma
80874f24 D _u_boot_list_2_uclass_2_efi
80874f70 D _u_boot_list_2_uclass_2_eth
80874fbc D _u_boot_list_2_uclass_2_firmware
80875008 D _u_boot_list_2_uclass_2_gpio
80875054 D _u_boot_list_2_uclass_2_i2c
808750a0 D _u_boot_list_2_uclass_2_i2c_generic
808750ec D _u_boot_list_2_uclass_2_mailbox
80875138 D _u_boot_list_2_uclass_2_misc
80875184 D _u_boot_list_2_uclass_2_mmc
808751d0 D _u_boot_list_2_uclass_2_mtd
8087521c D _u_boot_list_2_uclass_2_nop
80875268 D _u_boot_list_2_uclass_2_pinconfig
808752b4 D _u_boot_list_2_uclass_2_pinctrl
80875300 D _u_boot_list_2_uclass_2_power_domain
8087534c D _u_boot_list_2_uclass_2_ram
80875398 D _u_boot_list_2_uclass_2_regulator
808753e4 D _u_boot_list_2_uclass_2_reset
80875430 D _u_boot_list_2_uclass_2_root
8087547c D _u_boot_list_2_uclass_2_rproc
808754c8 D _u_boot_list_2_uclass_2_serial
80875514 D _u_boot_list_2_uclass_2_simple_bus
80875560 D _u_boot_list_2_uclass_2_soc
808755ac D _u_boot_list_2_uclass_2_spi
808755f8 D _u_boot_list_2_uclass_2_spi_generic
80875644 D _u_boot_list_2_uclass_2_spi_nor
80875690 D _u_boot_list_2_uclass_2_syscon
808756dc D _u_boot_list_2_uclass_2_sysreset
80875728 D _u_boot_list_2_uclass_2_thermal
80875774 D _u_boot_list_2_uclass_2_timer
808757c0 D _u_boot_list_2_uclass_2_usb
8087580c D _u_boot_list_2_uclass_2_usb_dev_generic
80875858 D _u_boot_list_2_uclass_2_usb_gadget_generic
808758a4 D _u_boot_list_2_uclass_2_usb_hub
808758f0 D _u_boot_list_2_uclass_2_usb_mass_storage
8087593c D _u_boot_list_2_usb_driver_entry_2_usb_generic_hub
8087593c d end.6840
8087593c d end.7371
8087593c d start.8822
8087593c d start.8825
80875944 D _u_boot_list_2_usb_driver_entry_2_usb_mass_storage
8087594c D __efi_runtime_rel_start
8087594c d end.8828
80875a1c ? __bss_base
80875a1c ? __bss_start
80875a1c R __efi_runtime_rel_stop
80875a1c R __image_copy_end
80875a1c R __rel_dyn_start
80875a1c b params
80875a20 b bootefi_device_path
80875a24 b bootefi_image_path
80875a28 b data.7465
80875e28 B working_fdt
80875e2c b a_b
80875e44 b bin_start_address
80875e48 b his_eol
80875e49 b his_pad_char
80875e4c b his_pad_count
80875e50 b his_quote
80875e54 b k_data_escape
80875e58 b k_data_escape_saved
80875e5c b os_data_addr
80875e60 b os_data_addr_saved
80875e64 b os_data_char
80875e68 b os_data_init
80875e6c b os_data_state
80875e70 b os_data_state_saved
80875e74 b send_parms
80875e88 b send_ptr
80875e8c b base_address
80875e90 b dp_last_addr
80875e94 b dp_last_size
80875e98 b mm_last_addr
80875e9c b mm_last_size
80875ea0 b currdev
80875ea4 b flash
80875ea8 b ums
80875eac b ums_count
80875eb0 b buf.6579
80875ed8 b do_repeat
80875edc b flag_repeat
80875ee0 b ifs
80875ee4 b last_return_code
80875ee8 b map
80875fe8 b the_command.6379
808763ec b top_vars
808763f0 b stored_bootdelay
808763f4 B monitor_flash_len
808763f8 B images
8087655c b current_mii
80876560 b mii_devs
80876568 B usb_started
8087656c b running.9021
80876570 b CBWTag
80876580 b usb_ccb
80876680 b usb_max_devs
80876684 B console_buffer
80876a88 b hist_add_idx
80876a8c b hist_lines
8087baa0 b hist_list
8087baf0 b hist_max
8087baf4 b hist_num
8087baf8 b initted.6229
8087bafc b ctrlc_disabled
8087bb00 b ctrlc_was_pressed
8087bb04 b current_mallinfo
8087bb2c b max_sbrked_mem
8087bb30 b max_total_mem
8087bb34 B mem_malloc_brk
8087bb38 B mem_malloc_end
8087bb3c B mem_malloc_start
8087bb40 b top_pad
8087bb44 b devs
8087bb90 B stdio_devices
8087bb9c b env_complete_buf
8087bd9c b tmp_buf
8087c1a0 b xyz
8087c5d4 b name.7316
8087c5fc b alt_num_cnt
8087c600 b dfu_alt_num
8087c604 b dfu_buf
8087c608 b dfu_buf_device_type
8087c60c b dfu_buf_size
8087c610 b dfu_hash_algo
8087c614 b dfu_file_buf
8087c618 b dfu_file_buf_len
8087c620 b dfu_file_buf_offset
8087c628 b mtd_idr
8087c82c b dev_name
8087c834 b nand_info
8087c838 b total_nand_size
8087c83c b cs_next
8087c840 b nand_chip
8087c844 b omap_nand_info
8087c8e4 B elm_cfg
8087c8e8 b initialized.9141
8087c8ec b gpmc_base
8087c8f0 b gpmc_capability
8087c8f4 B gpmc_cfg
8087c8f8 b gpmc_cs
8087c938 b gpmc_l3_clk
8087c93c b gpmc_nr_waitpins
8087c940 B nop_reset_ops
8087c958 b soc_ep_map
8087c95c b epnum
8087c960 b composite
8087c964 b g_dnl_detach_request
8087c965 b g_dnl_serial
8087ca68 B dfu_defer_flush
8087ca6c b controller_index
8087ca70 b state.8913
8087ca74 b the_fsg_common
8087ca78 b ums
8087ca7c b ums_count
8087ca80 b unknown.9169
8087ca90 b dev_array
8087caa0 b asynch_allowed
8087caa4 b flags_list
8087caa8 b callback_list
8087caac b fs_dev_desc
8087cab0 b fs_dev_part
8087cab4 b fs_partition
8087cb2c b fs_type
8087cb30 b cur_dev
8087cb34 b cur_part_info
8087cbac b tmpbuf_cluster.8278
8087cbb0 b total_sector
8087cbb4 b app_gd
8087cbb8 b current_image
8087cbbc b efi_gd
8087cbc0 B efi_st_keep_devices
8087cbc8 b mono.12593
8087cbd0 b ret.12522
8087cbd4 b console_timer_event
8087cbd8 b key_available
8087cbdc b next_key
8087cbe8 B efi_memory_map_key
8087cbec B efi_root
8087cbf0 b efi_secure_boot
8087cbf4 b watchdog_timer_event
8087cbf8 B efi_system_partition
8087cc04 b dhcp_ack
8087cc08 b network_timer_event
8087cc0c b new_tx_packet
8087cc10 b receive_buffer
8087cc14 b receive_lengths
8087cc18 b rx_packet_idx
8087cc1c b rx_packet_num
8087cc20 b transmit_buffer
8087cc24 b wait_for_packet
8087cc28 B errno
8087cc2c b local.10954
8087cc44 B arp_tx_packet
8087cc48 b arp_tx_packet_buf
8087d288 B arp_wait_packet_ethaddr
8087d28c B arp_wait_timer_start
8087d290 B arp_wait_try
8087d294 B arp_wait_tx_packet_size
8087d298 B net_arp_wait_packet_ip
8087d29c b net_arp_wait_reply_ip
8087d2a0 B bootp_ids
8087d2b0 B bootp_num_ids
8087d2b4 B bootp_start
8087d2b8 B bootp_timeout
8087d2bc B bootp_try
8087d2c0 b dhcp_leasetime
8087d2c4 b dhcp_option_overload
8087d2c8 b dhcp_server_ip
8087d2cc b dhcp_state
8087d2d0 B net_hostname
8087d2f0 B net_nis_domain
8087d310 B net_root_path
8087d350 b time_taken_max
8087d354 b eth_errno
8087d358 b act.8341
8087d35c b env_changed_id.8342
8087d360 b first_failed.8336
8087d364 b arp_packet_handler
8087d368 B net_boot_file_expected_size_in_blocks
8087d36c B net_boot_file_name
8087d76c B net_boot_file_name_explicit
8087d770 B net_boot_file_size
8087d774 b net_dev_exists
8087d778 B net_dns_server
8087d77c B net_ethaddr
8087d784 B net_gateway
8087d788 B net_ip
8087d78c b net_ip_id
8087d790 B net_netmask
8087d794 b net_pkt_buf
8087f5d4 B net_restart_wrap
8087f5d8 b net_restarted
8087f5dc B net_rx_packet
8087f5e0 B net_rx_packet_len
8087f5e4 B net_rx_packets
8087f5f4 B net_server_ethaddr
8087f5fc B net_server_ip
8087f600 B net_state
8087f604 b net_try_count
8087f608 B net_tx_packet
8087f60c B push_packet
8087f610 b time_delta
8087f614 b time_handler
8087f618 b time_start
8087f61c b time_start
8087f620 b udp_packet_handler
8087f624 b dirfh
8087f644 b filefh
8087f684 b filefh3_length
8087f688 b fs_mounted
8087f68c b nfs_download_state
8087f690 b nfs_filename
8087f694 b nfs_len
8087f698 b nfs_our_port
8087f69c b nfs_path
8087f6a0 b nfs_path_buff
8087fea0 b nfs_server_ip
8087fea4 b nfs_server_mount_port
8087fea8 b nfs_server_port
8087feac b nfs_state
8087feb0 b nfs_timeout_count
8087feb4 b rpc_id
8087feb8 b default_filename
8087fec8 b tftp_block_wrap
8087fecc b tftp_block_wrap_offset
8087fed0 b tftp_cur_block
8087fed4 b tftp_filename
8087ff54 b tftp_last_nack
8087ff58 b tftp_load_addr
8087ff5c b tftp_load_size
8087ff60 b tftp_next_ack
8087ff64 b tftp_our_port
8087ff68 b tftp_prev_block
8087ff6c b tftp_remote_ip
8087ff70 b tftp_remote_port
8087ff74 b tftp_state
8087ff78 b tftp_windowsize
8087ff7c b timeout_count
8087ff80 ? __bss_end
8087ff80 B __bss_limit
8088400c R __rel_dyn_end
8088400c R _end
8088400c R _image_binary_end
  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值