This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
尊敬的支持部门:
我们在将 Enet 堆栈放入 DDR 存储器时遇到了问题、这存在于我们大部分昂贵的电路板上。
问题是、初始化仅在第3次或第4 次尝试时成功。 我们 在 MSRAM 内部时没有看到这个问题、我们仍然能够通过将一半堆栈放入 MSRAM 来屏蔽它、但使用链接器文件的.text、.rodata 和.data 除外。
我的问题是、是否可以从 DDR 运行 LWIP 和 Enet 完成? 我们认为 DDR 不存在问题、因为它通过了我们的 memtests。
初始化 通常 在使用 HwiP_undefined_handler 时失败、在使用 Hwip_prefeting_abort_handler 和 Hwip_data_abort_handler 时失败。
当我回溯时、它在 CPSW 初始化或 Enet phy 初始化时也同样失败。
我们还怀疑 这是由以太网 phy-s DMA 引起的、因为这些缓冲器也被放入到 DDR 中。 这是原因吗?
您能否就导致此问题的原因提出任何解决方案?
格尔格利
您好!
感谢您的提问。
我将就此进行检查并回来与您联系。
此致
阿什瓦尼
尊敬的 Ashwani:有没有关于此主题的新闻?
尊敬的 Marc:
很抱歉等了很久。
它也应该通过 DDR 工作。
您能帮助我在设置上重现问题并进行最起码的更改吗?
比如说、
您是否可以进入并发送快照导致错误的代码部分?
此致
阿什瓦尼
尊敬的 Ashwani:
由于我们使用不同的 DDR4芯片(专有硬件)、因此复制工作可能会很困难。 我们使用的是 SDK 8.5.0.24与 CCS 12.2.0。
测试用例源自 enet_cpsw_rawhttpserver、但此后发生了大量更改;并添加了额外内容。
由于崩溃只会冻结运行 ENET 的 R5内核、并且这是唯一部分通过 DDR 运行的内核;我们怀疑 DDR4访问是与此相关的。 但是、使用 DDR 作为数据缓冲区(TFTP 的文件缓冲区、FW 升级缓冲区或 DDR 应力测试等)时、我们不会立刻发现问题。
问题:
-审查 DDR 参数和配置(等待我们的应用工程师,详细信息可用),
-在 DDR 中是否允许 DMA (我们是否应该筛选出所有 DMA 数据/代码并放置在 MSRAM 中? 这是一个非常乏味的过程,我们已经尝试过;但这里没有解决方案。
此致、
马克
尊敬的 Ashwani:
现在、我已切换到较新的(8.6.0.45) SDK、有时在初始化之前也会看到问题。 也就是说、代码会在
void MPU_SECTION MpuP_ENABLE (void)
在断言中发挥作用。
这也只出现在使用以太网的内核上。
关于您的问题:
我在使用较新的和较旧的 SDK 时都看到了这两种情况下的问题。
我主要通过顺序写入和读取进行测试、但 没有进行随机读取结束写入。
我不确定链接器文件是否有更改、但我将在下提供相关内容。
我想在坠机后、零件中只有变化。 除此之外、我还需要说明的是、由于我们是在客户电路板上运行的、因此我们拥有不同的 DDR 芯片。 (IS43QR16512A-083TBL)我是否也应该为您提供 DDR config SysConfig?
linker.cmd 内容:
/* This is the stack that is used by code running within main() * In case of NORTOS, * - This means all the code outside of ISR uses this stack * In case of FreeRTOS * - This means all the code until vTaskStartScheduler() is called in main() * uses this stack. * - After vTaskStartScheduler() each task created in FreeRTOS has its own stack */ --stack_size=64000 /* This is the heap size for malloc() API in NORTOS and FreeRTOS * This is also the heap used by pvPortMalloc in FreeRTOS */ --heap_size=128000 -e_vectors /* This is the entry of the application, _vector MUST be plabed starting address 0x0 */ /* This is the size of stack when R5 is in IRQ mode * In NORTOS, * - Here interrupt nesting is enabled * - This is the stack used by ISRs registered as type IRQ * In FreeRTOS, * - Here interrupt nesting is disabled * - This is stack that is used initally when a IRQ is received * - But then the mode is switched to SVC mode and SVC stack is used for all user ISR callbacks * - Hence in FreeRTOS, IRQ stack size is less and SVC stack size is more */ __IRQ_STACK_SIZE = 256; /* This is the size of stack when R5 is in IRQ mode * - In both NORTOS and FreeRTOS nesting is disabled for FIQ */ __FIQ_STACK_SIZE = 256; __SVC_STACK_SIZE = 4096; /* This is the size of stack when R5 is in SVC mode */ __ABORT_STACK_SIZE = 256; /* This is the size of stack when R5 is in ABORT mode */ __UNDEFINED_STACK_SIZE = 256; /* This is the size of stack when R5 is in UNDEF mode */ SECTIONS { /* This has the R5F entry point and vector table, this MUST be at 0x0 */ .vectors:{} palign(8) > R5F_VECS /* This has the R5F boot code until MPU is enabled, this MUST be at a address < 0x80000000 * i.e this cannot be placed in DDR */ GROUP { .text.hwi: palign(8) .text.cache: palign(8) .text.mpu: palign(8) .text.boot: palign(8) .text:abort: palign(8) /* this helps in loading symbols when using XIP mode */ } > MSRAM /* This is rest of code. This can be placed in DDR if DDR is available and needed */ GROUP { .rodata: {} palign(8) /* This is where const's go */ .text: {} palign(8) /* This is where code resides */ } > DDR /* This is rest of initialized data. This can be placed in DDR if DDR is available and needed */ GROUP { .data: {} palign(8) /* This is where initialized globals and static go */ } > DDR /* This is rest of uninitialized data. This can be placed in DDR if DDR is available and needed */ GROUP { .sysmem: {} palign(8) /* This is where the malloc heap goes */ .stack: {} palign(8) /* This is where the main() stack goes */ } > DDR /* This is rest of uninitialized data. This can be placed in DDR if DDR is available and needed */ GROUP { .bss: {} palign(8) /* This is where uninitialized globals go */ RUN_START(__BSS_START) RUN_END(__BSS_END) } > DDR /* This is where the stacks for different R5F modes go */ GROUP { .irqstack: {. = . + __IRQ_STACK_SIZE;} align(8) RUN_START(__IRQ_STACK_START) RUN_END(__IRQ_STACK_END) .fiqstack: {. = . + __FIQ_STACK_SIZE;} align(8) RUN_START(__FIQ_STACK_START) RUN_END(__FIQ_STACK_END) .svcstack: {. = . + __SVC_STACK_SIZE;} align(8) RUN_START(__SVC_STACK_START) RUN_END(__SVC_STACK_END) .abortstack: {. = . + __ABORT_STACK_SIZE;} align(8) RUN_START(__ABORT_STACK_START) RUN_END(__ABORT_STACK_END) .undefinedstack: {. = . + __UNDEFINED_STACK_SIZE;} align(8) RUN_START(__UNDEFINED_STACK_START) RUN_END(__UNDEFINED_STACK_END) } > MSRAM /* Sections needed for C++ projects */ GROUP { .ARM.exidx: {} palign(8) /* Needed for C++ exception handling */ .init_array: {} palign(8) /* Contains function pointers called before main */ .fini_array: {} palign(8) /* Contains function pointers called after main */ } > MSRAM /* buffer for file operations */ .bss.filebuf : {} > FILEBUF /* pecprom shared memory, mirror of the EEPROM content */ .bss.pp_som_shared_mem (NOLOAD) : {} > PP_SOM_SHM_MEM .bss.pp_base_shared_mem (NOLOAD) : {} > PP_BASE_SHM_MEM /* EtherCAT shared memory for mailbox and descriptors */ .bss.ec_pdo_shared_mem (NOLOAD) : {} > EC_PDO_SHM_MEM .bss.ec_sdo_shared_mem (NOLOAD) : {} > EC_SDO_SHM_MEM /* this is used when Debug log's to shared memory are enabled, else this is not used */ .bss.log_shared_mem (NOLOAD) : {} > LOG_SHM_MEM /* this is used only when IPC RPMessage is enabled, else this is not used */ .bss.ipc_vring_mem (NOLOAD) : {} > RTOS_NORTOS_IPC_SHM_MEM /* user IPC Shared memory*/ .bss.ipc_shared_mem1 (NOLOAD) : {} > USER_IPC_SHM_MEM1 .bss.ipc_shared_mem2 (NOLOAD) : {} > USER_IPC_SHM_MEM2 .bss.ipc_shared_mem3 (NOLOAD) : {} > USER_IPC_SHM_MEM3 .bss.ipc_shared_mem4 (NOLOAD) : {} > USER_IPC_SHM_MEM4 /* ethercat eoe shared memory for packet exchange */ .bss.ec_eoe_shm_mem_tx (NOLOAD) : {} > EC_EOE_SHM_MEM_TX .bss.ec_eoe_shm_mem_rx (NOLOAD) : {} > EC_EOE_SHM_MEM_RX /* General purpose non cacheable memory, used in some examples */ .bss.nocache (NOLOAD) : {} > NON_CACHE_MEM .enet_dma_mem { *(*ENET_DMA_DESC_MEMPOOL) *(*ENET_DMA_RING_MEMPOOL) #if (ENET_SYSCFG_PKT_POOL_ENABLE == 1) *(*ENET_DMA_PKT_MEMPOOL) #endif } (NOLOAD) {} ALIGN (128) > DDR .bss:ENET_DMA_OBJ_MEM (NOLOAD) {} ALIGN (128) > MSRAM .bss:ENET_DMA_PKT_INFO_MEMPOOL (NOLOAD) {} ALIGN (128) > MSRAM .bss:ENET_ICSSG_OCMC_MEM (NOLOAD) {} ALIGN (128) > MSRAM //.boot_flash { // ti_board_open_close.o // --library="board.am64x.r5f.ti-arm-clang.debug.lib" // --library="drivers.am64x.r5f.ti-arm-clang.debug.lib" //} > MSRAM } /* NOTE: Below memory is reserved for DMSC usage - During Boot till security handoff is complete 0x701E0000 - 0x701FFFFF (128KB) - After "Security Handoff" is complete (i.e at run time) 0x701F4000 - 0x701FFFFF (48KB) Security handoff is complete when this message is sent to the DMSC, TISCI_MSG_SEC_HANDOVER This should be sent once all cores are loaded and all application specific firewall calls are setup. */ MEMORY { R5F_VECS : ORIGIN = 0x00000000, LENGTH = 0x00000040 R5F_TCMA : ORIGIN = 0x00000040, LENGTH = 0x00007FC0 R5F_TCMB0 : ORIGIN = 0x41010000, LENGTH = 0x00008000 /* memory segment used to hold CPU specific non-cached data, MAKE to add a MPU entry to mark this as non-cached */ NON_CACHE_MEM : ORIGIN = 0x70068000, LENGTH = 0x8000 /* when using multi-core application's i.e more than one R5F/M4F active, make sure * this memory does not overlap with other R5F's */ MSRAM : ORIGIN = 0x700F0000, LENGTH = 0x50000 /* This section can be used to put XIP section of the application in flash, make sure this does not overlap with * other CPUs. Also make sure to add a MPU entry for this section and mark it as cached and code executable */ FLASH : ORIGIN = 0x60180000, LENGTH = 0x80000 /* shared memory segments */ /* On R5F, * - make sure there is a MPU entry which maps below regions as non-cache */ PP_SOM_SHM_MEM : ORIGIN = 0x701C0000, LENGTH = 0x100 PP_BASE_SHM_MEM : ORIGIN = 0x701C0100, LENGTH = 0x100 EC_PDO_SHM_MEM : ORIGIN = 0x701C0200, LENGTH = 0x200 EC_SDO_SHM_MEM : ORIGIN = 0x701C0400, LENGTH = 0xFC00 LOG_SHM_MEM : ORIGIN = 0x701D0000, LENGTH = 0x4000 RTOS_NORTOS_IPC_SHM_MEM : ORIGIN = 0x701D4000, LENGTH = 0xB000 USER_IPC_SHM_MEM1 : ORIGIN = 0x701DF000, LENGTH = 0x100 USER_IPC_SHM_MEM2 : ORIGIN = 0x701DF100, LENGTH = 0x100 USER_IPC_SHM_MEM3 : ORIGIN = 0x701DF200, LENGTH = 0x100 USER_IPC_SHM_MEM4 : ORIGIN = 0x701DF300, LENGTH = 0x100 EC_EOE_SHM_MEM_TX : ORIGIN = 0x701DF400, LENGTH = 0x600 EC_EOE_SHM_MEM_RX : ORIGIN = 0x701DFA00, LENGTH = 0x600 /* Dynamic RAM * - make sure there is a MPU entry which maps below regions as non-cache */ FILEBUF : ORIGIN = 0x80000000, LENGTH = 0x10000000 DDR : ORIGIN = 0x90000000, LENGTH = 0x20000000 }
此致、
格尔格利
感谢更新。
您的定制电路板设置中有多个变量。
您是否可以使用 AM64x-EVM 启动?
此致
阿什瓦尼
我们也在 AM64x-SK-EVM 板上对 其进行了尝试、但在先前的 SDK 版本(8.5)中没有看到此问题。
由于我们进行了一些修改、我还会尝试将其移植回、并让您知道结果。
我可以提到的一点是、MpuP_enable ()问题仅在从 OSPI 引导加载程序启动时发生、但当我从 调试器上载代码时问题不存在。
此致、
格尔格利
我们也在 AM64x-SK-EVM 板上试用了 该软件,但我们在以前的 SDK 版本(8.5)中未发现此问题。
很高兴听到这个消息。
由于我们做了一些修改,我也会尝试将其移植回,并让您知道结果。
期待取得成果。
仅当从 OSPI 引导加载程序启动 MpuP_enable ()问题时才会发生,但当我从 调试器上载代码时该问题不存在。
您能否分享您设置的资源分配架构以供审核?
此致
阿什瓦尼
您是否在指 Debug.map 文件?
此致、
格尔格利
您是否指的是 Debug.map 文件?
它也会有所帮助。
但我希望全面了解资源分配、正如我们已经看到的、如果一个资源多次初始化、还会导致核心崩溃或挂起。
此致
阿什瓦尼
我不能完整地确定 如何向您发送所请求的资源分配、但我可以向您发送 debug.map 并告知您初始化时出现错误。
不能确定它在 init 停止的位置,有时它在 Ethernet init 中,最近甚至不在 main 函数中,但 MPU_Init ()。 现在有一个示例 whitch 在 I2C_open ()的地址转换处停止。 请注意、这并非在所有电路板上都发生、但我们解决了 DDR 通信问题。
debug.map 文件内容:
****************************************************************************** TI ARM Clang Linker PC v2.1.3 ****************************************************************************** >> Linked Thu Jul 20 11:52:59 2023 OUTPUT FILE NAME: <TERM.out> ENTRY POINT SYMBOL: "_vectors" address: 00000000 MEMORY CONFIGURATION name origin length used unused attr fill ---------------------- -------- --------- -------- -------- ---- -------- R5F_VECS 00000000 00000040 00000040 00000000 RWIX R5F_TCMA 00000040 00007fc0 00000000 00007fc0 RWIX R5F_TCMB0 41010000 00008000 00000000 00008000 RWIX FLASH 60180000 00080000 00000000 00080000 RWIX NON_CACHE_MEM 70068000 00008000 00000000 00008000 RWIX MSRAM 700f0000 00050000 00008e28 000471d8 RWIX PP_SOM_SHM_MEM 701c0000 00000100 000000bc 00000044 RWIX PP_BASE_SHM_MEM 701c0100 00000100 000000bc 00000044 RWIX EC_PDO_SHM_MEM 701c0200 00000200 00000047 000001b9 RWIX EC_SDO_SHM_MEM 701c0400 0000fc00 00000000 0000fc00 RWIX LOG_SHM_MEM 701d0000 00004000 00000000 00004000 RWIX RTOS_NORTOS_IPC_SHM_M 701d4000 0000b000 00000000 0000b000 RWIX USER_IPC_SHM_MEM1 701df000 00000100 00000038 000000c8 RWIX USER_IPC_SHM_MEM2 701df100 00000100 000000a4 0000005c RWIX USER_IPC_SHM_MEM3 701df200 00000100 00000004 000000fc RWIX USER_IPC_SHM_MEM4 701df300 00000100 00000004 000000fc RWIX EC_EOE_SHM_MEM_TX 701df400 00000600 00000600 00000000 RWIX EC_EOE_SHM_MEM_RX 701dfa00 00000600 00000600 00000000 RWIX FILEBUF 80000000 10000000 10000000 00000000 RWIX DDR 90000000 20000000 0010f460 1fef0ba0 RWIX SEGMENT ALLOCATION MAP run origin load origin length init length attrs members ---------- ----------- ---------- ----------- ----- ------- 00000000 00000000 00000040 00000040 r-x 00000000 00000000 00000040 00000040 r-x .vectors 700f5a90 700f5a90 00001388 00001388 r-x 700f5a90 700f5a90 00000ac0 00000ac0 r-x .text.hwi 700f6550 700f6550 000004a0 000004a0 r-x .text.cache 700f69f0 700f69f0 000002c0 000002c0 r-x .text.mpu 700f6cb0 700f6cb0 00000160 00000160 r-x .text.boot 700f6e10 700f6e10 00000008 00000008 r-x .text:abort 700f7a90 700f7a90 00001400 00000000 r-- 700f7a90 700f7a90 00000100 00000000 r-- .irqstack 700f7b90 700f7b90 00000100 00000000 r-- .fiqstack 700f7c90 700f7c90 00001000 00000000 r-- .svcstack 700f8c90 700f8c90 00000100 00000000 r-- .abortstack 700f8d90 700f8d90 00000100 00000000 r-- .undefinedstack 80000000 80000000 10000000 00000000 rw- 80000000 80000000 10000000 00000000 rw- .bss.filebuf 90000000 90000000 000a3760 000a3760 r-x 90000000 90000000 000244d0 000244d0 r-- .rodata 900244d0 900244d0 0007f290 0007f290 r-x .text 900a3780 900a3780 00065480 00000000 rw- 900a3780 900a3780 00036680 00000000 rw- .bss 900d9e00 900d9e00 0001f400 00000000 rw- .sysmem 900f9200 900f9200 0000fa00 00000000 rw- .stack 90108c00 90108c00 00006880 00006880 rw- 90108c00 90108c00 00006880 00006880 rw- .data SECTION ALLOCATION MAP output attributes/ section page origin length input sections -------- ---- ---------- ---------- ---------------- .vectors 0 00000000 00000040 00000000 00000040 nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_vectors_nortos_asm.obj (.vectors) .text.hwi * 0 700f5a90 00000ac0 700f5a90 000005c6 nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_vim.obj (.text.hwi) 700f6056 00000002 --HOLE-- [fill = 0] 700f6058 00000008 : HwiP_armv7r_vim.obj (.tramp.assembly.1) 700f6060 000003d4 : HwiP_armv7r_handlers_nortos.obj (.text.hwi) 700f6434 000000ac : HwiP_armv7r_handlers_nortos_asm.obj (.text.hwi) 700f64e0 00000070 : HwiP_armv7r_asm.obj (.text.hwi) .text.cache * 0 700f6550 000004a0 700f6550 00000340 nortos.am64x.r5f.ti-arm-clang.debug.lib : CacheP_armv7r_asm.obj (.text.cache) 700f6890 00000158 : CacheP_armv7r.obj (.text.cache) 700f69e8 00000008 --HOLE-- [fill = 0] .text.mpu * 0 700f69f0 000002c0 700f69f0 00000246 nortos.am64x.r5f.ti-arm-clang.debug.lib : MpuP_armv7r.obj (.text.mpu) 700f6c36 00000002 --HOLE-- [fill = 0] 700f6c38 00000078 : MpuP_armv7r_asm.obj (.text.mpu) .text.boot * 0 700f6cb0 00000160 700f6cb0 000000fc nortos.am64x.r5f.ti-arm-clang.debug.lib : boot_armv7r_asm.obj (.text.boot) 700f6dac 00000004 --HOLE-- [fill = 0] 700f6db0 00000024 : DebugP_log.obj (.text.boot) 700f6dd4 00000008 libc.a : exit.c.obj (.tramp.exit.1) 700f6ddc 00000004 --HOLE-- [fill = 0] 700f6de0 0000000c ti_dpl_config.o (.text.boot) 700f6dec 0000000c main.o (.tramp.main.1) 700f6df8 00000008 libc.a : autoinit.c.obj (.tramp.__TI_auto_init_nobinit_nopinit.1) 700f6e00 0000000c nortos.am64x.r5f.ti-arm-clang.debug.lib : boot_armv7r.obj (.tramp._system_pre_init.1) 700f6e0c 00000004 --HOLE-- [fill = 0] .text:abort * 0 700f6e10 00000008 700f6e10 00000008 libc.a : exit.c.obj (.text:abort) .irqstack * 0 700f7a90 00000100 UNINITIALIZED 700f7a90 00000100 --HOLE-- .fiqstack * 0 700f7b90 00000100 UNINITIALIZED 700f7b90 00000100 --HOLE-- .svcstack * 0 700f7c90 00001000 UNINITIALIZED 700f7c90 00001000 --HOLE-- .abortstack * 0 700f8c90 00000100 UNINITIALIZED 700f8c90 00000100 --HOLE-- .undefinedstack * 0 700f8d90 00000100 UNINITIALIZED 700f8d90 00000100 --HOLE-- .bss.pp_som_shared_mem * 0 701c0000 000000bc NOLOAD SECTION 701c0000 000000bc main.o (.bss.pp_som_shared_mem) .bss.pp_base_shared_mem * 0 701c0100 000000bc NOLOAD SECTION 701c0100 000000bc main.o (.bss.pp_base_shared_mem) .bss.ec_pdo_shared_mem * 0 701c0200 00000047 NOLOAD SECTION 701c0200 00000047 main.o (.bss.ec_pdo_shared_mem) .rodata 0 90000000 000244d0 90000000 0000431e fs.o (.rodata.data__tidy_css) 9000431e 00001f2e fs.o (.rodata.data__index_shtml_bak) 9000624c 00001407 fs.o (.rodata.data__pecnv_jpg) 90007653 000013b1 fs.o (.rodata.data__index_shtml) 90008a04 00001302 termcom.o (.rodata.str1.1) 90009d06 000011ac enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_apputils.obj (.rodata.str1.1) 9000aeb2 00001054 : cpsw_macport_ioctl.obj (.rodata.str1.1) 9000bf06 00000f9e : enet_appmemutils.obj (.rodata.str1.1) 9000cea4 00000d43 : cpsw.obj (.rodata.str1.1) 9000dbe7 00000c50 : cpsw_ioctl.obj (.rodata.str1.1) 9000e837 00000ba6 : enet_udma_priv.obj (.rodata.str1.1) 9000f3dd 00000b6b : enet_udma.obj (.rodata.str1.1) 9000ff48 000009ef lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_out.obj (.rodata.str1.1) 90010937 000009dd : tcp.obj (.rodata.str1.1) 90011314 000009ce enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_cpts_ioctl.obj (.rodata.str1.1) 90011ce2 00000851 : enet_rm.obj (.rodata.str1.1) 90012533 00000813 : enetphy.obj (.rodata.str1.1) 90012d46 00000737 : enet.obj (.rodata.str1.1) 9001347d 000006f5 : cpsw_ale_ioctl.obj (.rodata.str1.1) 90013b72 000006a2 : cpsw_ale.obj (.rodata.str1.1) 90014214 00000640 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwiperf.obj (.rodata.lwiperf_txbuf_const) 90014854 0000063e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_macport_est_ioctl.obj (.rodata.str1.1) 90014e92 00000601 httpd_cgi_sii.o (.rodata.str1.1) 90015493 0000059d enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_macport.obj (.rodata.str1.1) 90015a30 00000593 ti_enet_open_close.o (.rodata.str1.1) 90015fc3 0000058a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_ioctl.obj (.rodata.str1.1) 9001654d 00000569 : enet_rm_ioctl.obj (.rodata.str1.1) 90016ab6 00000545 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.rodata.str1.1) 90016ffb 00000521 IPCInterface.o (.rodata.str1.1) 9001751c 0000050e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.rodata.str1.1) 90017a2a 00000507 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : dp83867.obj (.rodata.str1.1) 90017f31 000004e3 : cpsw_hostport_ioctl.obj (.rodata.str1.1) 90018414 0000049c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.rodata.str1.1) 900188b0 00000483 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio.obj (.rodata.str1.1) 90018d33 00000481 : enet_phymdio_dflt.obj (.rodata.str1.1) 900191b4 00000474 : cpsw_stats.obj (.rodata.str1.1) 90019628 00000428 termcom.o (.rodata.TerminalCommandTable) 90019a50 0000041f enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal.obj (.rodata.str1.1) 90019e6f 0000041d : mdio_manual_ioctl.obj (.rodata.str1.1) 9001a28c 00000412 fs.o (.rodata.data__favicon_ico) 9001a69e 00000002 version.o (.rodata.VersionFW) 9001a6a0 00000400 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_crc.obj (.rodata.crc32_table) 9001aaa0 000003f8 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : netif.obj (.rodata.str1.1) 9001ae98 000003f4 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.rodata.str1.1) 9001b28c 000003ec lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : udp.obj (.rodata.str1.1) 9001b678 000003c9 : igmp.obj (.rodata.str1.1) 9001ba41 000003bb enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_hostport.obj (.rodata.str1.1) 9001bdfc 0000037e : cpsw_cpts.obj (.rodata.str1.1) 9001c17a 0000036c lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.rodata.str1.1) 9001c4e6 00000352 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_macport_est.obj (.rodata.str1.1) 9001c838 00000348 httpd.o (.rodata.str1.1) 9001cb80 00000337 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_stats_ioctl.obj (.rodata.str1.1) 9001ceb7 00000337 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : etharp.obj (.rodata.str1.1) 9001d1ee 0000031e fs.o (.rodata.data__404_shtml) 9001d50c 000002df lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_frag.obj (.rodata.str1.1) 9001d7eb 000002d1 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_est_ioctl.obj (.rodata.str1.1) 9001dabc 000002ae lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwiperf.obj (.rodata.str1.1) 9001dd6a 0000028d : altcp_tcp.obj (.rodata.str1.1) 9001dff7 00000001 --HOLE-- [fill = 0] 9001dff8 00000284 httpd_cgi_sii_const.o (.rodata.device_params) 9001e27c 0000027e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_est.obj (.rodata.str1.1) 9001e4fa 00000252 : enet_queue.obj (.rodata.str1.1) 9001e74c 00000238 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.rodata.str1.1) 9001e984 00000220 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : stats.obj (.rodata.str1.1) 9001eba4 00000215 : memp.obj (.rodata.str1.1) 9001edb9 00000001 --HOLE-- [fill = 0] 9001edba 00000200 drivers.am64x.r5f.ti-arm-clang.debug.lib : crc16.obj (.rodata.crc16tab) 9001efba 000001ed lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : custom_pbuf.obj (.rodata.str1.1) 9001f1a7 000001e6 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tftp_server.obj (.rodata.str1.1) 9001f38d 000001d9 flasher.o (.rodata.str1.1) 9001f566 000001d8 ti_enet_lwipif.o (.rodata.str1.1) 9001f73e 000001c5 termserver.o (.rodata.str1.1) 9001f903 00000001 --HOLE-- [fill = 0] 9001f904 000001a4 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_rmcfg.obj (.rodata.gUdmaRmDefBoardCfg_Pktdma) 9001faa8 000001a4 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_ioctlutils.obj (.rodata.str1.1) 9001fc4c 000001a2 drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.rodata.str1.1) 9001fdee 0000019c main.o (.rodata.str1.1) 9001ff8a 0000017d drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.rodata.str1.1) 90020107 0000017c enet_main.o (.rodata.str1.1) 90020283 00000178 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_format.obj (.rodata.str1.1) 900203fb 00000166 ti_drivers_open_close.o (.rodata.str1.1) 90020561 00000161 httpd_cgi_sii_const.o (.rodata.str1.1) 900206c2 0000015e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_utils.obj (.rodata.str1.1) 90020820 0000013a : enet_apputils_k3.obj (.rodata.str1.1) 9002095a 00000139 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.rodata.str1.1) 90020a93 00000001 --HOLE-- [fill = 0] 90020a94 00000138 : udma_soc.obj (.rodata.gUdmaTxMappedChRingAttributes) 90020bcc 00000137 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : timeouts.obj (.rodata.str1.1) 90020d03 00000134 : autoip.obj (.rodata.str1.1) 90020e37 00000131 : icmp.obj (.rodata.str1.1) 90020f68 0000012d enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_hostport.obj (.rodata.str1.1) 90021095 00000002 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_sys.obj (.rodata.rootDir) 90021097 00000001 --HOLE-- [fill = 0] 90021098 0000012c drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_fmwSecureProxyMap.obj (.rodata.gSciclientMap) 900211c4 00000127 tftpserver.o (.rodata.str1.1) 900212eb 00000119 IPC.lib : termcom_common.o (.rodata.str1.1) 90021404 00000113 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : mem.obj (.rodata.str1.1) 90021517 00000105 : raw.obj (.rodata.str1.1) 9002161c 00000103 nortos.am64x.r5f.ti-arm-clang.debug.lib : TimerP.obj (.rodata.str1.1) 9002171f 00000102 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2lwipif.obj (.rodata.str1.1) 90021821 0000000d lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.rodata.tcp_backoff) 9002182e 00000002 --HOLE-- [fill = 0] 90021830 00000101 libc.a : aeabi_ctype.S.obj (.rodata) 90021931 00000100 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_crc.obj (.rodata.crc16_table_high) 90021a31 00000100 : ff_crc.obj (.rodata.crc16_table_low) 90021b31 000000f7 ti_enet_config.o (.rodata.str1.1) 90021c28 000000e9 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udmautils.obj (.rodata.str1.1) 90021d11 000000e4 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dns.obj (.rodata.str1.1) 90021df5 000000da cpswconfighandler.o (.rodata.str1.1) 90021ecf 000000da ti_board_open_close.o (.rodata.str1.1) 90021fa9 000000d9 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4.obj (.rodata.str1.1) 90022082 000000d8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : k3_soc.obj (.rodata.str1.1) 9002215a 000000d5 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_sys.obj (.rodata.str1.1) 9002222f 000000d4 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.rodata.str1.1) 90022303 000000d2 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_dma_udma.obj (.rodata.str1.1) 900223d5 000000cc fs.o (.rodata.data__error_shtml) 900224a1 000000c6 fs.o (.rodata.data__params_shtml) 90022567 000000c2 fs.o (.rodata.data__ok_shtml) 90022629 000000c1 eeprom.o (.rodata.str1.1) 900226ea 000000c1 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ethernet.obj (.rodata.str1.1) 900227ab 00000001 --HOLE-- [fill = 0] 900227ac 000000c0 ti_enet_open_close.o (.rodata.enetAppCpswAleCfg) 9002286c 000000b0 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos_r5.obj (.rodata.str1.1) 9002291c 000000af freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_mmcsd.obj (.rodata.str1.1) 900229cb 000000ab lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : inet_chksum.obj (.rodata.str1.1) 90022a76 000000a9 lwip-contrib-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcpecho_raw.obj (.rodata.str1.1) 90022b1f 000000a7 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : generic_phy.obj (.rodata.str1.1) 90022bc6 00000002 --HOLE-- [fill = 0] 90022bc8 0000009c drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_soc.obj (.rodata.gUdmaRxMappedChRingAttributes) 90022c64 00000094 ti_enet_config.o (.rodata.gEthMemCfg) 90022cf8 00000093 IPC.lib : terminal.o (.rodata.str1.1) 90022d8b 00000089 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_utils_dflt.obj (.rodata.str1.1) 90022e14 00000088 ti_enet_soc.o (.rodata.gEnetAppIoctlPermission_3G) 90022e9c 00000084 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_rmcfg.obj (.rodata.gUdmaRmDefBoardCfg_Bcdma) 90022f20 00000080 libc.a : strtod.c.obj (.rodata.digits) 90022fa0 0000007e cpsw_custom_phy.o (.rodata.str1.1) 9002301e 0000007b drivers.am64x.r5f.ti-arm-clang.debug.lib : soc.obj (.rodata.str1.1) 90023099 0000007b lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.rodata.str1.1) 90023114 0000007a drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.rodata.str1.1) 9002318e 00000071 ti_enet_soc.o (.rodata.str1.1) 900231ff 0000006b nortos.am64x.r5f.ti-arm-clang.debug.lib : SemaphoreP_nortos.obj (.rodata.str1.1) 9002326a 0000006a drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.rodata.str1.1) 900232d4 00000068 : sciclient_irq_rm.obj (.rodata.tisci_if_TIMESYNC_EVENT_INTROUTER0) 9002333c 00000065 : ospi_v0.obj (.rodata.str1.1) 900233a1 00000003 --HOLE-- [fill = 0] 900233a4 00000064 ti_dpl_config.o (.rodata.cfg) 90023408 00000060 ti_drivers_config.o (.rodata.str1.1) 90023468 0000005f iperfserver.o (.rodata.str1.1) 900234c7 0000005b nortos.am64x.r5f.ti-arm-clang.debug.lib : EventP_nortos.obj (.rodata.str1.1) 90023522 0000005a : ClockP_nortos.obj (.rodata.str1.1) 9002357c 00000058 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.rodata.altcp_tcp_functions) 900235d4 00000058 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_irq_rm.obj (.rodata.gRmIrqTree) 9002362c 00000058 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.rodata.str1.1) 90023684 00000004 ti_enet_lwipif.o (.rodata.cst4) 90023688 00000050 nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.rodata._ftoa.pow10) 900236d8 0000004b drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_dma.obj (.rodata.str1.1) 90023723 00000005 IPC.lib : IPCTransceive.o (.rodata.IPCClientIDOffset) 90023728 00000048 ti_enet_soc.o (.rodata.gEnetSoc_cpsw3gSocCfg) 90023770 00000048 libc.a : strtod.c.obj (.rodata.powerof10) 900237b8 00000045 IPC.lib : IPCTransceive.o (.rodata.str1.1) 900237fd 00000045 libc.a : aeabi_portable.c.obj (.rodata.str1.1) 90023842 00000002 --HOLE-- [fill = 0] 90023844 00000044 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : memp.obj (.rodata.memp_pools) 90023888 00000040 libc.a : strtof.c.obj (.rodata.digits) 900238c8 00000040 cpsw_custom_phy.o (.rodata.gEnetCpbBoard_am64x_evm_EthPort) 90023908 00000040 cpsw_custom_phy.o (.rodata.gEnetVirtBoard_am64x_evm_EthPort) 90023948 00000040 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : timeouts.obj (.rodata.lwip_cyclic_timers) 90023988 00000038 ti_enet_open_close.o (.rodata.enetAppCpswMacPortCfg) 900239c0 00000037 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_priv.obj (.rodata.str1.1) 900239f7 00000035 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_stdio.obj (.rodata.str1.1) 90023a2c 00000034 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_irq_rm.obj (.rodata.tisci_if_MAIN_GPIOMUX_INTROUTER0) 90023a60 00000030 : sciclient_irq_rm.obj (.rodata.tisci_if_DMASS0_INTAGGR_0) 90023a90 0000002d nortos.am64x.r5f.ti-arm-clang.debug.lib : DebugP_log.obj (.rodata.str1.1) 90023abd 00000003 --HOLE-- [fill = 0] 90023ac0 00000028 httpd.o (.rodata.httpd_default_filenames) 90023ae8 00000024 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.rodata.I2C_defaultTransaction) 90023b0c 00000024 : sciclient_irq_rm.obj (.rodata.tisci_if_MCU_MCU_GPIOMUX_INTROUTER0) 90023b30 00000022 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.rodata.str1.1) 90023b52 00000022 libc.a : _printfi.c.obj (.rodata.str1.1) 90023b74 00000020 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.rodata.Cpsw_txPriMtuDefault) 90023b94 00000020 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.rodata.cst16) 90023bb4 00000020 ti_enet_lwipif.o (.rodata.cst16) 90023bd4 00000020 ti_enet_open_close.o (.rodata.enetAppCpswHostPortCfg) 90023bf4 00000020 cpsw_custom_phy.o (.rodata.gEnetCpbBoard_dp83867PhyCfg) 90023c14 00000020 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.rodata.gTable) 90023c34 00000020 : sciclient_irq_rm.obj (.rodata.tisci_if_CPTS0) 90023c54 0000001c : sciclient_irq_rm.obj (.rodata.tisci_if_PRU_ICSSG0) 90023c70 0000001c : sciclient_irq_rm.obj (.rodata.tisci_if_PRU_ICSSG1) 90023c8c 00000018 ti_enet_open_close.o (.rodata.enetAppCpswMdioCfg) 90023ca4 00000018 ti_enet_config.o (.rodata.gEthUdmaCfg) 90023cbc 00000018 libc.a : strtof.c.obj (.rodata.powerof10) 90023cd4 00000018 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.rodata.str1.1) 90023cec 00000018 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_irq_rm.obj (.rodata.tisci_if_CMP_EVENT_INTROUTER0) 90023d04 00000016 IPC.lib : build.o (.rodata.str1.1) 90023d1a 00000002 --HOLE-- [fill = 0] 90023d1c 00000014 : IPCTransceive.o (.rodata.IPCNuberOfMsgIDs) 90023d30 00000014 fs.o (.rodata.file__404_shtml) 90023d44 00000014 fs.o (.rodata.file__error_shtml) 90023d58 00000014 fs.o (.rodata.file__favicon_ico) 90023d6c 00000014 fs.o (.rodata.file__index_shtml) 90023d80 00000014 fs.o (.rodata.file__index_shtml_bak) 90023d94 00000014 fs.o (.rodata.file__ok_shtml) 90023da8 00000014 fs.o (.rodata.file__params_shtml) 90023dbc 00000014 fs.o (.rodata.file__pecnv_jpg) 90023dd0 00000014 fs.o (.rodata.file__tidy_css) 90023de4 00000014 httpd.o (.rodata.g_pcSSIExtensions) 90023df8 00000014 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : memp.obj (.rodata.memp_ALTCP_PCB) 90023e0c 00000014 : memp.obj (.rodata.memp_ARP_QUEUE) 90023e20 00000014 : memp.obj (.rodata.memp_FRAG_PBUF) 90023e34 00000014 : memp.obj (.rodata.memp_IGMP_GROUP) 90023e48 00000014 : memp.obj (.rodata.memp_PBUF) 90023e5c 00000014 : memp.obj (.rodata.memp_PBUF_POOL) 90023e70 00000014 : memp.obj (.rodata.memp_POOL_128) 90023e84 00000014 : memp.obj (.rodata.memp_POOL_1792) 90023e98 00000014 : memp.obj (.rodata.memp_POOL_4096) 90023eac 00000014 : memp.obj (.rodata.memp_RAW_PCB) 90023ec0 00000014 : memp.obj (.rodata.memp_REASSDATA) 90023ed4 00000014 ti_enet_lwipif.o (.rodata.memp_RX_POOL) 90023ee8 00000014 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : memp.obj (.rodata.memp_SYS_MBOX) 90023efc 00000014 : memp.obj (.rodata.memp_SYS_TIMEOUT) 90023f10 00000014 : memp.obj (.rodata.memp_TCP_PCB) 90023f24 00000014 : memp.obj (.rodata.memp_TCP_PCB_LISTEN) 90023f38 00000014 : memp.obj (.rodata.memp_TCP_SEG) 90023f4c 00000014 : memp.obj (.rodata.memp_UDP_PCB) 90023f60 00000014 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_irq_rm.obj (.rodata.tisci_if_PCIE0) 90023f74 00000013 httpd_cgi_sii.o (.rodata.device_name) 90023f87 00000012 nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.rodata.str1.1) 90023f99 00000003 --HOLE-- [fill = 0] 90023f9c 00000010 ti_enet_open_close.o (.rodata.cst4) 90023fac 00000010 httpd.o (.rodata.http_ssi_tag_desc) 90023fbc 00000010 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.rodata.tcp_pcb_lists) 90023fcc 00000010 tftpserver.o (.rodata.tftp) 90023fdc 00000010 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_irq_rm.obj (.rodata.tisci_if_CPSW0) 90023fec 0000000c ti_enet_config.o (.rodata..L__const.EnetApp_getEnetInstInfo.instInfoTable) 90023ff8 0000000a freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.rodata.forbiddenChrs) 90024002 00000008 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_irq_rm.obj (.rodata.CMP_EVENT_INTROUTER0_outp_0_15_to_GICSS0_spi_48_63) 9002400a 00000008 : sciclient_irq_rm.obj (.rodata.CMP_EVENT_INTROUTER0_outp_16_23_to_R5FSS0_CORE0_intr_48_55) 90024012 00000008 : sciclient_irq_rm.obj (.rodata.CMP_EVENT_INTROUTER0_outp_16_23_to_R5FSS0_CORE1_intr_48_55) 9002401a 00000008 : sciclient_irq_rm.obj (.rodata.CMP_EVENT_INTROUTER0_outp_24_31_to_R5FSS1_CORE0_intr_48_55) 90024022 00000008 : sciclient_irq_rm.obj (.rodata.CMP_EVENT_INTROUTER0_outp_24_31_to_R5FSS1_CORE1_intr_48_55) 9002402a 00000008 : sciclient_irq_rm.obj (.rodata.CMP_EVENT_INTROUTER0_outp_32_39_to_DMASS0_INTAGGR_0_intaggr_levi_pend_0_7) 90024032 00000008 : sciclient_irq_rm.obj (.rodata.CPSW0_cpts_comp_0_0_to_CMP_EVENT_INTROUTER0_in_80_80) 9002403a 00000008 : sciclient_irq_rm.obj (.rodata.CPSW0_cpts_genf0_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_21_21) 90024042 00000008 : sciclient_irq_rm.obj (.rodata.CPSW0_cpts_genf1_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_22_22) 9002404a 00000008 : sciclient_irq_rm.obj (.rodata.CPSW0_cpts_sync_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_34_34) 90024052 00000008 : sciclient_irq_rm.obj (.rodata.CPTS0_cpts_comp_0_0_to_CMP_EVENT_INTROUTER0_in_82_82) 9002405a 00000008 : sciclient_irq_rm.obj (.rodata.CPTS0_cpts_genf0_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_16_16) 90024062 00000008 : sciclient_irq_rm.obj (.rodata.CPTS0_cpts_genf1_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_17_17) 9002406a 00000008 : sciclient_irq_rm.obj (.rodata.CPTS0_cpts_genf2_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_18_18) 90024072 00000008 : sciclient_irq_rm.obj (.rodata.CPTS0_cpts_genf3_4_4_to_TIMESYNC_EVENT_INTROUTER0_in_19_19) 9002407a 00000008 : sciclient_irq_rm.obj (.rodata.CPTS0_cpts_genf4_5_5_to_TIMESYNC_EVENT_INTROUTER0_in_20_20) 90024082 00000008 : sciclient_irq_rm.obj (.rodata.CPTS0_cpts_genf5_6_6_to_TIMESYNC_EVENT_INTROUTER0_in_24_24) 9002408a 00000008 : sciclient_irq_rm.obj (.rodata.CPTS0_cpts_sync_7_7_to_TIMESYNC_EVENT_INTROUTER0_in_35_35) 90024092 00000008 : sciclient_irq_rm.obj (.rodata.DMASS0_INTAGGR_0_intaggr_vintr_pend_0_39_to_GICSS0_spi_64_103) 9002409a 00000008 : sciclient_irq_rm.obj (.rodata.DMASS0_INTAGGR_0_intaggr_vintr_pend_120_127_to_R5FSS1_CORE0_intr_8_15) 900240a2 00000008 : sciclient_irq_rm.obj (.rodata.DMASS0_INTAGGR_0_intaggr_vintr_pend_128_135_to_R5FSS1_CORE1_intr_8_15) 900240aa 00000008 : sciclient_irq_rm.obj (.rodata.DMASS0_INTAGGR_0_intaggr_vintr_pend_152_159_to_PRU_ICSSG0_pr1_slv_intr_16_23) 900240b2 00000008 : sciclient_irq_rm.obj (.rodata.DMASS0_INTAGGR_0_intaggr_vintr_pend_160_167_to_PRU_ICSSG1_pr1_slv_intr_16_23) 900240ba 00000008 : sciclient_irq_rm.obj (.rodata.DMASS0_INTAGGR_0_intaggr_vintr_pend_168_183_to_MCU_M4FSS0_CORE0_nvic_32_47) 900240c2 00000008 : sciclient_irq_rm.obj (.rodata.DMASS0_INTAGGR_0_intaggr_vintr_pend_40_71_to_R5FSS0_CORE0_intr_64_95) 900240ca 00000008 : sciclient_irq_rm.obj (.rodata.DMASS0_INTAGGR_0_intaggr_vintr_pend_40_71_to_R5FSS0_CORE1_intr_64_95) 900240d2 00000008 : sciclient_irq_rm.obj (.rodata.DMASS0_INTAGGR_0_intaggr_vintr_pend_72_79_to_R5FSS0_CORE0_intr_8_15) 900240da 00000008 : sciclient_irq_rm.obj (.rodata.DMASS0_INTAGGR_0_intaggr_vintr_pend_80_87_to_R5FSS0_CORE1_intr_8_15) 900240e2 00000008 : sciclient_irq_rm.obj (.rodata.DMASS0_INTAGGR_0_intaggr_vintr_pend_88_119_to_R5FSS1_CORE0_intr_64_95) 900240ea 00000008 : sciclient_irq_rm.obj (.rodata.DMASS0_INTAGGR_0_intaggr_vintr_pend_88_119_to_R5FSS1_CORE1_intr_64_95) 900240f2 00000008 : sciclient_irq_rm.obj (.rodata.EPWM0_epwm_synco_o_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_39_39) 900240fa 00000008 : sciclient_irq_rm.obj (.rodata.EPWM3_epwm_synco_o_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_40_40) 90024102 00000008 : sciclient_irq_rm.obj (.rodata.EPWM6_epwm_synco_o_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_41_41) 9002410a 00000008 : sciclient_irq_rm.obj (.rodata.GPIO0_gpio_0_89_to_MAIN_GPIOMUX_INTROUTER0_in_0_89) 90024112 00000008 : sciclient_irq_rm.obj (.rodata.GPIO0_gpio_bank_90_98_to_MAIN_GPIOMUX_INTROUTER0_in_190_198) 9002411a 00000008 : sciclient_irq_rm.obj (.rodata.GPIO1_gpio_0_89_to_MAIN_GPIOMUX_INTROUTER0_in_90_179) 90024122 00000008 : sciclient_irq_rm.obj (.rodata.GPIO1_gpio_bank_90_98_to_MAIN_GPIOMUX_INTROUTER0_in_180_188) 9002412a 00000008 : sciclient_irq_rm.obj (.rodata.GPMC0_gpmc_sdmareq_0_0_to_DMASS0_INTAGGR_0_intaggr_levi_pend_29_29) 90024132 00000008 : sciclient_irq_rm.obj (.rodata.GTC0_gtc_push_event_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_36_36) 9002413a 00000008 : sciclient_irq_rm.obj (.rodata.MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_GICSS0_spi_32_47) 90024142 00000008 : sciclient_irq_rm.obj (.rodata.MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_R5FSS0_CORE0_intr_32_47) 9002414a 00000008 : sciclient_irq_rm.obj (.rodata.MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_R5FSS0_CORE1_intr_32_47) 90024152 00000008 : sciclient_irq_rm.obj (.rodata.MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_R5FSS1_CORE0_intr_32_47) 9002415a 00000008 : sciclient_irq_rm.obj (.rodata.MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_R5FSS1_CORE1_intr_32_47) 90024162 00000008 : sciclient_irq_rm.obj (.rodata.MAIN_GPIOMUX_INTROUTER0_outp_16_17_to_DMASS0_INTAGGR_0_intaggr_levi_pend_24_25) 9002416a 00000008 : sciclient_irq_rm.obj (.rodata.MAIN_GPIOMUX_INTROUTER0_outp_18_23_to_PRU_ICSSG0_pr1_iep0_cap_intr_req_4_9) 90024172 00000008 : sciclient_irq_rm.obj (.rodata.MAIN_GPIOMUX_INTROUTER0_outp_18_23_to_PRU_ICSSG1_pr1_iep0_cap_intr_req_4_9) 9002417a 00000008 : sciclient_irq_rm.obj (.rodata.MAIN_GPIOMUX_INTROUTER0_outp_24_29_to_PRU_ICSSG0_pr1_iep1_cap_intr_req_10_15) 90024182 00000008 : sciclient_irq_rm.obj (.rodata.MAIN_GPIOMUX_INTROUTER0_outp_24_29_to_PRU_ICSSG1_pr1_iep1_cap_intr_req_10_15) 9002418a 00000008 : sciclient_irq_rm.obj (.rodata.MAIN_GPIOMUX_INTROUTER0_outp_30_37_to_DMASS0_INTAGGR_0_intaggr_levi_pend_16_23) 90024192 00000008 : sciclient_irq_rm.obj (.rodata.MAIN_GPIOMUX_INTROUTER0_outp_38_45_to_PRU_ICSSG0_pr1_slv_intr_46_53) 9002419a 00000008 : sciclient_irq_rm.obj (.rodata.MAIN_GPIOMUX_INTROUTER0_outp_46_53_to_PRU_ICSSG1_pr1_slv_intr_46_53) 900241a2 00000008 : sciclient_irq_rm.obj (.rodata.MCU_GPIO0_gpio_0_29_to_MCU_MCU_GPIOMUX_INTROUTER0_in_0_29) 900241aa 00000008 : sciclient_irq_rm.obj (.rodata.MCU_GPIO0_gpio_bank_30_31_to_MCU_MCU_GPIOMUX_INTROUTER0_in_30_31) 900241b2 00000008 : sciclient_irq_rm.obj (.rodata.MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_GICSS0_spi_104_107) 900241ba 00000008 : sciclient_irq_rm.obj (.rodata.MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_R5FSS0_CORE0_intr_104_107) 900241c2 00000008 : sciclient_irq_rm.obj (.rodata.MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_R5FSS0_CORE1_intr_104_107) 900241ca 00000008 : sciclient_irq_rm.obj (.rodata.MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_R5FSS1_CORE0_intr_104_107) 900241d2 00000008 : sciclient_irq_rm.obj (.rodata.MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_R5FSS1_CORE1_intr_104_107) 900241da 00000008 : sciclient_irq_rm.obj (.rodata.MCU_MCU_GPIOMUX_INTROUTER0_outp_4_7_to_MCU_M4FSS0_CORE0_nvic_0_3) 900241e2 00000008 : sciclient_irq_rm.obj (.rodata.MCU_MCU_GPIOMUX_INTROUTER0_outp_8_11_to_MCU_ESM0_esm_pls_event0_88_91) 900241ea 00000008 : sciclient_irq_rm.obj (.rodata.MCU_MCU_GPIOMUX_INTROUTER0_outp_8_11_to_MCU_ESM0_esm_pls_event1_92_95) 900241f2 00000008 : sciclient_irq_rm.obj (.rodata.MCU_MCU_GPIOMUX_INTROUTER0_outp_8_11_to_MCU_ESM0_esm_pls_event2_96_99) 900241fa 00000008 : sciclient_irq_rm.obj (.rodata.PCIE0_pcie_cpts_comp_0_0_to_CMP_EVENT_INTROUTER0_in_81_81) 90024202 00000008 : sciclient_irq_rm.obj (.rodata.PCIE0_pcie_cpts_genf0_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_23_23) 9002420a 00000008 : sciclient_irq_rm.obj (.rodata.PCIE0_pcie_cpts_hw1_push_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_37_37) 90024212 00000008 : sciclient_irq_rm.obj (.rodata.PCIE0_pcie_cpts_sync_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_33_33) 9002421a 00000008 : sciclient_irq_rm.obj (.rodata.PCIE0_pcie_ptm_valid_pulse_4_4_to_TIMESYNC_EVENT_INTROUTER0_in_38_38) 90024222 00000008 : sciclient_irq_rm.obj (.rodata.PRU_ICSSG0_pr1_edc0_sync0_out_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_25_25) 9002422a 00000008 : sciclient_irq_rm.obj (.rodata.PRU_ICSSG0_pr1_edc0_sync1_out_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_26_26) 90024232 00000008 : sciclient_irq_rm.obj (.rodata.PRU_ICSSG0_pr1_edc1_sync0_out_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_27_27) 9002423a 00000008 : sciclient_irq_rm.obj (.rodata.PRU_ICSSG0_pr1_edc1_sync1_out_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_28_28) 90024242 00000008 : sciclient_irq_rm.obj (.rodata.PRU_ICSSG0_pr1_host_intr_req_4_11_to_CMP_EVENT_INTROUTER0_in_0_7) 9002424a 00000008 : sciclient_irq_rm.obj (.rodata.PRU_ICSSG0_pr1_iep0_cmp_intr_req_12_27_to_CMP_EVENT_INTROUTER0_in_16_31) 90024252 00000008 : sciclient_irq_rm.obj (.rodata.PRU_ICSSG0_pr1_iep1_cmp_intr_req_28_43_to_CMP_EVENT_INTROUTER0_in_32_47) 9002425a 00000008 : sciclient_irq_rm.obj (.rodata.PRU_ICSSG1_pr1_edc0_sync0_out_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_29_29) 90024262 00000008 : sciclient_irq_rm.obj (.rodata.PRU_ICSSG1_pr1_edc0_sync1_out_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_30_30) 9002426a 00000008 : sciclient_irq_rm.obj (.rodata.PRU_ICSSG1_pr1_edc1_sync0_out_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_31_31) 90024272 00000008 : sciclient_irq_rm.obj (.rodata.PRU_ICSSG1_pr1_edc1_sync1_out_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_32_32) 9002427a 00000008 : sciclient_irq_rm.obj (.rodata.PRU_ICSSG1_pr1_host_intr_req_4_11_to_CMP_EVENT_INTROUTER0_in_8_15) 90024282 00000008 : sciclient_irq_rm.obj (.rodata.PRU_ICSSG1_pr1_iep0_cmp_intr_req_12_27_to_CMP_EVENT_INTROUTER0_in_48_63) 9002428a 00000008 : sciclient_irq_rm.obj (.rodata.PRU_ICSSG1_pr1_iep1_cmp_intr_req_28_43_to_CMP_EVENT_INTROUTER0_in_64_79) 90024292 00000008 : sciclient_irq_rm.obj (.rodata.TIMER0_timer_pwm_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_0_0) 9002429a 00000008 : sciclient_irq_rm.obj (.rodata.TIMER1_timer_pwm_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_1_1) 900242a2 00000008 : sciclient_irq_rm.obj (.rodata.TIMER2_timer_pwm_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_2_2) 900242aa 00000008 : sciclient_irq_rm.obj (.rodata.TIMER3_timer_pwm_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_3_3) 900242b2 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_0_7_to_DMASS0_INTAGGR_0_intaggr_levi_pend_8_15) 900242ba 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_10_10_to_PRU_ICSSG0_pr1_edc1_latch0_in_2_2) 900242c2 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_11_11_to_PRU_ICSSG0_pr1_edc1_latch1_in_3_3) 900242ca 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_12_12_to_PRU_ICSSG1_pr1_edc0_latch0_in_0_0) 900242d2 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_13_13_to_PRU_ICSSG1_pr1_edc0_latch1_in_1_1) 900242da 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_14_14_to_PRU_ICSSG1_pr1_edc1_latch0_in_2_2) 900242e2 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_15_15_to_PRU_ICSSG1_pr1_edc1_latch1_in_3_3) 900242ea 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_16_16_to_CPTS0_cpts_hw1_push_0_0) 900242f2 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_17_17_to_CPTS0_cpts_hw2_push_1_1) 900242fa 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_18_18_to_CPTS0_cpts_hw3_push_2_2) 90024302 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_19_19_to_CPTS0_cpts_hw4_push_3_3) 9002430a 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_20_20_to_CPTS0_cpts_hw5_push_4_4) 90024312 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_21_21_to_CPTS0_cpts_hw6_push_5_5) 9002431a 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_22_22_to_CPTS0_cpts_hw7_push_6_6) 90024322 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_23_23_to_CPTS0_cpts_hw8_push_7_7) 9002432a 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_29_29_to_PCIE0_pcie_cpts_hw2_push_0_0) 90024332 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_30_30_to_CPSW0_cpts_hw1_push_0_0) 9002433a 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_31_31_to_CPSW0_cpts_hw2_push_1_1) 90024342 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_32_32_to_CPSW0_cpts_hw3_push_2_2) 9002434a 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_33_33_to_CPSW0_cpts_hw4_push_3_3) 90024352 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_34_34_to_CPSW0_cpts_hw5_push_4_4) 9002435a 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_35_35_to_CPSW0_cpts_hw6_push_5_5) 90024362 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_36_36_to_CPSW0_cpts_hw7_push_6_6) 9002436a 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_37_37_to_CPSW0_cpts_hw8_push_7_7) 90024372 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_8_8_to_PRU_ICSSG0_pr1_edc0_latch0_in_0_0) 9002437a 00000008 : sciclient_irq_rm.obj (.rodata.TIMESYNC_EVENT_INTROUTER0_outl_9_9_to_PRU_ICSSG0_pr1_edc0_latch1_in_1_1) 90024382 00000002 --HOLE-- [fill = 0] 90024384 00000008 httpd_cgi_sii.o (.rodata.cgi_handlers) 9002438c 00000008 ti_enet_lwipif.o (.rodata.cst8) 90024394 00000008 cpsw_custom_phy.o (.rodata.gEnetPhyDrvTbl) 9002439c 00000008 cpsw_custom_phy.o (.rodata.gEnetPhyDrvs) 900243a4 00000008 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_irq_rm.obj (.rodata.tisci_if_GPIO0) 900243ac 00000008 : sciclient_irq_rm.obj (.rodata.tisci_if_GPIO1) 900243b4 00000008 : sciclient_irq_rm.obj (.rodata.tisci_if_MCU_GPIO0) 900243bc 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_CMP_EVENT_INTROUTER0) 900243c4 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_CPSW0) 900243cc 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_CPTS0) 900243d4 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_DMASS0_INTAGGR_0) 900243dc 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_EPWM0) 900243e4 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_EPWM3) 900243ec 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_EPWM6) 900243f4 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_GPIO0) 900243fc 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_GPIO1) 90024404 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_GPMC0) 9002440c 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_GTC0) 90024414 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_MAIN_GPIOMUX_INTROUTER0) 9002441c 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_MCU_GPIO0) 90024424 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_MCU_MCU_GPIOMUX_INTROUTER0) 9002442c 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_PCIE0) 90024434 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_PRU_ICSSG0) 9002443c 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_PRU_ICSSG1) 90024444 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_TIMER0) 9002444c 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_TIMER1) 90024454 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_TIMER2) 9002445c 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_TIMER3) 90024464 00000008 : sciclient_irq_rm.obj (.rodata.tisci_irq_TIMESYNC_EVENT_INTROUTER0) 9002446c 00000007 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.rodata.tcp_persist_backoff) 90024473 00000006 enet_main.o (.rodata.BROADCAST_MAC_ADDRESS) 90024479 00000006 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ethernet.obj (.rodata.ethbroadcast) 9002447f 00000006 : ethernet.obj (.rodata.ethzero) 90024485 00000005 ti_enet_open_close.o (.rodata.enetAppCpswCptsCfg) 9002448a 00000002 --HOLE-- [fill = 0] 9002448c 00000004 httpd_cgi_sii_const.o (.rodata.device_params_length) 90024490 00000004 nortos.am64x.r5f.ti-arm-clang.debug.lib : CacheP_armv7r.obj (.rodata.gCacheL1dCacheLineSize) 90024494 00000004 : CacheP_armv7r.obj (.rodata.gCacheL1pCacheLineSize) 90024498 00000004 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_irq_rm.obj (.rodata.gRmIrqTreeCount) 9002449c 00000004 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_addr.obj (.rodata.ip_addr_any) 900244a0 00000004 : ip4_addr.obj (.rodata.ip_addr_broadcast) 900244a4 00000004 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_irq_rm.obj (.rodata.tisci_if_EPWM0) 900244a8 00000004 : sciclient_irq_rm.obj (.rodata.tisci_if_EPWM3) 900244ac 00000004 : sciclient_irq_rm.obj (.rodata.tisci_if_EPWM6) 900244b0 00000004 : sciclient_irq_rm.obj (.rodata.tisci_if_GPMC0) 900244b4 00000004 : sciclient_irq_rm.obj (.rodata.tisci_if_GTC0) 900244b8 00000004 : sciclient_irq_rm.obj (.rodata.tisci_if_TIMER0) 900244bc 00000004 : sciclient_irq_rm.obj (.rodata.tisci_if_TIMER1) 900244c0 00000004 : sciclient_irq_rm.obj (.rodata.tisci_if_TIMER2) 900244c4 00000004 : sciclient_irq_rm.obj (.rodata.tisci_if_TIMER3) 900244c8 00000008 --HOLE-- [fill = 0] .text 0 900244d0 0007f290 900244d0 000011e2 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.text.tcp_receive) 900256b2 00000002 --HOLE-- [fill = 0] 900256b4 0000000c libc.a : aeabi_portable.c.obj (.text.__aeabi_errno_addr) 900256c0 00000e06 termcom.o (.text.TERMCOM_vCFU) 900264c6 00000002 --HOLE-- [fill = 0] 900264c8 00000de0 libc.a : _printfi.c.obj (.text:__TI_printfi_nofloat) 900272a8 00000004 : _lock.c.obj (.text._nop) 900272ac 00000004 : fseek.c.obj (.text.fseek) 900272b0 00000c34 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.text.tcp_input) 90027ee4 0000000c libc.a : memory.c.obj (.text.malloc) 90027ef0 00000b24 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_out.obj (.text.tcp_write) 90028a14 0000000c nortos.am64x.r5f.ti-arm-clang.debug.lib : CpuId_armv7r_asm.obj (.text) 90028a20 00000aa0 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.text.tcp_process) 900294c0 00000a34 nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text._vsnprintf) 90029ef4 00000004 libsysbm.a : remove.c.obj (.text.remove) 90029ef8 00000004 libclang_rt.builtins.a : aeabi_memcpy.S.obj (.text) 90029efc 00000004 --HOLE-- [fill = 0] 90029f00 00000966 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_parse_reply) 9002a866 00000002 --HOLE-- [fill = 0] 9002a868 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : CacheP_armv7r_asm.obj (.tramp.CacheP_wbInv.1) 9002a870 00000960 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_slowtmr) 9002b1d0 000008b4 IPC.lib : terminal.o (.text.TERMINAL_vCommandConsole) 9002ba84 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_asm.obj (.tramp.HwiP_disable.1) 9002ba8c 00000004 --HOLE-- [fill = 0] 9002ba90 0000089e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma.obj (.text.EnetDma_openTxCh) 9002c32e 00000002 --HOLE-- [fill = 0] 9002c330 00000826 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_phy.obj (.text.OSPI_phyFindOTP1) 9002cb56 00000002 --HOLE-- [fill = 0] 9002cb58 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_vim.obj (.tramp.HwiP_Params_init.1) 9002cb60 000007cc enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.EnetUdma_submitPkts) 9002d32c 00000004 --HOLE-- [fill = 0] 9002d330 00000710 : enet_udma.obj (.text.EnetDma_openRxCh) 9002da40 000006c8 httpd.o (.text.http_send_data_ssi) 9002e108 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_vim.obj (.tramp.HwiP_construct.1) 9002e110 000006b2 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_primeTransfer) 9002e7c2 00000002 --HOLE-- [fill = 0] 9002e7c4 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_asm.obj (.tramp.HwiP_restore.1) 9002e7cc 00000004 --HOLE-- [fill = 0] 9002e7d0 0000065c IPCInterface.o (.text.CFU_vprintStatus) 9002ee2c 00000004 --HOLE-- [fill = 0] 9002ee30 00000622 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_transfer) 9002f452 00000002 --HOLE-- [fill = 0] 9002f454 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : CacheP_armv7r_asm.obj (.tramp.CacheP_wb.1) 9002f45c 00000004 --HOLE-- [fill = 0] 9002f460 00000602 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.text.Cpsw_openInternal) 9002fa62 00000002 --HOLE-- [fill = 0] 9002fa64 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_vim.obj (.tramp.HwiP_disableInt.1) 9002fa6c 00000004 --HOLE-- [fill = 0] 9002fa70 000005f4 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmIrqRouteValidate) 90030064 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_vim.obj (.tramp.HwiP_enableInt.1) 9003006c 00000004 --HOLE-- [fill = 0] 90030070 000005f4 termcom.o (.text.TERMCOM_vPecProm) 90030664 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_vim.obj (.tramp.HwiP_destruct.1) 9003066c 00000004 --HOLE-- [fill = 0] 90030670 000005ca enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal.obj (.text.EnetOsal_init) 90030c3a 00000006 --HOLE-- [fill = 0] 90030c40 00000584 httpd_cgi_sii.o (.text.sii_table_params) 900311c4 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : CacheP_armv7r.obj (.tramp.CacheP_inv.1) 900311cc 00000004 --HOLE-- [fill = 0] 900311d0 00000574 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.EnetUdma_openRxRsvdFlow) 90031744 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : DebugP_log.obj (.tramp._DebugP_assertNoLog.1) 9003174c 00000004 --HOLE-- [fill = 0] 90031750 00000550 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_phy.obj (.text.OSPI_phyFindOTP2) 90031ca0 00000550 : udma_rm.obj (.text.Udma_rmInit) 900321f0 00000548 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4.obj (.text.ip4_input) 90032738 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_vim.obj (.tramp.HwiP_init.1) 90032740 00000546 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_checkPolicerMatch) 90032c86 00000002 --HOLE-- [fill = 0] 90032c88 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_asm.obj (.tramp.HwiP_enable.1) 90032c90 00000520 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_setPolicer) 900331b0 0000051e nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text._ftoa) 900336ce 00000002 --HOLE-- [fill = 0] 900336d0 0000051a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.EnetUdma_allocRing) 90033bea 00000006 --HOLE-- [fill = 0] 90033bf0 00000516 : cpsw_ale.obj (.text.CpswAle_open) 90034106 00000002 --HOLE-- [fill = 0] 90034108 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_vim.obj (.tramp.HwiP_inISR.1) 90034110 0000050a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : icmp.obj (.text.icmp_input) 9003461a 00000006 --HOLE-- [fill = 0] 90034620 000004d8 : tcp_out.obj (.text.tcp_output) 90034af8 000004cc libc.a : strtod.c.obj (.text.strtod) 90034fc4 00000008 : exit.c.obj (.tramp.abort.1) 90034fcc 00000004 --HOLE-- [fill = 0] 90034fd0 000004c4 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_appmemutils.obj (.text.EnetMem_initCore) 90035494 000004b8 libc.a : strtof.c.obj (.text.strtof) 9003594c 00000004 --HOLE-- [fill = 0] 90035950 000004ae enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.text.Cpsw_registerIntrs) 90035dfe 00000002 --HOLE-- [fill = 0] 90035e00 000004ac freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_FindEntryInDir) 900362ac 00000004 --HOLE-- [fill = 0] 900362b0 000004aa lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : udp.obj (.text.udp_input) 9003675a 00000006 --HOLE-- [fill = 0] 90036760 00000498 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_open) 90036bf8 00000008 --HOLE-- [fill = 0] 90036c00 0000048a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : etharp.obj (.text.etharp_find_entry) 9003708a 00000006 --HOLE-- [fill = 0] 90037090 00000486 : ip4_frag.obj (.text.ip4_reass) 90037516 0000000a --HOLE-- [fill = 0] 90037520 00000478 nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text._etoa) 90037998 00000008 --HOLE-- [fill = 0] 900379a0 00000474 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : udp.obj (.text.udp_sendto_if_src) 90037e14 0000000c --HOLE-- [fill = 0] 90037e20 00000450 : etharp.obj (.text.etharp_query) 90038270 00000446 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.text.Cpsw_open) 900386b6 0000000a --HOLE-- [fill = 0] 900386c0 00000446 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tftp_server.obj (.text.recv) 90038b06 0000000a --HOLE-- [fill = 0] 90038b10 0000043e drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_initEMMC) 90038f4e 00000002 --HOLE-- [fill = 0] 90038f50 00000436 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_rm.obj (.text.EnetRm_detachCore) 90039386 0000000a --HOLE-- [fill = 0] 90039390 00000422 : cpsw_macport.obj (.text.CpswMacPort_open) 900397b2 0000000e --HOLE-- [fill = 0] 900397c0 00000408 termcom.o (.text.TERMCOM_vEmmc) 90039bc8 00000008 --HOLE-- [fill = 0] 90039bd0 000003fc enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma.obj (.text.EnetUdma_openRxCh) 90039fcc 00000004 --HOLE-- [fill = 0] 90039fd0 000003f8 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.FF_Write) 9003a3c8 00000008 --HOLE-- [fill = 0] 9003a3d0 000003f8 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_init) 9003a7c8 00000008 --HOLE-- [fill = 0] 9003a7d0 000003e4 : mmcsd_v0.obj (.text.MMCSD_switchEmmcMode) 9003abb4 0000000c --HOLE-- [fill = 0] 9003abc0 000003dc : i2c_v0.obj (.text.I2C_hwiFxnController) 9003af9c 00000004 --HOLE-- [fill = 0] 9003afa0 000003d4 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : dp83867.obj (.text.Dp83867_printRegs) 9003b374 0000000c --HOLE-- [fill = 0] 9003b380 000003d2 drivers.am64x.r5f.ti-arm-clang.debug.lib : soc.obj (.text.SOC_phyToVirt) 9003b752 0000000e --HOLE-- [fill = 0] 9003b760 000003c6 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.FF_Read) 9003bb26 0000000a --HOLE-- [fill = 0] 9003bb30 000003c2 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_initSD) 9003bef2 0000000e --HOLE-- [fill = 0] 9003bf00 000003be lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_frag.obj (.text.ip_reass_chain_frag_into_datagram_and_validate) 9003c2be 00000002 --HOLE-- [fill = 0] 9003c2c0 000003bc drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_soc.obj (.text.Udma_initDrvHandle) 9003c67c 00000004 --HOLE-- [fill = 0] 9003c680 000003ba enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.text.Cpsw_handleLinkUp) 9003ca3a 00000006 --HOLE-- [fill = 0] 9003ca40 000003b0 : enet_rm.obj (.text.EnetRm_close) 9003cdf0 000003ac lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_out.obj (.text.tcp_split_unsent_seg) 9003d19c 00000004 --HOLE-- [fill = 0] 9003d1a0 000003a6 : ip4_frag.obj (.text.ip4_frag) 9003d546 0000000a --HOLE-- [fill = 0] 9003d550 000003a4 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.EnetUdma_processRetrievedDesc) 9003d8f4 0000000c --HOLE-- [fill = 0] 9003d900 0000039c IPC.lib : pec_prom.o (.text.PP_Read) 9003dc9c 00000004 --HOLE-- [fill = 0] 9003dca0 0000039c drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ch.obj (.text.Udma_chAllocResource) 9003e03c 00000004 --HOLE-- [fill = 0] 9003e040 00000398 IPC.lib : pec_prom.o (.text.PP_Refresh) 9003e3d8 00000008 --HOLE-- [fill = 0] 9003e3e0 00000396 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.FF_Mount) 9003e776 0000000a --HOLE-- [fill = 0] 9003e780 00000380 : ff_file.obj (.text.FF_Open) 9003eb00 0000037a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.text.Cpsw_handleLinkDown) 9003ee7a 00000006 --HOLE-- [fill = 0] 9003ee80 00000372 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_rmcfg_common.obj (.text.UdmaRmInitPrms_init) 9003f1f2 0000000e --HOLE-- [fill = 0] 9003f200 0000036e : i2c_v0.obj (.text.I2C_open) 9003f56e 00000002 --HOLE-- [fill = 0] 9003f570 00000364 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_setQeBit) 9003f8d4 0000000c --HOLE-- [fill = 0] 9003f8e0 00000360 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ch.obj (.text.Udma_chDisableTxChan) 9003fc40 0000035a : udma_event.obj (.text.Udma_eventConfig) 9003ff9a 00000006 --HOLE-- [fill = 0] 9003ffa0 00000354 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio.obj (.text.Mdio_open) 900402f4 0000000c --HOLE-- [fill = 0] 90040300 0000034e drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_hwiFxnTarget) 9004064e 00000002 --HOLE-- [fill = 0] 90040650 0000034c freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.FF_PartitionSearch) 9004099c 00000004 --HOLE-- [fill = 0] 900409a0 00000348 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ioctl.obj (.text.Cpsw_openPortLinkNoPhy) 90040ce8 00000008 --HOLE-- [fill = 0] 90040cf0 00000340 : enet_appmemutils.obj (.text.EnetMem_deInit) 90041030 0000032c termcom.o (.text.TERMCOM_Motor) 9004135c 00000004 --HOLE-- [fill = 0] 90041360 00000322 drivers.am64x.r5f.ti-arm-clang.debug.lib : soc.obj (.text.SOC_virtToPhy) 90041682 0000000e --HOLE-- [fill = 0] 90041690 00000322 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4.obj (.text.ip4_output_if_opt_src) 900419b2 0000000e --HOLE-- [fill = 0] 900419c0 0000031e : tcp_out.obj (.text.tcp_enqueue_flags) 90041cde 00000002 --HOLE-- [fill = 0] 90041ce0 00000306 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmIrqGetRoute) 90041fe6 0000000a --HOLE-- [fill = 0] 90041ff0 000002fa lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_connect) 900422ea 00000006 --HOLE-- [fill = 0] 900422f0 000002f8 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.FF_ExtendFile) 900425e8 00000008 --HOLE-- [fill = 0] 900425f0 000002f8 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_alloc) 900428e8 00000008 --HOLE-- [fill = 0] 900428f0 000002f4 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_event.obj (.text.Udma_eventReset) 90042be4 0000000c --HOLE-- [fill = 0] 90042bf0 000002ee lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : etharp.obj (.text.etharp_output) 90042ede 00000002 --HOLE-- [fill = 0] 90042ee0 000002ec : netif.obj (.text.netif_add) 900431cc 00000004 --HOLE-- [fill = 0] 900431d0 000002e8 xmodem.o (.text.xmodemTransmit) 900434b8 00000008 --HOLE-- [fill = 0] 900434c0 000002e6 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setPortRxDscpMap) 900437a6 0000000a --HOLE-- [fill = 0] 900437b0 000002e0 drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_uniflash.obj (.text.Bootloader_uniflashProcessFlashCommands) 90043a90 000002e0 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_prepRxPktQ) 90043d70 000002e0 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwiperf.obj (.text.lwiperf_tcp_recv) 90044050 000002da drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient.obj (.text.Sciclient_service) 9004432a 00000006 --HOLE-- [fill = 0] 90044330 000002d8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.text.Cpsw_periodicTick) 90044608 00000008 --HOLE-- [fill = 0] 90044610 000002ce drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_xferStatusPollingFxn) 900448de 00000002 --HOLE-- [fill = 0] 900448e0 000002c8 : udma_ch.obj (.text.Udma_chDisableRxChan) 90044ba8 00000008 --HOLE-- [fill = 0] 90044bb0 000002c4 httpd.o (.text.http_find_file) 90044e74 0000000c --HOLE-- [fill = 0] 90044e80 000002be enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_setAleIPv6Entry) 9004513e 00000002 --HOLE-- [fill = 0] 90045140 000002be : cpsw.obj (.text.Cpsw_registerIoctlHandler) 900453fe 00000002 --HOLE-- [fill = 0] 90045400 000002bc lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_out.obj (.text.tcp_output_segment) 900456bc 00000004 --HOLE-- [fill = 0] 900456c0 000002ba : pbuf.obj (.text.pbuf_copy) 9004597a 00000006 --HOLE-- [fill = 0] 90045980 000002b4 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_format.obj (.text.prvPartitionExtended) 90045c34 0000000c --HOLE-- [fill = 0] 90045c40 000002ae tftpserver.o (.text.tftp_read) 90045eee 00000002 --HOLE-- [fill = 0] 90045ef0 000002aa enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma.obj (.text.EnetDma_closeRxCh) 9004619a 00000006 --HOLE-- [fill = 0] 900461a0 000002a8 : cpsw_ale.obj (.text.CpswAle_addVlan) 90046448 00000008 --HOLE-- [fill = 0] 90046450 000002a4 httpd.o (.text.http_parse_request) 900466f4 0000000c --HOLE-- [fill = 0] 90046700 000002a2 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_format.obj (.text.FF_Partition) 900469a2 0000000e --HOLE-- [fill = 0] 900469b0 0000029c drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_mmcsd_raw.obj (.text.Bootloader_MmcsdRaw_writeToOffset) 90046c4c 00000004 --HOLE-- [fill = 0] 90046c50 0000029c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.text.tcp_listen_input) 90046eec 00000004 --HOLE-- [fill = 0] 90046ef0 00000296 : tcp.obj (.text.tcp_close_shutdown) 90047186 0000000a --HOLE-- [fill = 0] 90047190 00000294 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaChanOpCfgChan) 90047424 0000000c --HOLE-- [fill = 0] 90047430 00000292 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma.obj (.text.EnetDma_closeTxCh) 900476c2 0000000e --HOLE-- [fill = 0] 900476d0 00000292 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_FindFreeCluster) 90047962 0000000e --HOLE-- [fill = 0] 90047970 00000292 : ff_format.obj (.text.prvFormatWriteBPB) 90047c02 0000000e --HOLE-- [fill = 0] 90047c10 0000028e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setAlePolicerEntry) 90047e9e 00000002 --HOLE-- [fill = 0] 90047ea0 0000028c freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_PopulateLongDirent) 9004812c 00000004 --HOLE-- [fill = 0] 90048130 0000028a : ff_ioman.obj (.text.FF_ParseExtended) 900483ba 00000006 --HOLE-- [fill = 0] 900483c0 0000028a drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_programInstance) 9004864a 00000006 --HOLE-- [fill = 0] 90048650 00000286 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getAlePolicerEntry) 900488d6 0000000a --HOLE-- [fill = 0] 900488e0 00000286 : cpsw.obj (.text.Cpsw_ioctl) 90048b66 0000000a --HOLE-- [fill = 0] 90048b70 00000282 : cpsw_ale.obj (.text.CpswAle_findVlan) 90048df2 0000000e --HOLE-- [fill = 0] 90048e00 00000282 : enet_appmemutils.obj (.text.EnetMem_initMemObjs) 90049082 0000000e --HOLE-- [fill = 0] 90049090 00000280 : cpsw.obj (.text.Cpsw_closeInternal) 90049310 00000280 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwiperf.obj (.text.lwiperf_tcp_accept) 90049590 0000027a freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_format.obj (.text.FF_FormatDisk) 9004980a 00000006 --HOLE-- [fill = 0] 90049810 0000027a nortos.am64x.r5f.ti-arm-clang.debug.lib : TimerP.obj (.text.TimerP_setup) 90049a8a 00000006 --HOLE-- [fill = 0] 90049a90 00000276 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_open) 90049d06 0000000a --HOLE-- [fill = 0] 90049d10 00000276 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_select) 90049f86 0000000a --HOLE-- [fill = 0] 90049f90 0000026a drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4_16bit.obj (.text.LPDDR4_INTR_SanityFunction1) 9004a1fa 00000006 --HOLE-- [fill = 0] 9004a200 00000266 termcom.o (.text.TERMCOM_vDDR) 9004a466 0000000a --HOLE-- [fill = 0] 9004a470 00000260 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ch.obj (.text.Udma_chConfigRx) 9004a6d0 00000260 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_bind) 9004a930 00000260 xmodem.o (.text.xmodemReceive) 9004ab90 0000025e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_est_ioctl.obj (.text.CpswEst_ioctl_handler_ENET_TAS_IOCTL_SET_STATE) 9004adee 00000002 --HOLE-- [fill = 0] 9004adf0 0000025c ti_enet_open_close.o (.text.EnetAppUtils_openRxFlowForChIdx) 9004b04c 00000004 --HOLE-- [fill = 0] 9004b050 0000025c freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.FF_GetBuffer) 9004b2ac 00000004 --HOLE-- [fill = 0] 9004b2b0 0000025a drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4_16bit.obj (.text.LPDDR4_INTR_SanityFunction2) 9004b50a 00000006 --HOLE-- [fill = 0] 9004b510 0000025a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_frag.obj (.text.ip_reass_free_complete_datagram) 9004b76a 00000006 --HOLE-- [fill = 0] 9004b770 00000254 : igmp.obj (.text.igmp_input) 9004b9c4 0000000c --HOLE-- [fill = 0] 9004b9d0 00000252 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_open) 9004bc22 0000000e --HOLE-- [fill = 0] 9004bc30 0000024a ti_enet_open_close.o (.text.EnetAppUtils_closeRxFlowForChIdx) 9004be7a 00000006 --HOLE-- [fill = 0] 9004be80 00000248 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_macport_ioctl.obj (.text.CpswMacPort_enablePort) 9004c0c8 00000008 --HOLE-- [fill = 0] 9004c0d0 00000248 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmIrqFindRoute) 9004c318 00000008 --HOLE-- [fill = 0] 9004c320 00000246 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dns.obj (.text.dns_send) 9004c566 0000000a --HOLE-- [fill = 0] 9004c570 00000244 httpd.o (.text.get_tag_insert) 9004c7b4 0000000c --HOLE-- [fill = 0] 9004c7c0 00000242 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpgmac_sl.obj (.text.CSL_CPGMAC_SL_setInterVLANCfg) 9004ca02 0000000e --HOLE-- [fill = 0] 9004ca10 00000242 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.FF_Close) 9004cc52 0000000e --HOLE-- [fill = 0] 9004cc60 00000242 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_phyConfigure) 9004cea2 0000000e --HOLE-- [fill = 0] 9004ceb0 00000242 : uart_v0.obj (.text.UART_fifoConfig) 9004d0f2 0000000e --HOLE-- [fill = 0] 9004d100 00000242 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_create_msg) 9004d342 0000000e --HOLE-- [fill = 0] 9004d350 00000240 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_controllerIsr) 9004d590 0000023e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_cpts_ioctl.obj (.text.CpswCpts_handleEvents) 9004d7ce 00000002 --HOLE-- [fill = 0] 9004d7d0 0000023e : enetphy.obj (.text.EnetPhy_enableState) 9004da0e 00000002 --HOLE-- [fill = 0] 9004da10 0000023e nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text._ntoa_format) 9004dc4e 00000002 --HOLE-- [fill = 0] 9004dc50 0000023c freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_stdio.obj (.text.prvFFErrorToErrno) 9004de8c 00000004 --HOLE-- [fill = 0] 9004de90 0000023a drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_mmcsd_raw.obj (.text.Bootloader_MmcsdRaw_readFromOffset) 9004e0ca 00000006 --HOLE-- [fill = 0] 9004e0d0 0000023a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_listen_with_backlog_and_err) 9004e30a 00000006 --HOLE-- [fill = 0] 9004e310 00000238 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_set888mode) 9004e548 00000008 --HOLE-- [fill = 0] 9004e550 00000236 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.EnetUdma_initTxFreeDescQ) 9004e786 0000000a --HOLE-- [fill = 0] 9004e790 00000230 main.o (.text.main) 9004e9c0 00000230 libc.a : strtoull.c.obj (.text.strtoull) 9004ebf0 0000022c ti_enet_open_close.o (.text.EnetApp_enablePorts) 9004ee1c 00000004 --HOLE-- [fill = 0] 9004ee20 0000022a freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_CreateShortName) 9004f04a 00000006 --HOLE-- [fill = 0] 9004f050 0000022a lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2lwipif.obj (.text.LWIPIF_LWIP_getChkSumInfo) 9004f27a 00000006 --HOLE-- [fill = 0] 9004f280 00000222 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_event.obj (.text.Udma_eventRegister) 9004f4a2 0000000e --HOLE-- [fill = 0] 9004f4b0 00000220 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_rm_ioctl.obj (.text.EnetRm_allocMacAddr) 9004f6d0 00000220 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwiperf.obj (.text.lwiperf_tcp_client_send_more) 9004f8f0 0000021e freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_CountFreeClusters) 9004fb0e 00000002 --HOLE-- [fill = 0] 9004fb10 0000021e drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_event.obj (.text.Udma_eventAllocResource) 9004fd2e 00000002 --HOLE-- [fill = 0] 9004fd30 0000021a : ospi_dma_udma.obj (.text.OspiDma_udmaOpen) 9004ff4a 00000006 --HOLE-- [fill = 0] 9004ff50 00000218 httpd.o (.text.http_init_file) 90050168 00000008 --HOLE-- [fill = 0] 90050170 00000216 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_stdio.obj (.text.ff_findnext) 90050386 0000000a --HOLE-- [fill = 0] 90050390 00000214 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_rm.obj (.text.Udma_rmSetSharedResRmInitPrms) 900505a4 0000000c --HOLE-- [fill = 0] 900505b0 00000212 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_appmemutils.obj (.text.EnetMem_allocEthPkt) 900507c2 0000000e --HOLE-- [fill = 0] 900507d0 00000212 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_putFATEntry) 900509e2 0000000e --HOLE-- [fill = 0] 900509f0 00000212 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_take) 90050c02 0000000e --HOLE-- [fill = 0] 90050c10 0000020c drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ch.obj (.text.Udma_chFreeResource) 90050e1c 00000004 --HOLE-- [fill = 0] 90050e20 0000020c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_abandon) 9005102c 00000004 --HOLE-- [fill = 0] 90051030 0000020a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_hostport.obj (.text.CpswHostPort_open) 9005123a 00000006 --HOLE-- [fill = 0] 90051240 0000020a drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ring_common.obj (.text.Udma_ringAlloc) 9005144a 00000006 --HOLE-- [fill = 0] 90051450 0000020a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_pcb_remove) 9005165a 00000006 --HOLE-- [fill = 0] 90051660 00000208 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.EnetUdma_closeRxRsvdFlow) 90051868 00000208 libc.a : strtol.c.obj (.text.strtol) 90051a70 00000206 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_recv) 90051c76 0000000a --HOLE-- [fill = 0] 90051c80 00000202 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_FindShortName) 90051e82 0000000e --HOLE-- [fill = 0] 90051e90 00000200 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_bindDriver) 90052090 000001fe : cpsw_stats_ioctl.obj (.text.CpswStats_readHostStats) 9005228e 00000002 --HOLE-- [fill = 0] 90052290 000001fe board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiOpen) 9005248e 00000002 --HOLE-- [fill = 0] 90052490 000001fe termcom.o (.text.TERMCOM_vFlash) 9005268e 00000002 --HOLE-- [fill = 0] 90052690 000001fc enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ioctl.obj (.text.Cpsw_openPortLink) 9005288c 00000004 --HOLE-- [fill = 0] 90052890 000001fc lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwiperf.obj (.text.lwiperf_tx_start_impl) 90052a8c 00000004 --HOLE-- [fill = 0] 90052a90 000001f8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ioctl.obj (.text.Cpsw_openPortLinkWithPhy) 90052c88 00000008 --HOLE-- [fill = 0] 90052c90 000001f6 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : etharp.obj (.text.etharp_raw) 90052e86 0000000a --HOLE-- [fill = 0] 90052e90 000001f2 : pbuf.obj (.text.pbuf_free) 90053082 0000000e --HOLE-- [fill = 0] 90053090 000001f0 ti_enet_lwipif.o (.text.LwipifEnetAppCb_getRxHandleInfo) 90053280 000001ea enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.EnetUdma_retrievePkts) 9005346a 00000006 --HOLE-- [fill = 0] 90053470 000001e6 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ch.obj (.text.Udma_chDisableBlkCpyChan) 90053656 0000000a --HOLE-- [fill = 0] 90053660 000001e4 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ioctl.obj (.text.Cpsw_internalIoctl_handler_ENET_IOCTL_UNREGISTER_DSTMAC_RX_FLOW) 90053844 0000000c --HOLE-- [fill = 0] 90053850 000001e4 : cpsw.obj (.text.Cpsw_unregisterIntrs) 90053a34 0000000c --HOLE-- [fill = 0] 90053a40 000001e2 termcom.o (.text.TERMCOM_vDip) 90053c22 0000000e --HOLE-- [fill = 0] 90053c30 000001e0 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_stats_ioctl.obj (.text.CpswStats_readMacStats) 90053e10 000001e0 IPC.lib : terminal.o (.text.TERMINAL_u16FindOptionFromString) 90053ff0 000001e0 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_write) 900541d0 000001de freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_FindNext) 900543ae 00000002 --HOLE-- [fill = 0] 900543b0 000001de lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_periodicFxn) 9005458e 00000002 --HOLE-- [fill = 0] 90054590 000001da enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma.obj (.text.EnetUdma_getMappedRxChNum) 9005476a 00000006 --HOLE-- [fill = 0] 90054770 000001da : enet.obj (.text.Enet_validateIoctl) 9005494a 00000006 --HOLE-- [fill = 0] 90054950 000001d8 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_flow.obj (.text.Udma_flowConfig) 90054b28 000001d8 libc.a : strtoul.c.obj (.text.strtoul) 90054d00 000001d6 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_open) 90054ed6 0000000a --HOLE-- [fill = 0] 90054ee0 000001d2 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_stats.obj (.text.CpswStats_open) 900550b2 0000000e --HOLE-- [fill = 0] 900550c0 000001d2 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_CreateDirent) 90055292 00000002 --HOLE-- [fill = 0] 90055294 000001d0 libclang_rt.builtins.a : udivsi3.S.obj (.text) 90055464 0000000c --HOLE-- [fill = 0] 90055470 000001ce freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.FF_CreateIOManger) 9005563e 00000002 --HOLE-- [fill = 0] 90055640 000001ce : ff_dir.obj (.text.FF_FindFreeDirent) 9005580e 00000002 --HOLE-- [fill = 0] 90055810 000001cc drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_transfer) 900559dc 00000004 --HOLE-- [fill = 0] 900559e0 000001ca enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma.obj (.text.EnetDma_submitRxPktQ) 90055baa 00000006 --HOLE-- [fill = 0] 90055bb0 000001c6 : enet_udma.obj (.text.EnetDma_submitTxPktQ) 90055d76 0000000a --HOLE-- [fill = 0] 90055d80 000001c6 : enet_rm_ioctl.obj (.text.EnetRm_allocTxChNum) 90055f46 0000000a --HOLE-- [fill = 0] 90055f50 000001c6 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_out.obj (.text.tcp_create_segment) 90056116 0000000a --HOLE-- [fill = 0] 90056120 000001c4 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_read) 900562e4 0000000c --HOLE-- [fill = 0] 900562f0 000001c2 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet.obj (.text.Enet_validateGenericIoctl) 900564b2 0000000e --HOLE-- [fill = 0] 900564c0 000001be drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.text.DDR_inlineECCCfg) 9005667e 00000002 --HOLE-- [fill = 0] 90056680 000001bc lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_bind) 9005683c 00000004 --HOLE-- [fill = 0] 90056840 000001ba : udp.obj (.text.udp_sendto) 900569fa 00000006 --HOLE-- [fill = 0] 90056a00 000001b8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_cpts.obj (.text.CpswCpts_open) 90056bb8 000001b8 libc.a : memory.c.obj (.text.aligned_alloc) 90056d70 000001b8 : memory.c.obj (.text.free) 90056f28 00000008 --HOLE-- [fill = 0] 90056f30 000001b4 drivers.am64x.r5f.ti-arm-clang.debug.lib : soc.obj (.text.SOC_moduleSetClockFrequency) 900570e4 0000000c --HOLE-- [fill = 0] 900570f0 000001b4 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_out.obj (.text.tcp_write_checks) 900572a4 0000000c --HOLE-- [fill = 0] 900572b0 000001b0 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_delPolicerEntry) 90057460 000001b0 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dns.obj (.text.dns_call_found) 90057610 000001b0 : tcp_out.obj (.text.tcp_pbuf_prealloc) 900577c0 000001aa enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_ioctl.obj (.text.Mdio_readRegC45) 9005796a 00000006 --HOLE-- [fill = 0] 90057970 000001aa eeprom.o (.text.PromPrint) 90057b1a 00000006 --HOLE-- [fill = 0] 90057b20 000001a8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_appmemutils.obj (.text.EnetDma_checkPktState) 90057cc8 00000008 --HOLE-- [fill = 0] 90057cd0 000001a8 : enet_udma_priv.obj (.text.EnetDma_checkPktState) 90057e78 00000008 --HOLE-- [fill = 0] 90057e80 000001a8 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : custom_pbuf.obj (.text.EnetDma_checkPktState) 90058028 00000008 --HOLE-- [fill = 0] 90058030 000001a8 : lwip2enet.obj (.text.EnetDma_checkPktState) 900581d8 00000008 --HOLE-- [fill = 0] 900581e0 000001a6 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_open) 90058386 0000000a --HOLE-- [fill = 0] 90058390 000001a6 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_CreateLFNs) 90058536 0000000a --HOLE-- [fill = 0] 90058540 000001a6 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : udp.obj (.text.udp_sendto_if) 900586e6 0000000a --HOLE-- [fill = 0] 900586f0 000001a4 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_getFATEntry) 90058894 000001a4 libc.a : fputs.c.obj (.text.fputs) 90058a38 00000008 --HOLE-- [fill = 0] 90058a40 0000019e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_addMcastAddr) 90058bde 00000002 --HOLE-- [fill = 0] 90058be0 0000019e freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_sys.obj (.text.FF_FS_Add) 90058d7e 00000002 --HOLE-- [fill = 0] 90058d80 0000019e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : mem.obj (.text.mem_free) 90058f1e 00000002 --HOLE-- [fill = 0] 90058f20 0000019a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma.obj (.text.EnetUdma_open) 900590ba 00000006 --HOLE-- [fill = 0] 900590c0 0000019a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dns.obj (.text.dns_check_entry) 9005925a 00000006 --HOLE-- [fill = 0] 90059260 0000019a : etharp.obj (.text.etharp_input) 900593fa 00000006 --HOLE-- [fill = 0] 90059400 0000019a : udp.obj (.text.udp_bind) 9005959a 00000006 --HOLE-- [fill = 0] 900595a0 00000198 cpswconfighandler.o (.text.EnetApp_initLinkArgs) 90059738 00000008 --HOLE-- [fill = 0] 90059740 00000198 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma.obj (.text.EnetUdma_checkRxFlowParams) 900598d8 00000008 --HOLE-- [fill = 0] 900598e0 00000198 : enet_udma.obj (.text.EnetUdma_checkTxChParams) 90059a78 00000008 --HOLE-- [fill = 0] 90059a80 00000198 IPC.lib : pec_prom.o (.text.PP_Validate) 90059c18 00000008 --HOLE-- [fill = 0] 90059c20 00000198 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmClearInterruptRoute) 90059db8 00000008 --HOLE-- [fill = 0] 90059dc0 00000198 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_realloc) 90059f58 00000008 --HOLE-- [fill = 0] 90059f60 00000196 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ch.obj (.text.Udma_chConfigTx) 9005a0f6 0000000a --HOLE-- [fill = 0] 9005a100 00000196 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_discover) 9005a296 0000000a --HOLE-- [fill = 0] 9005a2a0 00000196 : dhcp.obj (.text.dhcp_reboot) 9005a436 0000000a --HOLE-- [fill = 0] 9005a440 00000196 : tcp_out.obj (.text.tcp_zero_window_probe) 9005a5d6 0000000a --HOLE-- [fill = 0] 9005a5e0 00000194 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.EnetUdma_ringDequeue) 9005a774 0000000c --HOLE-- [fill = 0] 9005a780 00000190 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_close) 9005a910 00000190 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_start) 9005aaa0 00000190 : etharp.obj (.text.etharp_update_arp_entry) 9005ac30 00000190 flasher.o (.text.flasher_console) 9005adc0 0000018e freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.FF_GetEfiPartitionEntry) 9005af4e 00000002 --HOLE-- [fill = 0] 9005af50 0000018e termcom.o (.text.TERMCOM_vReboot) 9005b0de 00000002 --HOLE-- [fill = 0] 9005b0e0 0000018e enet_main.o (.text.eoe_handle) 9005b26e 00000002 --HOLE-- [fill = 0] 9005b270 0000018e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ethernet.obj (.text.ethernet_input) 9005b3fe 00000002 --HOLE-- [fill = 0] 9005b400 0000018c freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_CreateLFNEntry) 9005b58c 00000004 --HOLE-- [fill = 0] 9005b590 0000018c drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_dma_udma.obj (.text.OspiDma_udmaUpdateSubmitTR) 9005b71c 00000004 --HOLE-- [fill = 0] 9005b720 0000018a freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_string.obj (.text.FF_Utf16ctoUtf8c) 9005b8aa 00000006 --HOLE-- [fill = 0] 9005b8b0 0000018a drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmIrqDeleteRoute) 9005ba3a 00000006 --HOLE-- [fill = 0] 9005ba40 0000018a : sciclient_rm_irq.obj (.text.Sciclient_rmProgramInterruptRoute) 9005bbca 00000006 --HOLE-- [fill = 0] 9005bbd0 0000018a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_copy_partial) 9005bd5a 00000006 --HOLE-- [fill = 0] 9005bd60 00000186 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmIrqProgramRoute) 9005bee6 0000000a --HOLE-- [fill = 0] 9005bef0 00000184 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_setAleCfg) 9005c074 0000000c --HOLE-- [fill = 0] 9005c080 00000184 board.am64x.r5f.ti-arm-clang.debug.lib : eeprom_at24c.obj (.text.EEPROM_AT24C_write) 9005c204 0000000c --HOLE-- [fill = 0] 9005c210 00000184 : flash_nor_ospi.obj (.text.Flash_set444mode) 9005c394 0000000c --HOLE-- [fill = 0] 9005c3a0 00000184 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_format.obj (.text.prvFormatInitialiseFAT) 9005c524 0000000c --HOLE-- [fill = 0] 9005c530 00000182 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_macport_est.obj (.text.CpswEst_setState) 9005c6b2 0000000e --HOLE-- [fill = 0] 9005c6c0 00000182 ti_enet_open_close.o (.text.EnetApp_getRxDmaHandle) 9005c842 0000000e --HOLE-- [fill = 0] 9005c850 00000182 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.EnetUdma_ringEnqueue) 9005c9d2 0000000e --HOLE-- [fill = 0] 9005c9e0 00000182 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ch.obj (.text.Udma_chEnableLocal) 9005cb62 0000000e --HOLE-- [fill = 0] 9005cb70 00000182 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_alloc) 9005ccf2 0000000e --HOLE-- [fill = 0] 9005cd00 0000017e drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_readCmd) 9005ce7e 00000002 --HOLE-- [fill = 0] 9005ce80 0000017c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_rm.obj (.text.EnetRm_initRxObj) 9005cffc 00000004 --HOLE-- [fill = 0] 9005d000 0000017c : enet_udma_priv.obj (.text.EnetUdma_initRxFreeDescQ) 9005d17c 00000004 --HOLE-- [fill = 0] 9005d180 0000017a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : autoip.obj (.text.autoip_tmr) 9005d2fa 00000006 --HOLE-- [fill = 0] 9005d300 00000178 tftpserver.o (.text.correct_filename_len) 9005d478 00000008 --HOLE-- [fill = 0] 9005d480 00000176 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : dp83867.obj (.text.Dp83867_config) 9005d5f6 0000000a --HOLE-- [fill = 0] 9005d600 00000174 : enet_rm.obj (.text.EnetRm_initTxObj) 9005d774 0000000c --HOLE-- [fill = 0] 9005d780 0000016e lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : custom_pbuf.obj (.text.custom_pbuf_free) 9005d8ee 00000002 --HOLE-- [fill = 0] 9005d8f0 0000016c drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaChanOpTeardownChan) 9005da5c 00000004 --HOLE-- [fill = 0] 9005da60 0000016c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ioctl.obj (.text.Cpsw_internalIoctl_handler_ENET_IOCTL_REGISTER_DSTMAC_RX_FLOW) 9005dbcc 00000004 --HOLE-- [fill = 0] 9005dbd0 0000016c drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_readDirect) 9005dd3c 00000004 --HOLE-- [fill = 0] 9005dd40 0000016c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : etharp.obj (.text.etharp_output_to_arp_index) 9005deac 00000004 --HOLE-- [fill = 0] 9005deb0 0000016c : ip4.obj (.text.ip4_route) 9005e01c 00000004 --HOLE-- [fill = 0] 9005e020 0000016a drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_configInstance) 9005e18a 00000006 --HOLE-- [fill = 0] 9005e190 00000168 : csl_bcdma.obj (.text.CSL_bcdmaChanOp) 9005e2f8 00000008 --HOLE-- [fill = 0] 9005e300 00000168 ti_enet_open_close.o (.text.EnetApp_ConfigureDscpMapping) 9005e468 00000008 --HOLE-- [fill = 0] 9005e470 00000168 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ch.obj (.text.Udma_chOpen) 9005e5d8 00000008 --HOLE-- [fill = 0] 9005e5e0 00000166 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.text.tcp_parseopt) 9005e746 0000000a --HOLE-- [fill = 0] 9005e750 00000164 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma.obj (.text.EnetDma_retrieveRxPktQ) 9005e8b4 0000000c --HOLE-- [fill = 0] 9005e8c0 00000164 : enet_udma.obj (.text.EnetDma_retrieveTxPktQ) 9005ea24 0000000c --HOLE-- [fill = 0] 9005ea30 00000164 : enet_phymdio_dflt.obj (.text.EnetPhyMdioDflt_writeC45) 9005eb94 0000000c --HOLE-- [fill = 0] 9005eba0 00000164 : enet_rm.obj (.text.EnetRm_open) 9005ed04 0000000c --HOLE-- [fill = 0] 9005ed10 00000162 : cpsw_ale_ioctl.obj (.text.CpswAle_setIPSrcDstPolicerEntry) 9005ee72 0000000e --HOLE-- [fill = 0] 9005ee80 00000162 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.LPDDR4_INTR_SanityFunction3) 9005efe2 0000000e --HOLE-- [fill = 0] 9005eff0 00000162 httpd.o (.text.http_write) 9005f152 0000000e --HOLE-- [fill = 0] 9005f160 00000160 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setAlePortControlReg) 9005f2c0 00000160 : cpsw_hostport.obj (.text.CpswHostPort_ioctl) 9005f420 00000160 : cpsw_stats.obj (.text.CpswStats_ioctl) 9005f580 00000160 : enet_rm.obj (.text.EnetRm_initMacObj) 9005f6e0 00000160 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_ctrlInit) 9005f840 00000160 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : inet_chksum.obj (.text.inet_cksum_pseudo_partial_base) 9005f9a0 0000015e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_phymdio_dflt.obj (.text.EnetPhyMdioDflt_readC45) 9005fafe 00000002 --HOLE-- [fill = 0] 9005fb00 0000015e : enet_rm_ioctl.obj (.text.EnetRm_ioctl_handler_ENET_RM_IOCTL_INTERNAL_ALLOC_RX_FLOW) 9005fc5e 00000002 --HOLE-- [fill = 0] 9005fc60 0000015e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.text.tcp_free_acked_segments) 9005fdbe 00000002 --HOLE-- [fill = 0] 9005fdc0 0000015c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.text.Cpsw_setDfltThreadCfg) 9005ff1c 00000004 --HOLE-- [fill = 0] 9005ff20 0000015c freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.FF_FlushCache) 9006007c 00000004 --HOLE-- [fill = 0] 90060080 0000015c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_rebind) 900601dc 00000004 --HOLE-- [fill = 0] 900601e0 0000015a ti_enet_open_close.o (.text.EnetApp_driverOpen) 9006033a 00000006 --HOLE-- [fill = 0] 90060340 0000015a drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_rm.obj (.text.Udma_rmAllocMappedRxCh) 9006049a 00000006 --HOLE-- [fill = 0] 900604a0 0000015a : udma_rm.obj (.text.Udma_rmAllocMappedTxCh) 900605fa 00000006 --HOLE-- [fill = 0] 90060600 0000015a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_renew) 9006075a 00000006 --HOLE-- [fill = 0] 90060760 00000158 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaChanOpGetChanStats) 900608b8 00000008 --HOLE-- [fill = 0] 900608c0 00000158 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_initCfg) 90060a18 00000008 --HOLE-- [fill = 0] 90060a20 00000158 board.am64x.r5f.ti-arm-clang.debug.lib : eeprom_at24c.obj (.text.EEPROM_AT24C_read) 90060b78 00000008 --HOLE-- [fill = 0] 90060b80 00000158 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : etharp.obj (.text.etharp_tmr) 90060cd8 00000008 --HOLE-- [fill = 0] 90060ce0 00000158 httpd.o (.text.http_recv) 90060e38 00000008 --HOLE-- [fill = 0] 90060e40 00000158 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : raw.obj (.text.raw_input) 90060f98 00000008 --HOLE-- [fill = 0] 90060fa0 00000156 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_setVlanPolicerEntry) 900610f6 0000000a --HOLE-- [fill = 0] 90061100 00000156 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_mmcsd.obj (.text.FF_MMCSDDiskInit) 90061256 0000000a --HOLE-- [fill = 0] 90061260 00000154 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_phymdio_dflt.obj (.text.EnetPhyMdioDflt_writeC22) 900613b4 0000000c --HOLE-- [fill = 0] 900613c0 00000154 : enet_udma_priv.obj (.text.EnetUdma_registerEvent) 90061514 0000000c --HOLE-- [fill = 0] 90061520 00000154 ti_enet_lwipif.o (.text.LwipifEnetApp_getRxChIDs) 90061674 0000000c --HOLE-- [fill = 0] 90061680 00000154 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_format.obj (.text.prvFormatGetClusterSize) 900617d4 0000000c --HOLE-- [fill = 0] 900617e0 00000154 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : udp.obj (.text.udp_connect) 90061934 0000000c --HOLE-- [fill = 0] 90061940 00000152 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.FF_Truncate) 90061a92 0000000e --HOLE-- [fill = 0] 90061aa0 00000152 : ff_string.obj (.text.FF_strtok) 90061bf2 0000000e --HOLE-- [fill = 0] 90061c00 00000152 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.LPDDR4_INTR_SanityFunction4) 90061d52 0000000e --HOLE-- [fill = 0] 90061d60 00000152 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : icmp.obj (.text.icmp_send_response) 90061eb2 0000000e --HOLE-- [fill = 0] 90061ec0 00000150 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpgmac_sl.obj (.text.CSL_CPGMAC_SL_getInterVLANCfg) 90062010 00000150 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_lcdma_ringacc.obj (.text.CSL_lcdma_ringaccDequeue) 90062160 00000150 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_rm.obj (.text.EnetRm_delCoreAttached) 900622b0 00000150 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_writeCmd) 90062400 00000150 : uart_v0.obj (.text.UART_procLineStatusErr) 90062550 00000150 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_handle_ack) 900626a0 0000014e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_findIPv6Addr) 900627ee 00000002 --HOLE-- [fill = 0] 900627f0 0000014e drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_writeIndirect) 9006293e 00000002 --HOLE-- [fill = 0] 90062940 0000014e enet_main.o (.text.enet_start) 90062a8e 00000002 --HOLE-- [fill = 0] 90062a90 0000014e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4.obj (.text.ip4_forward) 90062bde 00000002 --HOLE-- [fill = 0] 90062be0 0000014c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_getAleIPv6Entry) 90062d2c 00000004 --HOLE-- [fill = 0] 90062d30 0000014c : enet_phymdio_dflt.obj (.text.EnetPhyMdioDflt_readC22) 90062e7c 00000004 --HOLE-- [fill = 0] 90062e80 0000014c IPCInterface.o (.text.IPCRxHandler) 90062fcc 00000004 --HOLE-- [fill = 0] 90062fd0 0000014a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_mapPolicer2CslMask) 9006311a 00000006 --HOLE-- [fill = 0] 90063120 0000014a ti_enet_open_close.o (.text.EnetApp_closeRxDma) 9006326a 00000006 --HOLE-- [fill = 0] 90063270 0000014a freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_UnlinkClusterChain) 900633ba 00000006 --HOLE-- [fill = 0] 900633c0 00000148 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.text.tcp_timewait_input) 90063508 00000008 --HOLE-- [fill = 0] 90063510 00000146 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio.obj (.text.Mdio_ioctl) 90063656 0000000a --HOLE-- [fill = 0] 90063660 00000146 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ch.obj (.text.Udma_chAssignRegOverlay) 900637a6 0000000a --HOLE-- [fill = 0] 900637b0 00000146 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : udp.obj (.text.udp_input_local_match) 900638f6 0000000a --HOLE-- [fill = 0] 90063900 00000144 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_FetchEntryWithContext) 90063a44 0000000c --HOLE-- [fill = 0] 90063a50 00000144 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwiperf.obj (.text.lwiperf_start_tcp_server_impl) 90063b94 0000000c --HOLE-- [fill = 0] 90063ba0 00000144 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_format.obj (.text.prvPartitionPrimary) 90063ce4 00000144 libc.a : setvbuf.c.obj (.text.setvbuf) 90063e28 00000008 --HOLE-- [fill = 0] 90063e30 00000144 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_close_shutdown_fin) 90063f74 0000000c --HOLE-- [fill = 0] 90063f80 00000142 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_delPortUcastEntries) 900640c2 0000000e --HOLE-- [fill = 0] 900640d0 00000142 : cpsw_ioctl.obj (.text.Cpsw_closePortLink) 90064212 0000000e --HOLE-- [fill = 0] 90064220 00000142 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient.obj (.text.Sciclient_sendMessage) 90064362 0000000e --HOLE-- [fill = 0] 90064370 00000142 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : igmp.obj (.text.igmp_lookup_group) 900644b2 0000000e --HOLE-- [fill = 0] 900644c0 00000142 : mem.obj (.text.mem_malloc) 90064602 0000000e --HOLE-- [fill = 0] 90064610 00000140 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.FF_Seek) 90064750 00000140 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_close) 90064890 00000140 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmIaValidateMapping) 900649d0 00000140 : udma_rm.obj (.text.Udma_rmAllocMappedRing) 90064b10 00000140 libc.a : s_scalbn.c.obj (.text.scalbn) 90064c50 0000013e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_setAleVlanUnicastAddrEntry) 90064d8e 00000002 --HOLE-- [fill = 0] 90064d90 0000013e freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_PushEntryWithContext) 90064ece 00000002 --HOLE-- [fill = 0] 90064ed0 0000013e drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4_16bit.obj (.text.LPDDR4_AckCtlInterrupt_4) 9006500e 00000002 --HOLE-- [fill = 0] 90065010 0000013e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_process_refused_data) 9006514e 00000002 --HOLE-- [fill = 0] 90065150 0000013a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_setMacAddrPolicerEntry) 9006528a 00000006 --HOLE-- [fill = 0] 90065290 0000013a : enet.obj (.text.Enet_ioctl) 900653ca 00000006 --HOLE-- [fill = 0] 900653d0 0000013a drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4_16bit.obj (.text.LPDDR4_AckCtlInterrupt) 9006550a 00000006 --HOLE-- [fill = 0] 90065510 0000013a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_release_and_stop) 9006564a 00000006 --HOLE-- [fill = 0] 90065650 00000138 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_registerIntr) 90065788 00000008 --HOLE-- [fill = 0] 90065790 00000138 nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text._ntoa_long_long) 900658c8 00000008 --HOLE-- [fill = 0] 900658d0 00000138 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_out.obj (.text.tcp_rst) 90065a08 00000008 --HOLE-- [fill = 0] 90065a10 00000136 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_setAleIPv4Entry) 90065b46 0000000a --HOLE-- [fill = 0] 90065b50 00000136 drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.text.DDR_start) 90065c86 0000000a --HOLE-- [fill = 0] 90065c90 00000136 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_phymdio_dflt.obj (.text.EnetPhyMdioDflt_isAlive) 90065dc6 0000000a --HOLE-- [fill = 0] 90065dd0 00000136 : enet_phymdio_dflt.obj (.text.EnetPhyMdioDflt_isLinked) 90065f06 0000000a --HOLE-- [fill = 0] 90065f10 00000136 IPC.lib : pec_prom.o (.text.PP_Upgrade) 90066046 0000000a --HOLE-- [fill = 0] 90066050 00000136 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmIrqVintDelete) 90066186 0000000a --HOLE-- [fill = 0] 90066190 00000136 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.text.tcp_oos_insert_segment) 900662c6 0000000a --HOLE-- [fill = 0] 900662d0 00000134 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_xferStatusPollingFxnCMD19) 90066404 0000000c --HOLE-- [fill = 0] 90066410 00000134 memtest.o (.text.memStessTest) 90066544 0000000c --HOLE-- [fill = 0] 90066550 00000132 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_setAleVlanMcastAddrEntry) 90066682 0000000e --HOLE-- [fill = 0] 90066690 00000130 : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_setAleUnicastAddrEntry) 900667c0 00000130 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos_r5.obj (.text.ClockP_init) 900668f0 00000130 ti_enet_open_close.o (.text.EnetApp_driverClose) 90066a20 00000130 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet.obj (.text.EnetMod_open) 90066b50 00000130 : enet.obj (.text.EnetPer_open) 90066c80 00000130 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_string.obj (.text.FF_Utf8ctoUtf16c) 90066db0 00000130 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_recoverBus) 90066ee0 00000130 : sciclient.obj (.text.Sciclient_recvMessage) 90067010 0000012e enet_main.o (.text.App_setupNetif) 9006713e 00000002 --HOLE-- [fill = 0] 90067140 0000012e drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_rm.obj (.text.Udma_rmAllocIrIntr) 9006726e 00000002 --HOLE-- [fill = 0] 90067270 0000012e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : igmp.obj (.text.igmp_send) 9006739e 00000002 --HOLE-- [fill = 0] 900673a0 0000012a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setCpswControlReg) 900674ca 00000006 --HOLE-- [fill = 0] 900674d0 0000012a : enet_utils.obj (.text.EnetUtils_macToPhyMii) 900675fa 00000006 --HOLE-- [fill = 0] 90067600 0000012a freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.FF_IncreaseFreeClusters) 9006772a 00000006 --HOLE-- [fill = 0] 90067730 0000012a drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_pm.obj (.text.Sciclient_pmQueryModuleClkFreq) 9006785a 00000006 --HOLE-- [fill = 0] 90067860 0000012a lwip-contrib-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcpecho_raw.obj (.text.tcpecho_raw_recv) 9006798a 00000006 --HOLE-- [fill = 0] 90067990 00000128 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.text.Cpsw_initCfg) 90067ab8 00000008 --HOLE-- [fill = 0] 90067ac0 00000128 ti_enet_lwipif.o (.text.LwipifEnetApp_getTxChIDs) 90067be8 00000008 --HOLE-- [fill = 0] 90067bf0 00000128 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_read) 90067d18 00000008 --HOLE-- [fill = 0] 90067d20 00000126 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_macport.obj (.text.CpswMacPort_ioctl) 90067e46 0000000a --HOLE-- [fill = 0] 90067e50 00000126 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiWrite) 90067f76 0000000a --HOLE-- [fill = 0] 90067f80 00000126 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_getModeSd) 900680a6 0000000a --HOLE-- [fill = 0] 900680b0 00000126 httpd_cgi_sii.o (.text.cgi_set_handler) 900681d6 0000000a --HOLE-- [fill = 0] 900681e0 00000126 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : netif.obj (.text.netif_set_addr) 90068306 0000000a --HOLE-- [fill = 0] 90068310 00000126 : pbuf.obj (.text.pbuf_take_at) 90068436 0000000a --HOLE-- [fill = 0] 90068440 00000126 : timeouts.obj (.text.sys_timeout_abs) 90068566 0000000a --HOLE-- [fill = 0] 90068570 00000126 : tcp_out.obj (.text.tcp_rexmit) 90068696 0000000a --HOLE-- [fill = 0] 900686a0 00000124 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_setAleMcastAddrEntry) 900687c4 0000000c --HOLE-- [fill = 0] 900687d0 00000124 : cpsw_ale.obj (.text.CpswAle_setIoctlHandlerFxn) 900688f4 0000000c --HOLE-- [fill = 0] 90068900 00000124 : cpsw_cpts.obj (.text.CpswCpts_setIoctlHandlerFxn) 90068a24 0000000c --HOLE-- [fill = 0] 90068a30 00000124 : cpsw_hostport.obj (.text.CpswHostPort_setIoctlHandlerFxn) 90068b54 0000000c --HOLE-- [fill = 0] 90068b60 00000124 : cpsw_macport_est.obj (.text.CpswMacPortEst_setIoctlHandlerFxn) 90068c84 0000000c --HOLE-- [fill = 0] 90068c90 00000124 : cpsw_macport.obj (.text.CpswMacPort_setIoctlHandlerFxn) 90068db4 0000000c --HOLE-- [fill = 0] 90068dc0 00000124 : cpsw_stats.obj (.text.CpswStats_setIoctlHandlerFxn) 90068ee4 0000000c --HOLE-- [fill = 0] 90068ef0 00000124 : cpsw.obj (.text.Cpsw_setIoctlHandlerFxn) 90069014 0000000c --HOLE-- [fill = 0] 90069020 00000124 : enet_phymdio_dflt.obj (.text.EnetPhyMdioDflt_setIoctlHandlerFxn) 90069144 0000000c --HOLE-- [fill = 0] 90069150 00000124 : enet_rm.obj (.text.EnetRm_setIoctlHandlerFxn) 90069274 0000000c --HOLE-- [fill = 0] 90069280 00000124 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_ExtendDirectory) 900693a4 0000000c --HOLE-- [fill = 0] 900693b0 00000124 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio.obj (.text.Mdio_setIoctlHandlerFxn) 900694d4 0000000c --HOLE-- [fill = 0] 900694e0 00000124 termcom.o (.text.parseOption) 90069604 0000000c --HOLE-- [fill = 0] 90069610 00000122 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_addUcastAddr) 90069732 0000000e --HOLE-- [fill = 0] 90069740 00000122 : enet_apputils_k3.obj (.text.EnetAppUtils_mainMmrCtrl) 90069862 0000000e --HOLE-- [fill = 0] 90069870 00000122 : mdio_manual_ioctl.obj (.text.Mdio_manualModePhyRegValReadC45) 90069992 0000000e --HOLE-- [fill = 0] 900699a0 00000122 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_rm.obj (.text.Udma_rmAllocBlkCopyCh) 90069ac2 0000000e --HOLE-- [fill = 0] 90069ad0 00000122 : udma_rm.obj (.text.Udma_rmAllocBlkCopyHcCh) 90069bf2 0000000e --HOLE-- [fill = 0] 90069c00 00000122 : udma_rm.obj (.text.Udma_rmAllocBlkCopyUhcCh) 90069d22 0000000e --HOLE-- [fill = 0] 90069d30 00000122 : udma_rm.obj (.text.Udma_rmAllocRxCh) 90069e52 0000000e --HOLE-- [fill = 0] 90069e60 00000122 : udma_rm.obj (.text.Udma_rmAllocRxHcCh) 90069f82 0000000e --HOLE-- [fill = 0] 90069f90 00000122 : udma_rm.obj (.text.Udma_rmAllocRxUhcCh) 9006a0b2 0000000e --HOLE-- [fill = 0] 9006a0c0 00000122 : udma_rm.obj (.text.Udma_rmAllocTxCh) 9006a1e2 0000000e --HOLE-- [fill = 0] 9006a1f0 00000122 : udma_rm.obj (.text.Udma_rmAllocTxHcCh) 9006a312 0000000e --HOLE-- [fill = 0] 9006a320 00000122 : udma_rm.obj (.text.Udma_rmAllocTxUhcCh) 9006a442 0000000e --HOLE-- [fill = 0] 9006a450 00000120 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_est.obj (.text.CpswEst_setIoctlHandlerFxn) 9006a570 00000120 : enet_rm_ioctl.obj (.text.EnetRm_allocInternalRxFlowIdx) 9006a690 00000120 IPC.lib : IPCTransceive.o (.text.IPC_vTransceiver) 9006a7b0 00000120 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_write) 9006a8d0 0000011e freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.FF_WritePartial) 9006a9ee 00000002 --HOLE-- [fill = 0] 9006a9f0 0000011e drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmIaValidateEvt) 9006ab0e 00000002 --HOLE-- [fill = 0] 9006ab10 0000011e : sciclient_rm_irq.obj (.text.Sciclient_rmIrqVintAdd) 9006ac2e 00000002 --HOLE-- [fill = 0] 9006ac30 0000011e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_add_header_impl) 9006ad4e 00000002 --HOLE-- [fill = 0] 9006ad50 0000011e : pbuf.obj (.text.pbuf_cat) 9006ae6e 00000002 --HOLE-- [fill = 0] 9006ae70 0000011c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_setAleVlanEntry) 9006af8c 00000004 --HOLE-- [fill = 0] 9006af90 0000011c : enet_queue.obj (.text.EnetQueue_append) 9006b0ac 00000004 --HOLE-- [fill = 0] 9006b0b0 0000011c : enet_utils.obj (.text.EnetUtils_delayNs) 9006b1cc 00000004 --HOLE-- [fill = 0] 9006b1d0 0000011c freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_FindDir) 9006b2ec 00000004 --HOLE-- [fill = 0] 9006b2f0 0000011c : ff_dir.obj (.text.FF_ShortNameExists) 9006b40c 00000004 --HOLE-- [fill = 0] 9006b410 0000011c board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiReset) 9006b52c 00000004 --HOLE-- [fill = 0] 9006b530 0000011c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_ioctl.obj (.text.Mdio_writeRegC45) 9006b64c 00000004 --HOLE-- [fill = 0] 9006b650 0000011c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_out.obj (.text.tcp_rexmit_rto_prepare) 9006b76c 00000004 --HOLE-- [fill = 0] 9006b770 0000011a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_setAleOutVlanEntry) 9006b88a 00000006 --HOLE-- [fill = 0] 9006b890 0000011a : enetphy.obj (.text.EnetPhy_resetWaitState) 9006b9aa 00000006 --HOLE-- [fill = 0] 9006b9b0 0000011a : enetphy.obj (.text.EnetPhy_setupManual) 9006baca 00000006 --HOLE-- [fill = 0] 9006bad0 0000011a tftpserver.o (.text.tftp_write) 9006bbea 00000006 --HOLE-- [fill = 0] 9006bbf0 00000118 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_setupNway) 9006bd08 00000008 --HOLE-- [fill = 0] 9006bd10 00000118 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4_16bit.obj (.text.LPDDR4_CheckCtlInterrupt) 9006be28 00000008 --HOLE-- [fill = 0] 9006be30 00000118 termcom.o (.text.TERMCOM_vADC4114) 9006bf48 00000008 --HOLE-- [fill = 0] 9006bf50 00000118 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ring_lcdma.obj (.text.Udma_ringSetCfgLcdma) 9006c068 00000008 --HOLE-- [fill = 0] 9006c070 00000118 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_update_rcv_ann_wnd) 9006c188 00000118 libclang_rt.builtins.a : udivmoddi4.S.obj (.text) 9006c2a0 00000116 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaChanOpDecChanStats) 9006c3b6 0000000a --HOLE-- [fill = 0] 9006c3c0 00000116 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ioctl.obj (.text.Cpsw_validateFlowId) 9006c4d6 0000000a --HOLE-- [fill = 0] 9006c4e0 00000116 : mdio_ioctl.obj (.text.Mdio_handleIntr) 9006c5f6 0000000a --HOLE-- [fill = 0] 9006c600 00000116 : mdio_manual_ioctl.obj (.text.Mdio_manualModePhyRegRead22) 9006c716 0000000a --HOLE-- [fill = 0] 9006c720 00000116 ti_drivers_config.o (.text.System_init) 9006c836 0000000a --HOLE-- [fill = 0] 9006c840 00000116 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_divisorLatchWrite) 9006c956 0000000a --HOLE-- [fill = 0] 9006c960 00000114 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_apputils_k3.obj (.text.EnetAppUtils_setDeviceState) 9006ca74 0000000c --HOLE-- [fill = 0] 9006ca80 00000114 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiSetProtocol) 9006cb94 0000000c --HOLE-- [fill = 0] 9006cba0 00000114 nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text._ntoa_long) 9006ccb4 00000114 libc.a : s_scalbnf.c.obj (.text.scalbnf) 9006cdc8 00000008 --HOLE-- [fill = 0] 9006cdd0 00000112 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.FF_GetModeBits) 9006cee2 0000000e --HOLE-- [fill = 0] 9006cef0 00000110 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_ioctl) 9006d000 00000110 : cpsw_cpts.obj (.text.CpswCpts_ioctl) 9006d110 00000110 : enet_rm.obj (.text.EnetRm_validateResPartInfo) 9006d220 00000110 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiWaitReady) 9006d330 00000110 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_pm.obj (.text.Sciclient_pmSetModuleClkFreq) 9006d440 0000010e : ddr.obj (.text.DDR_changeFreqAck) 9006d54e 00000002 --HOLE-- [fill = 0] 9006d550 0000010e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_hostport.obj (.text.EnetHostPortDma_open) 9006d65e 00000002 --HOLE-- [fill = 0] 9006d660 0000010e memtest.o (.text.memTestData) 9006d76e 00000002 --HOLE-- [fill = 0] 9006d770 0000010c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_hostport.obj (.text.EnetHostPortDma_close) 9006d87c 00000004 --HOLE-- [fill = 0] 9006d880 0000010c : enetphy.obj (.text.EnetPhy_rmwReg) 9006d98c 00000004 --HOLE-- [fill = 0] 9006d990 0000010c : enet_udma_priv.obj (.text.EnetUdma_flushRxFlowRing) 9006da9c 00000004 --HOLE-- [fill = 0] 9006daa0 0000010c : enet_udma_priv.obj (.text.EnetUdma_flushTxChRing) 9006dbac 00000004 --HOLE-- [fill = 0] 9006dbb0 0000010c IPC.lib : pec_prom.o (.text.PP_Write_ID_CRC) 9006dcbc 00000004 --HOLE-- [fill = 0] 9006dcc0 0000010c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_out.obj (.text.tcp_output_control_segment) 9006ddcc 00000004 --HOLE-- [fill = 0] 9006ddd0 0000010a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.text.Cpsw_close) 9006deda 00000006 --HOLE-- [fill = 0] 9006dee0 0000010a eeprom.o (.text.PromErase) 9006dfea 00000006 --HOLE-- [fill = 0] 9006dff0 0000010a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_recved) 9006e0fa 00000006 --HOLE-- [fill = 0] 9006e100 00000108 : tcp_out.obj (.text.tcp_output_alloc_header_common) 9006e208 00000008 --HOLE-- [fill = 0] 9006e210 00000106 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_appmemutils.obj (.text.EnetMem_getDescMemEntry) 9006e316 0000000a --HOLE-- [fill = 0] 9006e320 00000106 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4_16bit.obj (.text.LPDDR4_AckCtlInterrupt_3) 9006e426 0000000a --HOLE-- [fill = 0] 9006e430 00000106 : mmcsd_priv.obj (.text.MMCSD_parseCSDSd) 9006e536 0000000a --HOLE-- [fill = 0] 9006e540 00000106 : ospi_v0.obj (.text.OSPI_setProtocol) 9006e646 0000000a --HOLE-- [fill = 0] 9006e650 00000106 : udma_event.obj (.text.Udma_eventCheckParams) 9006e756 0000000a --HOLE-- [fill = 0] 9006e760 00000106 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_memcmp) 9006e866 0000000a --HOLE-- [fill = 0] 9006e870 00000106 : pbuf.obj (.text.pbuf_remove_header) 9006e976 0000000a --HOLE-- [fill = 0] 9006e980 00000104 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setPortEstConfig) 9006ea84 0000000c --HOLE-- [fill = 0] 9006ea90 00000104 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_pktdma.obj (.text.CSL_pktdmaTeardownChan) 9006eb94 0000000c --HOLE-- [fill = 0] 9006eba0 00000104 nortos.am64x.r5f.ti-arm-clang.debug.lib : EventP_nortos.obj (.text.EventP_waitBits) 9006eca4 0000000c --HOLE-- [fill = 0] 9006ecb0 00000104 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2lwipif.obj (.text.LWIPIF_LWIP_UdpLiteValidateChkSum) 9006edb4 0000000c --HOLE-- [fill = 0] 9006edc0 00000104 ti_enet_lwipif.o (.text.LwipifEnetApp_netifOpen) 9006eec4 0000000c --HOLE-- [fill = 0] 9006eed0 00000104 IPC.lib : termcom_common.o (.text.TERMCOM_vDebug) 9006efd4 0000000c --HOLE-- [fill = 0] 9006efe0 00000104 : pec_uart.o (.text.UART_u16WriteCharNonBlocking) 9006f0e4 0000000c --HOLE-- [fill = 0] 9006f0f0 00000104 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_decline) 9006f1f4 0000000c --HOLE-- [fill = 0] 9006f200 00000104 httpd.o (.text.http_set_ssi_handler) 9006f304 0000000c --HOLE-- [fill = 0] 9006f310 00000102 drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_uniflash.obj (.text.Bootloader_uniflashFlashFile) 9006f412 0000000e --HOLE-- [fill = 0] 9006f420 00000102 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_cpts_ioctl.obj (.text.CpswCpts_ioctl_handler_CPSW_CPTS_IOCTL_SET_ESTF) 9006f522 0000000e --HOLE-- [fill = 0] 9006f530 00000102 : enet_apputils_k3.obj (.text.EnetAppUtils_enableClocks) 9006f632 0000000e --HOLE-- [fill = 0] 9006f640 00000102 cpsw_custom_phy.o (.text.EnetBoard_setupPorts) 9006f742 0000000e --HOLE-- [fill = 0] 9006f750 00000102 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma.obj (.text.EnetUdma_closeRxCh) 9006f852 0000000e --HOLE-- [fill = 0] 9006f860 00000102 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.FF_DecreaseFreeClusters) 9006f962 0000000e --HOLE-- [fill = 0] 9006f970 00000102 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_addr.obj (.text.ip4addr_ntoa_r) 9006fa72 0000000e --HOLE-- [fill = 0] 9006fa80 00000102 : netif.obj (.text.netif_do_set_ipaddr) 9006fb82 0000000e --HOLE-- [fill = 0] 9006fb90 00000100 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_lcdma_ringacc.obj (.text.CSL_lcdma_ringaccPop64MultiAccess) 9006fc90 00000100 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_getId) 9006fd90 00000100 : enet_rm.obj (.text.EnetRm_ioctl) 9006fe90 00000100 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiErase) 9006ff90 00000100 : flash_nor_ospi.obj (.text.Flash_norOspiEraseSector) 90070090 000000fe drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_uniflash.obj (.text.Bootloader_uniflashFlashErase) 9007018e 00000002 --HOLE-- [fill = 0] 90070190 000000fe enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_stats.obj (.text.CpswStats_resetMacStats) 9007028e 00000002 --HOLE-- [fill = 0] 90070290 000000fe drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmIrGetOutp) 9007038e 00000002 --HOLE-- [fill = 0] 90070390 000000fe : udma.obj (.text.Udma_init) 9007048e 00000002 --HOLE-- [fill = 0] 90070490 000000fe lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_out.obj (.text.tcp_send_empty_ack) 9007058e 00000002 --HOLE-- [fill = 0] 90070590 000000fc enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_createMutex) 9007068c 00000004 --HOLE-- [fill = 0] 90070690 000000fc freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_sys.obj (.text.FF_FS_Find) 9007078c 00000004 --HOLE-- [fill = 0] 90070790 000000fc lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_sendTxPackets) 9007088c 00000004 --HOLE-- [fill = 0] 90070890 000000fc ti_enet_lwipif.o (.text.LwipifEnetAppCb_getEnetLwipIfInstInfo) 9007098c 00000004 --HOLE-- [fill = 0] 90070990 000000fa drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_lcdma_ringacc.obj (.text.CSL_lcdma_ringaccPush64MultiAccess) 90070a8a 00000006 --HOLE-- [fill = 0] 90070a90 000000fa enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.EnetUdmaStats_updateNotifyStats) 90070b8a 00000006 --HOLE-- [fill = 0] 90070b90 000000fa freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.FF_ReadPartial) 90070c8a 00000006 --HOLE-- [fill = 0] 90070c90 000000fa : ff_file.obj (.text.FF_WriteClusters) 90070d8a 00000006 --HOLE-- [fill = 0] 90070d90 000000fa drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_priv.obj (.text.MMCSD_parseCIDEmmc) 90070e8a 00000006 --HOLE-- [fill = 0] 90070e90 000000f8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.text.Cpsw_ioctlInternal) 90070f88 00000008 --HOLE-- [fill = 0] 90070f90 000000f8 : enetphy.obj (.text.EnetPhy_tick) 90071088 00000008 --HOLE-- [fill = 0] 90071090 000000f8 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.FF_ReadClusters) 90071188 00000008 --HOLE-- [fill = 0] 90071190 000000f6 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpts.obj (.text.CSL_CPTS_setCntlReg) 90071286 0000000a --HOLE-- [fill = 0] 90071290 000000f6 : cpsw.obj (.text.Cpsw_handleMdioLinkStateChange) 90071386 0000000a --HOLE-- [fill = 0] 90071390 000000f6 : cpsw_ioctl.obj (.text.Cpsw_internalIoctl_handler_ENET_PER_IOCTL_ATTACH_CORE) 90071486 0000000a --HOLE-- [fill = 0] 90071490 000000f6 : enet_queue.obj (.text.EnetQueue_enq) 90071586 0000000a --HOLE-- [fill = 0] 90071590 000000f6 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2CControllerInitExpClk) 90071686 0000000a --HOLE-- [fill = 0] 90071690 000000f6 nortos.am64x.r5f.ti-arm-clang.debug.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_pend) 90071786 0000000a --HOLE-- [fill = 0] 90071790 000000f6 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_frag.obj (.text.ip_reass_remove_oldest_datagram) 90071886 0000000a --HOLE-- [fill = 0] 90071890 000000f4 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_apputils.obj (.text.EnetAppUtils_reduceCoreMacAllocation) 90071984 0000000c --HOLE-- [fill = 0] 90071990 000000f4 : enet_appmemutils.obj (.text.EnetMem_getRingMemEntry) 90071a84 0000000c --HOLE-- [fill = 0] 90071a90 000000f4 : enet.obj (.text.EnetPer_ioctl) 90071b84 0000000c --HOLE-- [fill = 0] 90071b90 000000f4 : enet.obj (.text.Enet_open) 90071c84 0000000c --HOLE-- [fill = 0] 90071c90 000000f4 IPC.lib : pec_prom.o (.text.PP_Write_FWPage) 90071d84 0000000c --HOLE-- [fill = 0] 90071d90 000000f4 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmTranslateIntOutput) 90071e84 0000000c --HOLE-- [fill = 0] 90071e90 000000f2 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_macport.obj (.text.CpswMacPort_setSwitchTxSched) 90071f82 0000000e --HOLE-- [fill = 0] 90071f90 000000f2 : enetphy.obj (.text.EnetPhy_isPhyLinked) 90072082 0000000e --HOLE-- [fill = 0] 90072090 000000f2 : enet_queue.obj (.text.EnetQueue_verifyQCount) 90072182 0000000e --HOLE-- [fill = 0] 90072190 000000f2 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_phyTuneAuto) 90072282 0000000e --HOLE-- [fill = 0] 90072290 000000f0 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet.obj (.text.EnetMod_ioctl) 90072380 000000f0 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_priv.obj (.text.MMCSD_parseECSDEmmc) 90072470 000000f0 IPC.lib : pec_prom.o (.text.PP_Write_FWID_PageCRC) 90072560 000000ee enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : dp83867.obj (.text.Dp83867_setClkDelay) 9007264e 00000002 --HOLE-- [fill = 0] 90072650 000000ee IPC.lib : pec_prom.o (.text.PP_Verify_ID_CRC) 9007273e 00000002 --HOLE-- [fill = 0] 90072740 000000ee lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : autoip.obj (.text.autoip_start) 9007282e 00000002 --HOLE-- [fill = 0] 90072830 000000ee : tcp_out.obj (.text.tcp_rexmit_fast) 9007291e 00000002 --HOLE-- [fill = 0] 90072920 000000ec enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_findIPv4Addr) 90072a0c 00000004 --HOLE-- [fill = 0] 90072a10 000000ec : cpsw_macport.obj (.text.CpswMacPort_setInterface) 90072afc 00000004 --HOLE-- [fill = 0] 90072b00 000000ec : cpsw_ioctl.obj (.text.Cpsw_internalIoctl_handler_ENET_PER_IOCTL_OPEN_PORT_LINK) 90072bec 00000004 --HOLE-- [fill = 0] 90072bf0 000000ec : enet_rm_ioctl.obj (.text.EnetRm_addCoreAttached) 90072cdc 00000004 --HOLE-- [fill = 0] 90072ce0 000000ec drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_sendMsg) 90072dcc 00000004 --HOLE-- [fill = 0] 90072dd0 000000ec : udma_event.obj (.text.Udma_eventIsrFxn) 90072ebc 00000004 --HOLE-- [fill = 0] 90072ec0 000000ec lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_recv) 90072fac 00000004 --HOLE-- [fill = 0] 90072fb0 000000ec : tcp.obj (.text.tcp_pcb_purge) 9007309c 00000004 --HOLE-- [fill = 0] 900730a0 000000ec : tcp.obj (.text.tcp_shutdown) 9007318c 00000004 --HOLE-- [fill = 0] 90073190 000000ea nortos.am64x.r5f.ti-arm-clang.debug.lib : AddrTranslateP.obj (.text.AddrTranslateP_getLocalAddr) 9007327a 00000006 --HOLE-- [fill = 0] 90073280 000000ea enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_getManualCaps) 9007336a 00000006 --HOLE-- [fill = 0] 90073370 000000ea freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_mmcsd.obj (.text.FF_MMCSDGetPartitionDetails) 9007345a 00000006 --HOLE-- [fill = 0] 90073460 000000ea drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4_16bit.obj (.text.LPDDR4_CheckCtlInterrupt_2) 9007354a 00000006 --HOLE-- [fill = 0] 90073550 000000e8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getCpswControlReg) 90073638 00000008 --HOLE-- [fill = 0] 90073640 000000e8 : enet_apputils.obj (.text.EnetAppUtils_initResourceConfig) 90073728 00000008 --HOLE-- [fill = 0] 90073730 000000e8 : enet_udma.obj (.text.EnetDma_initRxChParams) 90073818 00000008 --HOLE-- [fill = 0] 90073820 000000e8 : enetphy.obj (.text.EnetPhy_findCommonCaps) 90073908 00000008 --HOLE-- [fill = 0] 90073910 000000e8 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4_16bit.obj (.text.LPDDR4_AckCtlInterrupt_2) 900739f8 00000008 --HOLE-- [fill = 0] 90073a00 000000e8 : udma_event.obj (.text.Udma_eventFreeResource) 90073ae8 00000008 --HOLE-- [fill = 0] 90073af0 000000e8 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_set_struct) 90073bd8 00000008 --HOLE-- [fill = 0] 90073be0 000000e6 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_addDefaultEntries) 90073cc6 0000000a --HOLE-- [fill = 0] 90073cd0 000000e6 ti_enet_open_close.o (.text.EnetApp_openRxDma) 90073db6 0000000a --HOLE-- [fill = 0] 90073dc0 000000e6 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_isAlive) 90073ea6 0000000a --HOLE-- [fill = 0] 90073eb0 000000e6 : enet_rm_ioctl.obj (.text.EnetRm_allocRxFlowIdx) 90073f96 0000000a --HOLE-- [fill = 0] 90073fa0 000000e6 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_getModeEmmc) 90074086 0000000a --HOLE-- [fill = 0] 90074090 000000e6 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.prvDetermineFatType) 90074176 0000000a --HOLE-- [fill = 0] 90074180 000000e6 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_fasttmr) 90074266 0000000a --HOLE-- [fill = 0] 90074270 000000e4 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpts.obj (.text.CSL_CPTS_setupESTFn) 90074354 0000000c --HOLE-- [fill = 0] 90074360 000000e4 : cpsw_ale_ioctl.obj (.text.CpswAle_getPolicer) 90074444 0000000c --HOLE-- [fill = 0] 90074450 000000e4 : enet_rm.obj (.text.EnetRm_getFreeQ) 90074534 0000000c --HOLE-- [fill = 0] 90074540 000000e4 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_GetEntry) 90074624 0000000c --HOLE-- [fill = 0] 90074630 000000e4 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_halSetBusFreq) 90074714 0000000c --HOLE-- [fill = 0] 90074720 000000e2 : bootloader_uniflash.obj (.text.Bootloader_uniflashFlashVerifyFile) 90074802 0000000e --HOLE-- [fill = 0] 90074810 000000e2 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getAlePortControlReg) 900748f2 0000000e --HOLE-- [fill = 0] 90074900 000000e2 : enet_rm_ioctl.obj (.text.EnetRm_freeMacAddr) 900749e2 0000000e --HOLE-- [fill = 0] 900749f0 000000e2 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiReadId) 90074ad2 0000000e --HOLE-- [fill = 0] 90074ae0 000000e2 : led_tpic2810.obj (.text.LED_tpic2810Off) 90074bc2 0000000e --HOLE-- [fill = 0] 90074bd0 000000e2 : led_tpic2810.obj (.text.LED_tpic2810On) 90074cb2 0000000e --HOLE-- [fill = 0] 90074cc0 000000e2 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_phyInit) 90074da2 0000000e --HOLE-- [fill = 0] 90074db0 000000e2 : sciclient_rm_irq.obj (.text.Sciclient_rmIrqGetNode) 90074e92 0000000e --HOLE-- [fill = 0] 90074ea0 000000e0 : bootloader_uniflash.obj (.text.Bootloader_uniflashFlashVerifyFileMMCSDRaw) 90074f80 000000e0 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_findAddr) 90075060 000000e0 ti_enet_open_close.o (.text.EnetApp_getTxDmaHandle) 90075140 000000e0 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.EnetUdma_memMgrInit) 90075220 000000e0 : mdio_ioctl.obj (.text.Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_C22_READ) 90075300 000000e0 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_inc_pcb_refcount) 900753e0 000000e0 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_format.obj (.text.prvFormatInitialiseRootDir) 900754c0 000000de enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_getAleVlanUnicastAddrEntry) 9007559e 00000002 --HOLE-- [fill = 0] 900755a0 000000de board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiSet4ByteAddrMode) 9007567e 00000002 --HOLE-- [fill = 0] 90075680 000000de drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_cmdStatusPollingFxn) 9007575e 00000002 --HOLE-- [fill = 0] 90075760 000000de : sciclient.obj (.text.Sciclient_waitForMessage) 9007583e 00000002 --HOLE-- [fill = 0] 90075840 000000de : uart_v0.obj (.text.UART_intrEnable) 9007591e 00000002 --HOLE-- [fill = 0] 90075920 000000de httpd.o (.text.extract_uri_parameters) 900759fe 00000002 --HOLE-- [fill = 0] 90075a00 000000dc drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_uniflash.obj (.text.Bootloader_uniflashFlashOrVerifyXipFile) 90075adc 00000004 --HOLE-- [fill = 0] 90075ae0 000000dc : csl_intaggr.obj (.text.CSL_intaggrSetIntrEnable) 90075bbc 00000004 --HOLE-- [fill = 0] 90075bc0 000000dc enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_rm_ioctl.obj (.text.EnetRm_freeTxChNum) 90075c9c 00000004 --HOLE-- [fill = 0] 90075ca0 000000dc enet_main.o (.text.pec_ec_eoe_send_back) 90075d7c 00000004 --HOLE-- [fill = 0] 90075d80 000000da enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getPortControlReg) 90075e5a 00000006 --HOLE-- [fill = 0] 90075e60 000000da drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_emif.obj (.text.CSL_emifConfigController) 90075f3a 00000006 --HOLE-- [fill = 0] 90075f40 000000da enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_macport_ioctl.obj (.text.CpswMacPort_ioctl_handler_ENET_MACPORT_IOCTL_SET_INGRESS_DSCP_PRI_MAP) 9007601a 00000006 --HOLE-- [fill = 0] 90076020 000000da freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_Traverse) 900760fa 00000006 --HOLE-- [fill = 0] 90076100 000000da lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_setSGList) 900761da 00000006 --HOLE-- [fill = 0] 900761e0 000000da IPC.lib : pec_prom.o (.text.PP_Verify_FWID_PageCRC) 900762ba 00000006 --HOLE-- [fill = 0] 900762c0 000000da drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmIrInpIsFree) 9007639a 00000006 --HOLE-- [fill = 0] 900763a0 000000da : uart_v0.obj (.text.UART_intrDisable) 9007647a 00000006 --HOLE-- [fill = 0] 90076480 000000da : udma_rm.obj (.text.Udma_rmGetSciclientDefaultBoardCfgRmRange) 9007655a 00000006 --HOLE-- [fill = 0] 90076560 000000da lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : autoip.obj (.text.autoip_create_addr) 9007663a 00000006 --HOLE-- [fill = 0] 90076640 000000da httpd.o (.text.httpd_init_pcb) 9007671a 00000006 --HOLE-- [fill = 0] 90076720 000000d8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_getFreeIPv6Entry) 900767f8 00000008 --HOLE-- [fill = 0] 90076800 000000d8 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiSetRegCfg) 900768d8 00000008 --HOLE-- [fill = 0] 900768e0 000000d8 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_connected) 900769b8 00000008 --HOLE-- [fill = 0] 900769c0 000000d8 : altcp_tcp.obj (.text.altcp_tcp_sent) 90076a98 00000008 --HOLE-- [fill = 0] 90076aa0 000000d8 : tcp.obj (.text.tcp_eff_send_mss_netif) 90076b78 00000008 --HOLE-- [fill = 0] 90076b80 000000d6 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_nwayWaitState) 90076c56 0000000a --HOLE-- [fill = 0] 90076c60 000000d6 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_CreateFile) 90076d36 0000000a --HOLE-- [fill = 0] 90076d40 000000d6 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_setOeBit) 90076e16 0000000a --HOLE-- [fill = 0] 90076e20 000000d6 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_initRxObj) 90076ef6 0000000a --HOLE-- [fill = 0] 90076f00 000000d6 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ethernet.obj (.text.ethernet_output) 90076fd6 0000000a --HOLE-- [fill = 0] 90076fe0 000000d6 : lwiperf.obj (.text.lwiperf_tcp_close) 900770b6 0000000a --HOLE-- [fill = 0] 900770c0 000000d6 : tcp.obj (.text.tcp_kill_state) 90077196 0000000a --HOLE-- [fill = 0] 900771a0 000000d6 termserver.o (.text.termd_init) 90077276 0000000a --HOLE-- [fill = 0] 90077280 000000d4 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaChanOpGetChanRT) 90077354 0000000c --HOLE-- [fill = 0] 90077360 000000d4 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_ioctl_handler_CPSW_ALE_IOCTL_ADD_UCAST) 90077434 0000000c --HOLE-- [fill = 0] 90077440 000000d4 : enet_rm.obj (.text.EnetRm_freeResource) 90077514 0000000c --HOLE-- [fill = 0] 90077520 000000d4 : enet.obj (.text.Enet_getHandles) 900775f4 0000000c --HOLE-- [fill = 0] 90077600 000000d4 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_ClearCluster) 900776d4 0000000c --HOLE-- [fill = 0] 900776e0 000000d4 drivers.am64x.r5f.ti-arm-clang.debug.lib : pinmux.obj (.text.Pinmux_unlockMMR) 900777b4 0000000c --HOLE-- [fill = 0] 900777c0 000000d2 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_getAleUnicastAddrEntry) 90077892 0000000e --HOLE-- [fill = 0] 900778a0 000000d2 : enet_udma_priv.obj (.text.EnetUdma_rxCqIsr) 90077972 0000000e --HOLE-- [fill = 0] 90077980 000000d2 : enet_udma_priv.obj (.text.EnetUdma_txCqIsr) 90077a52 0000000e --HOLE-- [fill = 0] 90077a60 000000d2 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_close) 90077b32 0000000e --HOLE-- [fill = 0] 90077b40 000000d0 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_getAleVlanEntry) 90077c10 000000d0 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_poll) 90077ce0 000000ce enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_addIPv6Addr) 90077dae 00000002 --HOLE-- [fill = 0] 90077db0 000000ce : cpsw_ale.obj (.text.CpswAle_getIoctlHandlerFxn) 90077e7e 00000002 --HOLE-- [fill = 0] 90077e80 000000ce : cpsw_cpts.obj (.text.CpswCpts_getIoctlHandlerFxn) 90077f4e 00000002 --HOLE-- [fill = 0] 90077f50 000000ce : cpsw_hostport.obj (.text.CpswHostPort_getIoctlHandlerFxn) 9007801e 00000002 --HOLE-- [fill = 0] 90078020 000000ce : cpsw_macport_est.obj (.text.CpswMacPortEst_getIoctlHandlerFxn) 900780ee 00000002 --HOLE-- [fill = 0] 900780f0 000000ce : cpsw_macport.obj (.text.CpswMacPort_getIoctlHandlerFxn) 900781be 00000002 --HOLE-- [fill = 0] 900781c0 000000ce : cpsw_stats.obj (.text.CpswStats_getIoctlHandlerFxn) 9007828e 00000002 --HOLE-- [fill = 0] 90078290 000000ce : cpsw.obj (.text.Cpsw_getIoctlHandlerFxn) 9007835e 00000002 --HOLE-- [fill = 0] 90078360 000000ce : enet_phymdio_dflt.obj (.text.EnetPhyMdioDflt_getIoctlHandlerFxn) 9007842e 00000002 --HOLE-- [fill = 0] 90078430 000000ce : enet_rm_ioctl.obj (.text.EnetRm_allocResourceNode) 900784fe 00000002 --HOLE-- [fill = 0] 90078500 000000ce : enet_rm.obj (.text.EnetRm_getIoctlHandlerFxn) 900785ce 00000002 --HOLE-- [fill = 0] 900785d0 000000ce drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_enableBootPartition) 9007869e 00000002 --HOLE-- [fill = 0] 900786a0 000000ce : mmcsd_priv.obj (.text.MMCSD_parseCIDSd) 9007876e 00000002 --HOLE-- [fill = 0] 90078770 000000ce enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio.obj (.text.Mdio_getIoctlHandlerFxn) 9007883e 00000002 --HOLE-- [fill = 0] 90078840 000000ce lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_out.obj (.text.tcp_output_fill_options) 9007890e 00000002 --HOLE-- [fill = 0] 90078910 000000cc enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setPortControlReg) 900789dc 00000004 --HOLE-- [fill = 0] 900789e0 000000cc : cpsw_est.obj (.text.CpswEst_getIoctlHandlerFxn) 90078aac 00000004 --HOLE-- [fill = 0] 90078ab0 000000cc cpswconfighandler.o (.text.EnetApp_addMCastEntry) 90078b7c 00000004 --HOLE-- [fill = 0] 90078b80 000000cc freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_PutEntry) 90078c4c 00000004 --HOLE-- [fill = 0] 90078c50 000000cc drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_isr) 90078d1c 00000004 --HOLE-- [fill = 0] 90078d20 000000cc : udma_rm.obj (.text.Udma_rmAllocVintrBit) 90078dec 00000004 --HOLE-- [fill = 0] 90078df0 000000ca enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_getAleOutVlanEntry) 90078eba 00000006 --HOLE-- [fill = 0] 90078ec0 000000ca drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaChanOpSetBurstSize) 90078f8a 00000006 --HOLE-- [fill = 0] 90078f90 000000ca enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_macport_ioctl.obj (.text.CpswMacPort_setDscpPriority) 9007905a 00000006 --HOLE-- [fill = 0] 90079060 000000ca : enetphy.obj (.text.EnetPhy_getCapsString) 9007912a 00000006 --HOLE-- [fill = 0] 90079130 000000ca : enet_rm.obj (.text.EnetRm_getCoreResourceInfo) 900791fa 00000006 --HOLE-- [fill = 0] 90079200 000000ca lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_timerCb) 900792ca 00000006 --HOLE-- [fill = 0] 900792d0 000000ca enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_manual_ioctl.obj (.text.Mdio_manualModePhyRegReadC45) 9007939a 00000006 --HOLE-- [fill = 0] 900793a0 000000ca drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_phy.obj (.text.OSPI_phyResyncDLL) 9007946a 00000006 --HOLE-- [fill = 0] 90079470 000000ca : ospi_dma_udma.obj (.text.OspiDma_udmaCopy) 9007953a 00000006 --HOLE-- [fill = 0] 90079540 000000ca : udma_ring_common.obj (.text.Udma_ringCheckParams) 9007960a 00000006 --HOLE-- [fill = 0] 90079610 000000c8 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_TraverseFAT) 900796d8 00000008 --HOLE-- [fill = 0] 900796e0 000000c8 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_event.obj (.text.Udma_eventCheckUnRegister) 900797a8 00000008 --HOLE-- [fill = 0] 900797b0 000000c8 : udma_ring_common.obj (.text.Udma_ringFree) 90079878 000000c8 libc.a : getdevice.c.obj (.text.getdevice) 90079940 000000c8 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_kill_prio) 90079a08 00000008 --HOLE-- [fill = 0] 90079a10 000000c6 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_est_ioctl.obj (.text.Cpsw_setupEstf) 90079ad6 0000000a --HOLE-- [fill = 0] 90079ae0 000000c6 : enet.obj (.text.Enet_getDmaHandle) 90079ba6 0000000a --HOLE-- [fill = 0] 90079bb0 000000c6 drivers.am64x.r5f.ti-arm-clang.debug.lib : soc.obj (.text.SOC_isR5FDualCoreMode) 90079c76 0000000a --HOLE-- [fill = 0] 90079c80 000000c6 : udma_event.obj (.text.Udma_eventUnRegister) 90079d46 0000000a --HOLE-- [fill = 0] 90079d50 000000c6 httpd.o (.text.http_uri_is_ssi) 90079e16 0000000a --HOLE-- [fill = 0] 90079e20 000000c6 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_mmcsd.obj (.text.prvReadMmcsd) 90079ee6 0000000a --HOLE-- [fill = 0] 90079ef0 000000c6 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_backlog_accepted) 90079fb6 0000000a --HOLE-- [fill = 0] 90079fc0 000000c6 : tcp_out.obj (.text.tcp_keepalive) 9007a086 0000000a --HOLE-- [fill = 0] 9007a090 000000c6 : tcp.obj (.text.tcp_new_port) 9007a156 0000000a --HOLE-- [fill = 0] 9007a160 000000c4 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_rm_ioctl.obj (.text.EnetRm_ioctl_handler_ENET_RM_IOCTL_INTERNAL_FREE_RX_FLOW) 9007a224 0000000c --HOLE-- [fill = 0] 9007a230 000000c4 : mdio_ioctl.obj (.text.Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_C45_READ) 9007a2f4 0000000c --HOLE-- [fill = 0] 9007a300 000000c4 : mdio.obj (.text.Mdio_setupNormalMode) 9007a3c4 0000000c --HOLE-- [fill = 0] 9007a3d0 000000c4 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmIrqIsVintRouteSet) 9007a494 0000000c --HOLE-- [fill = 0] 9007a4a0 000000c4 : uart_v0.obj (.text.UART_flushTxFifo) 9007a564 0000000c --HOLE-- [fill = 0] 9007a570 000000c4 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_close) 9007a634 0000000c --HOLE-- [fill = 0] 9007a640 000000c4 memtest.o (.text.memTestBus) 9007a704 0000000c --HOLE-- [fill = 0] 9007a710 000000c4 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tftp_server.obj (.text.send_data) 9007a7d4 0000000c --HOLE-- [fill = 0] 9007a7e0 000000c4 : tcp.obj (.text.tcp_listen_closed) 9007a8a4 0000000c --HOLE-- [fill = 0] 9007a8b0 000000c4 : tcp_out.obj (.text.tcp_send_fin) 9007a974 0000000c --HOLE-- [fill = 0] 9007a980 000000c2 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setTxMaxLenPerPriority) 9007aa42 0000000e --HOLE-- [fill = 0] 9007aa50 000000c2 : cpsw_ale_ioctl.obj (.text.CpswAle_addIPv4Addr) 9007ab12 0000000e --HOLE-- [fill = 0] 9007ab20 000000c2 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.FF_BlockRead) 9007abe2 0000000e --HOLE-- [fill = 0] 9007abf0 000000c2 : ff_ioman.obj (.text.FF_BlockWrite) 9007acb2 0000000e --HOLE-- [fill = 0] 9007acc0 000000c2 : ff_string.obj (.text.FF_strmatch) 9007ad82 0000000e --HOLE-- [fill = 0] 9007ad90 000000c2 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_setupADMA2) 9007ae52 0000000e --HOLE-- [fill = 0] 9007ae60 000000c2 : uart_v0.obj (.text.UART_writePolling) 9007af22 0000000e --HOLE-- [fill = 0] 9007af30 000000c2 : udma_ch.obj (.text.Udma_chClose) 9007aff2 0000000e --HOLE-- [fill = 0] 9007b000 000000c2 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_stdio.obj (.text.ff_findfirst) 9007b0c2 0000000e --HOLE-- [fill = 0] 9007b0d0 000000c2 termserver.o (.text.termd_recv) 9007b192 0000000e --HOLE-- [fill = 0] 9007b1a0 000000c0 ti_board_open_close.o (.text.Board_flashOpen) 9007b260 000000c0 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaChanOpAccessRemotePeerReg) 9007b320 000000c0 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_setEtherTypePolicerEntry) 9007b3e0 000000c0 : cpsw_macport_ioctl.obj (.text.CpswMacPort_ioctl_handler_CPSW_MACPORT_IOCTL_ENABLE) 9007b4a0 000000c0 : cpsw_ioctl.obj (.text.Cpsw_validateDfltFlow) 9007b560 000000c0 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4_16bit.obj (.text.LPDDR4_CheckCtlInterrupt_4) 9007b620 000000c0 : lpddr4.obj (.text.LPDDR4_ReadReg) 9007b6e0 000000c0 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_ioctl.obj (.text.Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_C45_WRITE) 9007b7a0 000000c0 nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text._out_rev) 9007b860 000000c0 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : inet_chksum.obj (.text.inet_cksum_pseudo_base) 9007b920 000000be nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_timerTickIsr) 9007b9de 00000002 --HOLE-- [fill = 0] 9007b9e0 000000be enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_getLocalCaps) 9007ba9e 00000002 --HOLE-- [fill = 0] 9007baa0 000000be : enet_rm.obj (.text.EnetRm_initResourceQ) 9007bb5e 00000002 --HOLE-- [fill = 0] 9007bb60 000000be lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_timeout) 9007bc1e 00000002 --HOLE-- [fill = 0] 9007bc20 000000be : netif.obj (.text.netif_input) 9007bcde 00000002 --HOLE-- [fill = 0] 9007bce0 000000bc drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.text.DDR_setClock) 9007bd9c 00000004 --HOLE-- [fill = 0] 9007bda0 000000bc enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_initCfg) 9007be5c 00000004 --HOLE-- [fill = 0] 9007be60 000000bc lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_pbufQ2PktInfoQ) 9007bf1c 00000004 --HOLE-- [fill = 0] 9007bf20 000000bc lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwiperf.obj (.text.lwiperf_list_remove) 9007bfdc 00000004 --HOLE-- [fill = 0] 9007bfe0 000000bc freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.prvGetFromFATBuffers) 9007c09c 00000004 --HOLE-- [fill = 0] 9007c0a0 000000bc : ff_mmcsd.obj (.text.prvWriteMmcsd) 9007c15c 00000004 --HOLE-- [fill = 0] 9007c160 000000ba nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_stop) 9007c21a 00000006 --HOLE-- [fill = 0] 9007c220 000000ba enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_setIPv6PolicerEntry) 9007c2da 00000006 --HOLE-- [fill = 0] 9007c2e0 000000ba : cpsw_cpts_ioctl.obj (.text.CpswCpts_calcPpmVal) 9007c39a 00000006 --HOLE-- [fill = 0] 9007c3a0 000000ba : enet_apputils.obj (.text.EnetAppUtils_updatemacResPart) 9007c45a 00000006 --HOLE-- [fill = 0] 9007c460 000000ba : enet_udma.obj (.text.EnetDma_initTxChParams) 9007c51a 00000006 --HOLE-- [fill = 0] 9007c520 000000ba drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_waitSync) 9007c5da 00000006 --HOLE-- [fill = 0] 9007c5e0 000000ba lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : autoip.obj (.text.autoip_arp_reply) 9007c69a 00000006 --HOLE-- [fill = 0] 9007c6a0 000000ba : dhcp.obj (.text.dhcp_coarse_tmr) 9007c75a 00000006 --HOLE-- [fill = 0] 9007c760 000000ba tftpserver.o (.text.tftp_open_file) 9007c81a 00000006 --HOLE-- [fill = 0] 9007c820 000000b8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_setIPFilterCfg) 9007c8d8 00000008 --HOLE-- [fill = 0] 9007c8e0 000000b8 : cpsw_ale_ioctl.obj (.text.CpswAle_setIPv4PolicerEntry) 9007c998 00000008 --HOLE-- [fill = 0] 9007c9a0 000000b8 ti_enet_open_close.o (.text.EnetApp_openAllRxDmaChannels) 9007ca58 00000008 --HOLE-- [fill = 0] 9007ca60 000000b8 cpsw_custom_phy.o (.text.EnetBoard_getMacAddrList) 9007cb18 00000008 --HOLE-- [fill = 0] 9007cb20 000000b8 board.am64x.r5f.ti-arm-clang.debug.lib : flash.obj (.text.Flash_offsetToSectorPage) 9007cbd8 00000008 --HOLE-- [fill = 0] 9007cbe0 000000b8 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.LPDDR4_WriteReg) 9007cc98 00000008 --HOLE-- [fill = 0] 9007cca0 000000b8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_manual_ioctl.obj (.text.Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_C45_WRITE) 9007cd58 00000008 --HOLE-- [fill = 0] 9007cd60 000000b8 IPC.lib : pec_prom.o (.text.PP_Write_TestID) 9007ce18 00000008 --HOLE-- [fill = 0] 9007ce20 000000b8 lwip-contrib-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcpecho_raw.obj (.text.tcpecho_raw_send) 9007ced8 00000008 --HOLE-- [fill = 0] 9007cee0 000000b8 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : udp.obj (.text.udp_remove) 9007cf98 00000008 --HOLE-- [fill = 0] 9007cfa0 000000b6 drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_uniflash.obj (.text.Bootloader_uniflashFlashOrVerifyRprcXipFile) 9007d056 0000000a --HOLE-- [fill = 0] 9007d060 000000b6 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_mdio.obj (.text.CSL_MDIO_phyRegRead2) 9007d116 0000000a --HOLE-- [fill = 0] 9007d120 000000b6 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_pktdma.obj (.text.CSL_pktdmaAccessChanPeerReg) 9007d1d6 0000000a --HOLE-- [fill = 0] 9007d1e0 000000b6 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ioctl.obj (.text.Cpsw_internalIoctl_handler_ENET_PER_IOCTL_DETACH_CORE) 9007d296 0000000a --HOLE-- [fill = 0] 9007d2a0 000000b6 : cpsw_ioctl.obj (.text.Cpsw_internalIoctl_handler_ENET_PER_IOCTL_IS_PORT_LINK_UP) 9007d356 0000000a --HOLE-- [fill = 0] 9007d360 000000b6 ti_enet_config.o (.text.EnetApp_getEnetInstInfo) 9007d416 0000000a --HOLE-- [fill = 0] 9007d420 000000b6 board.am64x.r5f.ti-arm-clang.debug.lib : flash.obj (.text.Flash_offsetToBlkPage) 9007d4d6 0000000a --HOLE-- [fill = 0] 9007d4e0 000000b6 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_halSendCommand) 9007d596 0000000a --HOLE-- [fill = 0] 9007d5a0 000000b6 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_manual_ioctl.obj (.text.Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_C45_READ) 9007d656 0000000a --HOLE-- [fill = 0] 9007d660 000000b6 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_phy.obj (.text.OSPI_phyTuneDDR) 9007d716 0000000a --HOLE-- [fill = 0] 9007d720 000000b6 : uart_v0.obj (.text.UART_readPolling) 9007d7d6 0000000a --HOLE-- [fill = 0] 9007d7e0 000000b4 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getPortEstConfig) 9007d894 0000000c --HOLE-- [fill = 0] 9007d8a0 000000b4 : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_setAleOUIAddrEntry) 9007d954 0000000c --HOLE-- [fill = 0] 9007d960 000000b4 : cpsw_ale_ioctl.obj (.text.CpswAle_addOuiAddr) 9007da14 0000000c --HOLE-- [fill = 0] 9007da20 000000b4 : enet_rm_ioctl.obj (.text.EnetRm_freeInternalRxFlowIdx) 9007dad4 0000000c --HOLE-- [fill = 0] 9007dae0 000000b4 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_close) 9007db94 000000b4 libc.a : fclose.c.obj (.text.__TI_closefile) 9007dc48 00000008 --HOLE-- [fill = 0] 9007dc50 000000b4 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_network_changed) 9007dd04 0000000c --HOLE-- [fill = 0] 9007dd10 000000b4 : etharp.obj (.text.free_etharp_q) 9007ddc4 000000b4 libc.a : fseek.c.obj (.text.fseeko) 9007de78 00000008 --HOLE-- [fill = 0] 9007de80 000000b4 lwip-contrib-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcpecho_raw.obj (.text.tcpecho_raw_accept) 9007df34 0000000c --HOLE-- [fill = 0] 9007df40 000000b2 ti_board_open_close.o (.text.Board_ledOpen) 9007dff2 0000000e --HOLE-- [fill = 0] 9007e000 000000b2 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_setOuiPolicerEntry) 9007e0b2 0000000e --HOLE-- [fill = 0] 9007e0c0 000000b2 drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.text.DDR_initDrv) 9007e172 0000000e --HOLE-- [fill = 0] 9007e180 000000b2 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_ioctlutils.obj (.text.EnetAppUtils_addHostPortEntry) 9007e232 0000000e --HOLE-- [fill = 0] 9007e240 000000b2 ti_enet_open_close.o (.text.EnetApp_doCpswOpen) 9007e2f2 0000000e --HOLE-- [fill = 0] 9007e300 000000b2 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet.obj (.text.Enet_init) 9007e3b2 0000000e --HOLE-- [fill = 0] 9007e3c0 000000b2 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_FindFirst) 9007e472 0000000e --HOLE-- [fill = 0] 9007e480 000000b2 IPC.lib : pec_prom.o (.text.PP_Initialise) 9007e532 0000000e --HOLE-- [fill = 0] 9007e540 000000b2 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient.obj (.text.Sciclient_getCurrentContext) 9007e5f2 0000000e --HOLE-- [fill = 0] 9007e600 000000b2 main.o (.text.emmc_init) 9007e6b2 0000000e --HOLE-- [fill = 0] 9007e6c0 000000b2 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_frag.obj (.text.ipfrag_free_pbuf_custom) 9007e772 0000000e --HOLE-- [fill = 0] 9007e780 000000b2 termserver.o (.text.termd_putchar) 9007e832 0000000e --HOLE-- [fill = 0] 9007e840 000000b0 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_mdio.obj (.text.CSL_MDIO_phyInitiateRegWriteC45) 9007e8f0 000000b0 : enet_queue.obj (.text.EnetQueue_deq) 9007e9a0 000000b0 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.FF_SetCluster) 9007ea50 000000b0 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_init) 9007eb00 000000b0 : udma_ch.obj (.text.Udma_chCheckParams) 9007ebb0 000000b0 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : netif.obj (.text.netif_issue_reports) 9007ec60 000000b0 : netif.obj (.text.netif_set_up) 9007ed10 000000ae enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_addEtherType) 9007edbe 00000002 --HOLE-- [fill = 0] 9007edc0 000000ae : cpsw_hostport_ioctl.obj (.text.CpswHostPort_setDscpPriority) 9007ee6e 00000002 --HOLE-- [fill = 0] 9007ee70 000000ae : mdio.obj (.text.Mdio_close) 9007ef1e 00000002 --HOLE-- [fill = 0] 9007ef20 000000ae drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_soc.obj (.text.Udma_getMappedChRingAttributes) 9007efce 00000002 --HOLE-- [fill = 0] 9007efd0 000000ae httpd.o (.text.http_set_cgi_handlers) 9007f07e 00000002 --HOLE-- [fill = 0] 9007f080 000000ae lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.text.tcp_input_delayed_close) 9007f12e 00000002 --HOLE-- [fill = 0] 9007f130 000000ae : tcp.obj (.text.tcp_poll) 9007f1de 00000002 --HOLE-- [fill = 0] 9007f1e0 000000ac enet_main.o (.text.App_allocateIPAddress) 9007f28c 00000004 --HOLE-- [fill = 0] 9007f290 000000ac ti_enet_config.o (.text.EnetApp_coreAttach) 9007f33c 00000004 --HOLE-- [fill = 0] 9007f340 000000ac ti_enet_config.o (.text.EnetApp_initializeMacAddrPool) 9007f3ec 00000004 --HOLE-- [fill = 0] 9007f3f0 000000ac enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_nwayStartState) 9007f49c 00000004 --HOLE-- [fill = 0] 9007f4a0 000000ac : enet_udma_priv.obj (.text.EnetUdma_dmaDescEnque) 9007f54c 00000004 --HOLE-- [fill = 0] 9007f550 000000ac drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_readCancelNoCB) 9007f5fc 00000004 --HOLE-- [fill = 0] 9007f600 000000ac : udma_ch.obj (.text.UdmaChRxPrms_init) 9007f6ac 00000004 --HOLE-- [fill = 0] 9007f6b0 000000ac : udma_ch.obj (.text.UdmaChTxPrms_init) 9007f75c 00000004 --HOLE-- [fill = 0] 9007f760 000000ac : udma_ch.obj (.text.Udma_chDisable) 9007f80c 00000004 --HOLE-- [fill = 0] 9007f810 000000aa enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setPTypeReg) 9007f8ba 00000006 --HOLE-- [fill = 0] 9007f8c0 000000aa drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaChanOpSetChanPause) 9007f96a 00000006 --HOLE-- [fill = 0] 9007f970 000000aa : csl_bcdma.obj (.text.CSL_bcdmaChanOpSetChanRT) 9007fa1a 00000006 --HOLE-- [fill = 0] 9007fa20 000000aa enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_findOuiAddr) 9007faca 00000006 --HOLE-- [fill = 0] 9007fad0 000000aa : cpsw_ioctl.obj (.text.Cpsw_getRxMtuPort0) 9007fb7a 00000006 --HOLE-- [fill = 0] 9007fb80 000000aa : dp83867.obj (.text.Dp83867_setTxFifoDepth) 9007fc2a 00000006 --HOLE-- [fill = 0] 9007fc30 000000aa ti_drivers_open_close.o (.text.Drivers_i2cOpen) 9007fcda 00000006 --HOLE-- [fill = 0] 9007fce0 000000aa enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_rm_ioctl.obj (.text.EnetRm_allocResource) 9007fd8a 00000006 --HOLE-- [fill = 0] 9007fd90 000000aa : enet.obj (.text.Enet_close) 9007fe3a 00000006 --HOLE-- [fill = 0] 9007fe40 000000aa drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_syncAll) 9007feea 00000006 --HOLE-- [fill = 0] 9007fef0 000000aa lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_initTxObj) 9007ff9a 00000006 --HOLE-- [fill = 0] 9007ffa0 000000aa drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_fifoWrite) 9008004a 00000006 --HOLE-- [fill = 0] 90080050 000000aa lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : memp.obj (.text.do_memp_malloc_pool) 900800fa 00000006 --HOLE-- [fill = 0] 90080100 000000aa flasher.o (.text.load_file) 900801aa 00000006 --HOLE-- [fill = 0] 900801b0 000000aa lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : inet_chksum.obj (.text.lwip_standard_chksum) 9008025a 00000006 --HOLE-- [fill = 0] 90080260 000000aa termserver.o (.text.termd_send) 9008030a 00000006 --HOLE-- [fill = 0] 90080310 000000a8 ti_board_open_close.o (.text.Board_eepromOpen) 900803b8 00000008 --HOLE-- [fill = 0] 900803c0 000000a8 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_addToList) 90080468 00000008 --HOLE-- [fill = 0] 90080470 000000a8 : ClockP_nortos.obj (.text.ClockP_destruct) 90080518 00000008 --HOLE-- [fill = 0] 90080520 000000a8 ti_drivers_open_close.o (.text.Drivers_mmcsdOpen) 900805c8 00000008 --HOLE-- [fill = 0] 900805d0 000000a8 ti_drivers_open_close.o (.text.Drivers_uartOpen) 90080678 00000008 --HOLE-- [fill = 0] 90080680 000000a8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet.obj (.text.EnetMod_close) 90080728 00000008 --HOLE-- [fill = 0] 90080730 000000a8 : generic_phy.obj (.text.GenericPhy_readExtReg) 900807d8 00000008 --HOLE-- [fill = 0] 900807e0 000000a8 ti_enet_lwipif.o (.text.LwipifEnetApp_startSchedule) 90080888 00000008 --HOLE-- [fill = 0] 90080890 000000a8 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_isProtocolValid) 90080938 00000008 --HOLE-- [fill = 0] 90080940 000000a8 : sciclient_rm_irq.obj (.text.Sciclient_rmIrInpRomMapped) 900809e8 00000008 --HOLE-- [fill = 0] 900809f0 000000a8 : sciclient_rm_irq.obj (.text.Sciclient_rmIrOutpRomMapped) 90080a98 00000008 --HOLE-- [fill = 0] 90080aa0 000000a8 : udma_ring_lcdma.obj (.text.Udma_ringSetDoorBellLcdma) 90080b48 000000a8 libc.a : fflush.c.obj (.text.fflush) 90080bf0 000000a8 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : netif.obj (.text.netif_set_link_up) 90080c98 00000008 --HOLE-- [fill = 0] 90080ca0 000000a8 nortos.am64x.r5f.ti-arm-clang.debug.lib : PmuP_armv7r.obj (.text.pmu) 90080d48 00000008 --HOLE-- [fill = 0] 90080d50 000000a8 tftpserver.o (.text.tftp_close) 90080df8 00000008 --HOLE-- [fill = 0] 90080e00 000000a6 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setPortVlanReg) 90080ea6 0000000a --HOLE-- [fill = 0] 90080eb0 000000a6 : cpsw_ale_ioctl.obj (.text.CpswAle_addMacAddrEntry) 90080f56 0000000a --HOLE-- [fill = 0] 90080f60 000000a6 ti_drivers_open_close.o (.text.Drivers_ospiOpen) 90081006 0000000a --HOLE-- [fill = 0] 90081010 000000a6 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_setNextState) 900810b6 0000000a --HOLE-- [fill = 0] 900810c0 000000a6 : k3_soc.obj (.text.EnetSocJ7x_releaseIntrCfg) 90081166 0000000a --HOLE-- [fill = 0] 90081170 000000a6 : k3_soc.obj (.text.EnetSocJ7x_setupIntrCfg) 90081216 0000000a --HOLE-- [fill = 0] 90081220 000000a6 : enet_utils.obj (.text.EnetUtils_init) 900812c6 0000000a --HOLE-- [fill = 0] 900812d0 000000a6 : generic_phy.obj (.text.GenericPhy_writeExtReg) 90081376 0000000a --HOLE-- [fill = 0] 90081380 000000a6 : mdio.obj (.text.Mdio_isSupported) 90081426 0000000a --HOLE-- [fill = 0] 90081430 000000a6 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_setXferOpCodes) 900814d6 0000000a --HOLE-- [fill = 0] 900814e0 000000a6 : sciclient_pm.obj (.text.Sciclient_pmGetModuleClkNumParent) 90081586 0000000a --HOLE-- [fill = 0] 90081590 000000a6 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_option_long) 90081636 0000000a --HOLE-- [fill = 0] 90081640 000000a4 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_intaggr.obj (.text.CSL_intaggrIsIntrPending) 900816e4 0000000c --HOLE-- [fill = 0] 900816f0 000000a4 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_findEtherType) 90081794 0000000c --HOLE-- [fill = 0] 900817a0 000000a4 : enet.obj (.text.Enet_periodicTick) 90081844 0000000c --HOLE-- [fill = 0] 90081850 000000a4 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2lwipif.obj (.text.LWIPIF_LWIP_getUdpLiteChksum) 900818f4 0000000c --HOLE-- [fill = 0] 90081900 000000a4 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_flashExecCmd) 900819a4 0000000c --HOLE-- [fill = 0] 900819b0 000000a4 : sciclient_rm_irq.obj (.text.Sciclient_rmIrqCheckLoop) 90081a54 0000000c --HOLE-- [fill = 0] 90081a60 000000a4 IPC.lib : pec_uart.o (.text.UART_u16Flush) 90081b04 0000000c --HOLE-- [fill = 0] 90081b10 000000a4 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_flow.obj (.text.Udma_flowAttachMapped) 90081bb4 0000000c --HOLE-- [fill = 0] 90081bc0 000000a4 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_alloc_reference) 90081c64 000000a4 libc.a : memory.c.obj (.text.split) 90081d08 00000008 --HOLE-- [fill = 0] 90081d10 000000a4 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_out.obj (.text.tcp_output_alloc_header) 90081db4 0000000c --HOLE-- [fill = 0] 90081dc0 000000a2 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpgmac_sl.obj (.text.CSL_CPGMAC_SL_getMacStatusReg) 90081e62 0000000e --HOLE-- [fill = 0] 90081e70 000000a2 drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.text.DDR_init) 90081f12 0000000e --HOLE-- [fill = 0] 90081f20 000000a2 ti_enet_open_close.o (.text.EnetApp_getMacAddress) 90081fc2 0000000e --HOLE-- [fill = 0] 90081fd0 000000a2 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet.obj (.text.EnetPer_periodicTick) 90082072 0000000e --HOLE-- [fill = 0] 90082080 000000a2 : enetphy.obj (.text.EnetPhy_linkWaitState) 90082122 0000000e --HOLE-- [fill = 0] 90082130 000000a2 : enet_queue.obj (.text.EnetQueue_enqHead) 900821d2 0000000e --HOLE-- [fill = 0] 900821e0 000000a2 ti_enet_lwipif.o (.text.LwipifEnetAppCb_getTxHandleInfo) 90082282 0000000e --HOLE-- [fill = 0] 90082290 000000a2 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_listen) 90082332 0000000e --HOLE-- [fill = 0] 90082340 000000a2 httpd.o (.text.http_send) 900823e2 0000000e --HOLE-- [fill = 0] 900823f0 000000a2 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : timeouts.obj (.text.sys_check_timeouts) 90082492 0000000e --HOLE-- [fill = 0] 900824a0 000000a0 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : dp83867.obj (.text.Dp83867_setOutputImpedance) 90082540 000000a0 : enetphy.obj (.text.EnetPhy_capToMode) 900825e0 000000a0 : enet_queue.obj (.text.EnetQueue_copyQ) 90082680 000000a0 libsysbm.a : hostrename.c.obj (.text.HOSTrename) 90082720 000000a0 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_rm.obj (.text.Udma_rmAllocEvent) 900827c0 000000a0 : udma_rm.obj (.text.Udma_rmAllocVintr) 90082860 000000a0 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : etharp.obj (.text.etharp_free_entry) 90082900 0000009e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_getTableType) 9008299e 00000002 --HOLE-- [fill = 0] 900829a0 0000009e freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.FF_GetSequentialClusters) 90082a3e 00000002 --HOLE-- [fill = 0] 90082a40 0000009e : ff_dir.obj (.text.FF_PopulateShortDirent) 90082ade 00000002 --HOLE-- [fill = 0] 90082ae0 0000009e drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_halCmdResponseGet) 90082b7e 00000002 --HOLE-- [fill = 0] 90082b80 0000009e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_manual_ioctl.obj (.text.Mdio_manualModePhyRegAddWriteC45) 90082c1e 00000002 --HOLE-- [fill = 0] 90082c20 0000009e : mdio_manual_ioctl.obj (.text.Mdio_manualModePhyRegValWriteC45) 90082cbe 00000002 --HOLE-- [fill = 0] 90082cc0 0000009e drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_soc_priv.obj (.text.Sciclient_getContext) 90082d5e 00000002 --HOLE-- [fill = 0] 90082d60 0000009e httpd.o (.text.http_accept) 90082dfe 00000002 --HOLE-- [fill = 0] 90082e00 0000009e httpd_cgi_sii.o (.text.httpd_cgi_ssi_init) 90082e9e 00000002 --HOLE-- [fill = 0] 90082ea0 0000009e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwiperf.obj (.text.lwiperf_tx_start_passive) 90082f3e 00000002 --HOLE-- [fill = 0] 90082f40 0000009c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_mdio.obj (.text.CSL_MDIO_phyInitiateRegReadC45) 90082fdc 00000004 --HOLE-- [fill = 0] 90082fe0 0000009c lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_updateRxNotifyStats) 9008307c 00000004 --HOLE-- [fill = 0] 90083080 0000009c : lwip2enet.obj (.text.Lwip2Enet_updateTxNotifyStats) 9008311c 00000004 --HOLE-- [fill = 0] 90083120 0000009c drivers.am64x.r5f.ti-arm-clang.debug.lib : pinmux.obj (.text.Pinmux_config) 900831bc 00000004 --HOLE-- [fill = 0] 900831c0 0000009c : udma_ring_lcdma.obj (.text.Udma_ringFlushRawLcdma) 9008325c 0000009c libc.a : _io_perm.c.obj (.text.__TI_wrt_ok) 900832f8 00000008 --HOLE-- [fill = 0] 90083300 0000009a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setPortStatsEnableReg) 9008339a 00000006 --HOLE-- [fill = 0] 900833a0 0000009a : cpsw_ale.obj (.text.CpswAle_setPolicerControl) 9008343a 00000006 --HOLE-- [fill = 0] 90083440 0000009a ti_enet_open_close.o (.text.EnetAppUtils_openTxCh) 900834da 00000006 --HOLE-- [fill = 0] 900834e0 0000009a cpsw_custom_phy.o (.text.EnetBoard_findPortCfg) 9008357a 00000006 --HOLE-- [fill = 0] 90083580 0000009a drivers.am64x.r5f.ti-arm-clang.debug.lib : soc.obj (.text.SOC_controlModuleUnlockMMR) 9008361a 00000006 --HOLE-- [fill = 0] 90083620 0000009a : sciclient_pm.obj (.text.Sciclient_pmGetModuleClkFreq) 900836ba 00000006 --HOLE-- [fill = 0] 900836c0 0000009a : sciclient_pm.obj (.text.Sciclient_pmGetModuleClkParent) 9008375a 00000006 --HOLE-- [fill = 0] 90083760 0000009a : sciclient_pm.obj (.text.Sciclient_pmSetModuleClkParent) 900837fa 00000006 --HOLE-- [fill = 0] 90083800 0000009a : sciclient_rm_irq.obj (.text.Sciclient_rmIrOutpIsFree) 9008389a 00000006 --HOLE-- [fill = 0] 900838a0 0000009a : udma_ring_common.obj (.text.Udma_ringQueueRaw) 9008393a 00000006 --HOLE-- [fill = 0] 90083940 0000009a httpd.o (.text.http_close_or_abort_conn) 900839da 00000006 --HOLE-- [fill = 0] 900839e0 0000009a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwiperf.obj (.text.lwiperf_tcp_poll) 90083a7a 00000006 --HOLE-- [fill = 0] 90083a80 0000009a lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.text.pbufQ_init_freeQ) 90083b1a 00000006 --HOLE-- [fill = 0] 90083b20 0000009a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : udp.obj (.text.udp_new_port) 90083bba 00000006 --HOLE-- [fill = 0] 90083bc0 00000098 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaChanOpSetChanEnable) 90083c58 00000008 --HOLE-- [fill = 0] 90083c60 00000098 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_macport.obj (.text.CpswMacPort_reset) 90083cf8 00000008 --HOLE-- [fill = 0] 90083d00 00000098 : enetphy.obj (.text.EnetPhy_findingState) 90083d98 00000098 libsysbm.a : hostlseek.c.obj (.text.HOSTlseek) 90083e30 00000098 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_allocateObj) 90083ec8 00000008 --HOLE-- [fill = 0] 90083ed0 00000098 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_manual_ioctl.obj (.text.Mdio_manualModePhyRegWrite22) 90083f68 00000008 --HOLE-- [fill = 0] 90083f70 00000098 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_pm.obj (.text.Sciclient_pmModuleGetClkStatus) 90084008 00000008 --HOLE-- [fill = 0] 90084010 00000098 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_frag.obj (.text.ip_reass_enqueue_new_datagram) 900840a8 00000008 --HOLE-- [fill = 0] 900840b0 00000098 : pbuf.obj (.text.pbuf_alloced_custom) 90084148 00000008 --HOLE-- [fill = 0] 90084150 00000098 : tcp.obj (.text.tcp_netif_ip_addr_changed_pcblist) 900841e8 00000008 --HOLE-- [fill = 0] 900841f0 00000098 termserver.o (.text.termd_accept) 90084288 00000008 --HOLE-- [fill = 0] 90084290 00000096 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getTxMaxLenPerPriority) 90084326 0000000a --HOLE-- [fill = 0] 90084330 00000096 : cpsw_ale.obj (.text.CpswAle_isSupported) 900843c6 0000000a --HOLE-- [fill = 0] 900843d0 00000096 : cpsw_ale_ioctl.obj (.text.CpswAle_setPortPolicerEntry) 90084466 0000000a --HOLE-- [fill = 0] 90084470 00000096 : cpsw_cpts.obj (.text.CpswCpts_isSupported) 90084506 0000000a --HOLE-- [fill = 0] 90084510 00000096 : cpsw_hostport.obj (.text.CpswHostPort_isSupported) 900845a6 0000000a --HOLE-- [fill = 0] 900845b0 00000096 : cpsw_macport_est_ioctl.obj (.text.CpswMacPortEst_ioctl_handler_ENET_TAS_IOCTL_SET_STATE) 90084646 0000000a --HOLE-- [fill = 0] 90084650 00000096 : cpsw_macport.obj (.text.CpswMacPort_isSupported) 900846e6 0000000a --HOLE-- [fill = 0] 900846f0 00000096 : cpsw_stats.obj (.text.CpswStats_isSupported) 90084786 0000000a --HOLE-- [fill = 0] 90084790 00000096 : cpsw.obj (.text.Cpsw_rejoin) 90084826 0000000a --HOLE-- [fill = 0] 90084830 00000096 : mdio_ioctl.obj (.text.Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_C22_WRITE) 900848c6 0000000a --HOLE-- [fill = 0] 900848d0 00000096 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_dma_udma.obj (.text.OspiDma_udmaClose) 90084966 0000000a --HOLE-- [fill = 0] 90084970 00000096 : sciclient.obj (.text.Sciclient_init) 90084a06 0000000a --HOLE-- [fill = 0] 90084a10 00000096 : uart_v0.obj (.text.UART_subConfigTCRTLRModeEn) 90084aa6 0000000a --HOLE-- [fill = 0] 90084ab0 00000096 : udma_flow.obj (.text.UdmaFlowPrms_init) 90084b46 0000000a --HOLE-- [fill = 0] 90084b50 00000096 : udma_ring_common.obj (.text.Udma_ringDequeueRaw) 90084be6 0000000a --HOLE-- [fill = 0] 90084bf0 00000096 xmodem.o (.text.check) 90084c86 0000000a --HOLE-- [fill = 0] 90084c90 00000096 httpd.o (.text.http_poll) 90084d26 0000000a --HOLE-- [fill = 0] 90084d30 00000096 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwiperf.obj (.text.lwiperf_tcp_client_connected) 90084dc6 0000000a --HOLE-- [fill = 0] 90084dd0 00000096 : tcp.obj (.text.tcp_recv_null) 90084e66 0000000a --HOLE-- [fill = 0] 90084e70 00000094 ti_drivers_open_close.o (.text.Drivers_ffOpen) 90084f04 0000000c --HOLE-- [fill = 0] 90084f10 00000094 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_appmemutils.obj (.text.EnetMem_allocRingMem) 90084fa4 00000094 libsysbm.a : hostopen.c.obj (.text.HOSTopen) 90085038 00000008 --HOLE-- [fill = 0] 90085040 00000094 IPC.lib : IPCTransceive.o (.text.IPC_vInit) 900850d4 0000000c --HOLE-- [fill = 0] 900850e0 00000094 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_init) 90085174 0000000c --HOLE-- [fill = 0] 90085180 00000094 : ospi_v0.obj (.text.OSPI_init) 90085214 0000000c --HOLE-- [fill = 0] 90085220 00000094 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_connect) 900852b4 0000000c --HOLE-- [fill = 0] 900852c0 00000094 : ip4.obj (.text.ip4_canforward) 90085354 0000000c --HOLE-- [fill = 0] 90085360 00000094 : netif.obj (.text.netif_do_set_gw) 900853f4 0000000c --HOLE-- [fill = 0] 90085400 00000094 : netif.obj (.text.netif_do_set_netmask) 90085494 0000000c --HOLE-- [fill = 0] 900854a0 00000094 : netif.obj (.text.netif_set_link_down) 90085534 0000000c --HOLE-- [fill = 0] 90085540 00000092 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_disablePortPassPriTag) 900855d2 0000000e --HOLE-- [fill = 0] 900855e0 00000092 : csl_cpsw.obj (.text.CSL_CPSW_enablePortPassPriTag) 90085672 0000000e --HOLE-- [fill = 0] 90085680 00000092 : cpsw_ale_ioctl.obj (.text.CpswAle_ioctl_handler_CPSW_ALE_IOCTL_ADD_MCAST) 90085712 0000000e --HOLE-- [fill = 0] 90085720 00000092 : cpsw_ale_ioctl.obj (.text.CpswAle_maskIPv6AddrRegWord) 900857b2 0000000e --HOLE-- [fill = 0] 900857c0 00000092 : cpsw_macport_est.obj (.text.CpswMacPort_ioctlEst) 90085852 0000000e --HOLE-- [fill = 0] 90085860 00000092 ti_enet_open_close.o (.text.EnetApp_closeTxDma) 900858f2 0000000e --HOLE-- [fill = 0] 90085900 00000092 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiSetModeDummy) 90085992 0000000e --HOLE-- [fill = 0] 900859a0 00000092 drivers.am64x.r5f.ti-arm-clang.debug.lib : soc.obj (.text.SOC_moduleClockEnable) 90085a32 0000000e --HOLE-- [fill = 0] 90085a40 00000092 : sciclient_rm_irq.obj (.text.Sciclient_rmPsPop) 90085ad2 0000000e --HOLE-- [fill = 0] 90085ae0 00000092 : uart_v0.obj (.text.UART_writeCancelNoCB) 90085b72 0000000e --HOLE-- [fill = 0] 90085b80 00000092 httpd.o (.text.http_check_eof) 90085c12 0000000e --HOLE-- [fill = 0] 90085c20 00000092 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_memfind) 90085cb2 0000000e --HOLE-- [fill = 0] 90085cc0 00000090 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_getPolicerIndex) 90085d50 00000090 : cpsw_ale_ioctl.obj (.text.CpswAle_validateIPv4Policer) 90085de0 00000090 : cpsw_ale_ioctl.obj (.text.CpswAle_validateIPv6Policer) 90085e70 00000090 : enet_appmemutils.obj (.text.EnetDma_checkDescState) 90085f00 00000090 : enet_appmemutils.obj (.text.EnetMem_allocEthPktInfoMem) 90085f90 00000090 : enet_udma_priv.obj (.text.EnetUdma_buffDescInit) 90086020 00000090 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_completeCurrTransfer) 900860b0 00000090 : mmcsd_v0.obj (.text.MMCSD_halBusPower) 90086140 00000090 : mmcsd_v0.obj (.text.MMCSD_isReadyForTransfer) 900861d0 00000090 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_get_port) 90086260 00000090 : def.obj (.text.lwip_stricmp) 900862f0 00000090 : raw.obj (.text.raw_input_local_match) 90086380 0000008e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setCppiP0Control) 9008640e 00000002 --HOLE-- [fill = 0] 90086410 0000008e : dp83867.obj (.text.Dp83867_rmwExtReg) 9008649e 00000002 --HOLE-- [fill = 0] 900864a0 0000008e : enet_ioctlutils.obj (.text.EnetAppUtils_delAddrEntry) 9008652e 00000002 --HOLE-- [fill = 0] 90086530 0000008e drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ch.obj (.text.Udma_chGetNum) 900865be 00000002 --HOLE-- [fill = 0] 900865c0 0000008e : udma_rm.obj (.text.Udma_rmFreeMappedRing) 9008664e 00000002 --HOLE-- [fill = 0] 90086650 0000008e IPC.lib : pec_crc.o (.text.cm_nxt) 900866de 00000002 --HOLE-- [fill = 0] 900866e0 0000008e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_option) 9008676e 00000002 --HOLE-- [fill = 0] 90086770 0000008e freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_format.obj (.text.prvFormatOptimiseFATLocation) 900867fe 00000002 --HOLE-- [fill = 0] 90086800 0000008e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tftp_server.obj (.text.tftp_tmr) 9008688e 00000002 --HOLE-- [fill = 0] 90086890 0000008c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_getIoctlHandlerIdx) 9008691c 00000004 --HOLE-- [fill = 0] 90086920 0000008c : cpsw_cpts.obj (.text.CpswCpts_getIoctlHandlerIdx) 900869ac 00000004 --HOLE-- [fill = 0] 900869b0 0000008c : cpsw_est.obj (.text.CpswEst_getIoctlHandlerIdx) 90086a3c 00000004 --HOLE-- [fill = 0] 90086a40 0000008c : cpsw_hostport.obj (.text.CpswHostPort_getIoctlHandlerIdx) 90086acc 00000004 --HOLE-- [fill = 0] 90086ad0 0000008c : cpsw_macport_est.obj (.text.CpswMacPortEst_getIoctlHandlerIdx) 90086b5c 00000004 --HOLE-- [fill = 0] 90086b60 0000008c : cpsw_macport.obj (.text.CpswMacPort_getIoctlHandlerIdx) 90086bec 00000004 --HOLE-- [fill = 0] 90086bf0 0000008c : cpsw_stats.obj (.text.CpswStats_getIoctlHandlerIdx) 90086c7c 00000004 --HOLE-- [fill = 0] 90086c80 0000008c : cpsw.obj (.text.Cpsw_getIoctlHandlerIdx) 90086d0c 00000004 --HOLE-- [fill = 0] 90086d10 0000008c drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.text.DDR_initHwRegs) 90086d9c 00000004 --HOLE-- [fill = 0] 90086da0 0000008c ti_enet_open_close.o (.text.EnetApp_initPhyStateHandlerTask) 90086e2c 00000004 --HOLE-- [fill = 0] 90086e30 0000008c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_phymdio_dflt.obj (.text.EnetPhyMdioDflt_getIoctlHandlerIdx) 90086ebc 00000004 --HOLE-- [fill = 0] 90086ec0 0000008c : enetphy.obj (.text.EnetPhy_resetPhy) 90086f4c 00000004 --HOLE-- [fill = 0] 90086f50 0000008c : enet_rm.obj (.text.EnetRm_getIoctlHandlerIdx) 90086fdc 00000004 --HOLE-- [fill = 0] 90086fe0 0000008c : enet_udma_priv.obj (.text.EnetUdma_memMgrAllocRxFlowObj) 9008706c 00000004 --HOLE-- [fill = 0] 90087070 0000008c : enet_udma_priv.obj (.text.EnetUdma_memMgrAllocTxChObj) 900870fc 00000004 --HOLE-- [fill = 0] 90087100 0000008c : enet_udma_priv.obj (.text.EnetUdma_memMgrFreeRxFlowObj) 9008718c 00000004 --HOLE-- [fill = 0] 90087190 0000008c : enet_udma_priv.obj (.text.EnetUdma_memMgrFreeTxChObj) 9008721c 00000004 --HOLE-- [fill = 0] 90087220 0000008c board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiSetAddressBytes) 900872ac 00000004 --HOLE-- [fill = 0] 900872b0 0000008c lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_submitRxPktQ) 9008733c 00000004 --HOLE-- [fill = 0] 90087340 0000008c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio.obj (.text.Mdio_getIoctlHandlerIdx) 900873cc 00000004 --HOLE-- [fill = 0] 900873d0 0000008c drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_pm.obj (.text.Sciclient_pmGetModuleState) 9008745c 00000004 --HOLE-- [fill = 0] 90087460 0000008c : sciclient_pm.obj (.text.Sciclient_pmModuleClkRequest) 900874ec 00000004 --HOLE-- [fill = 0] 900874f0 0000008c : sciclient_pm.obj (.text.Sciclient_pmSetModuleState) 9008757c 00000004 --HOLE-- [fill = 0] 90087580 0000008c : sciclient_rm_irq.obj (.text.Sciclient_rmIaEvtRomMapped) 9008760c 00000004 --HOLE-- [fill = 0] 90087610 0000008c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_write) 9008769c 0000008c libsysbm.a : close.c.obj (.text.close) 90087728 00000008 --HOLE-- [fill = 0] 90087730 0000008a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_mdio.obj (.text.CSL_MDIO_phyRegWrite2) 900877ba 00000006 --HOLE-- [fill = 0] 900877c0 0000008a : enet_udma.obj (.text.EnetUdma_close) 9008784a 00000006 --HOLE-- [fill = 0] 90087850 0000008a : enet_udma_priv.obj (.text.EnetUdma_dmaDescCheck) 900878da 00000006 --HOLE-- [fill = 0] 900878e0 0000008a drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.LPDDR4_PollCtlIrq) 9008796a 00000006 --HOLE-- [fill = 0] 90087970 0000008a : lpddr4.obj (.text.LPDDR4_PollPhyIndepIrq) 900879fa 00000006 --HOLE-- [fill = 0] 90087a00 0000008a : ospi_phy.obj (.text.OSPI_phySetRdDelayTxRxDLL) 90087a8a 00000006 --HOLE-- [fill = 0] 90087a90 0000008a : udma_ring_common.obj (.text.Udma_ringFlushRaw) 90087b1a 00000006 --HOLE-- [fill = 0] 90087b20 0000008a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_arp_reply) 90087baa 00000006 --HOLE-- [fill = 0] 90087bb0 0000008a : pbuf.obj (.text.pbuf_clone) 90087c3a 00000006 --HOLE-- [fill = 0] 90087c40 00000088 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaGetCfg) 90087cc8 00000008 --HOLE-- [fill = 0] 90087cd0 00000088 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_getTimeUsec) 90087d58 00000008 --HOLE-- [fill = 0] 90087d60 00000088 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_setAlePortCfg) 90087de8 00000008 --HOLE-- [fill = 0] 90087df0 00000088 : cpsw_stats.obj (.text.CpswStats_resetHostStats) 90087e78 00000008 --HOLE-- [fill = 0] 90087e80 00000088 : enet_udma.obj (.text.EnetDma_initPktInfo) 90087f08 00000008 --HOLE-- [fill = 0] 90087f10 00000088 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_InitEntryFetch) 90087f98 00000008 --HOLE-- [fill = 0] 90087fa0 00000088 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_waitForPin) 90088028 00000008 --HOLE-- [fill = 0] 90088030 00000088 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_rxPktHandler) 900880b8 00000008 --HOLE-- [fill = 0] 900880c0 00000088 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_rm.obj (.text.Udma_rmFreeVintrBit) 90088148 00000088 libc.a : fflush.c.obj (.text.__TI_doflush) 900881d0 00000088 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : autoip.obj (.text.autoip_start_probing) 90088258 00000008 --HOLE-- [fill = 0] 90088260 00000088 httpd.o (.text.http_get_404_file) 900882e8 00000008 --HOLE-- [fill = 0] 900882f0 00000088 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_addr.obj (.text.ip4_addr_isbroadcast_u32) 90088378 00000008 --HOLE-- [fill = 0] 90088380 00000088 : ip4.obj (.text.ip4_input_accept) 90088408 00000008 --HOLE-- [fill = 0] 90088410 00000088 : ip4.obj (.text.ip4_output_if_opt) 90088498 00000008 --HOLE-- [fill = 0] 900884a0 00000088 : def.obj (.text.lwip_strnstr) 90088528 00000008 --HOLE-- [fill = 0] 90088530 00000088 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.text.pbufQ_enQ) 900885b8 00000008 --HOLE-- [fill = 0] 900885c0 00000086 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_getAleIPv4Entry) 90088646 0000000a --HOLE-- [fill = 0] 90088650 00000086 : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_setAleEthertypeEntry) 900886d6 0000000a --HOLE-- [fill = 0] 900886e0 00000086 : enet_udmautils.obj (.text.EnetAppUtils_regDstMacRxFlow) 90088766 0000000a --HOLE-- [fill = 0] 90088770 00000086 : enet_udmautils.obj (.text.EnetAppUtils_unregDstMacRxFlow) 900887f6 0000000a --HOLE-- [fill = 0] 90088800 00000086 ti_enet_config.o (.text.EnetApp_coreDetach) 90088886 0000000a --HOLE-- [fill = 0] 90088890 00000086 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_findCommon1000Caps) 90088916 0000000a --HOLE-- [fill = 0] 90088920 00000086 : enetphy.obj (.text.EnetPhy_writeReg) 900889a6 0000000a --HOLE-- [fill = 0] 900889b0 00000086 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiRead) 90088a36 0000000a --HOLE-- [fill = 0] 90088a40 00000086 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4_16bit.obj (.text.LPDDR4_CheckCtlInterrupt_3) 90088ac6 0000000a --HOLE-- [fill = 0] 90088ad0 00000086 : mmcsd_v0.obj (.text.MMCSD_halSetBusWidth) 90088b56 0000000a --HOLE-- [fill = 0] 90088b60 00000086 : ospi_v0.obj (.text.OSPI_enablePhy) 90088be6 0000000a --HOLE-- [fill = 0] 90088bf0 00000086 : uart_v0.obj (.text.UART_tcrTlrBitValRestore) 90088c76 0000000a --HOLE-- [fill = 0] 90088c80 00000086 IPC.lib : pec_uart.o (.text.UART_u16Transceive) 90088d06 0000000a --HOLE-- [fill = 0] 90088d10 00000086 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_get_ip) 90088d96 0000000a --HOLE-- [fill = 0] 90088da0 00000086 : timeouts.obj (.text.sys_untimeout) 90088e26 0000000a --HOLE-- [fill = 0] 90088e30 00000084 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_getALEPolicerEntryType) 90088eb4 0000000c --HOLE-- [fill = 0] 90088ec0 00000084 : cpsw_ale.obj (.text.CpswAle_setNoMatchEntry0Policer) 90088f44 0000000c --HOLE-- [fill = 0] 90088f50 00000084 : cpsw_macport_est.obj (.text.CpswMacPort_openEst) 90088fd4 0000000c --HOLE-- [fill = 0] 90088fe0 00000084 : enet_osal_dflt.obj (.text.EnetOsalDflt_deleteMutex) 90089064 0000000c --HOLE-- [fill = 0] 90089070 00000084 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiRegWrite) 900890f4 00000084 libsysbm.a : hostread.c.obj (.text.HOSTread) 90089178 00000084 : hostwrite.c.obj (.text.HOSTwrite) 900891fc 00000004 --HOLE-- [fill = 0] 90089200 00000084 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_halLinesResetCmd) 90089284 0000000c --HOLE-- [fill = 0] 90089290 00000084 : mmcsd_v0.obj (.text.MMCSD_halLinesResetDat) 90089314 0000000c --HOLE-- [fill = 0] 90089320 00000084 IPC.lib : pec_prom.o (.text.PP_Write_HWID_9NC) 900893a4 0000000c --HOLE-- [fill = 0] 900893b0 00000084 : pec_prom.o (.text.PP_Write_HWID_Serial) 90089434 0000000c --HOLE-- [fill = 0] 90089440 00000084 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_bind) 900894c4 0000000c --HOLE-- [fill = 0] 900894d0 00000084 : altcp_tcp.obj (.text.altcp_tcp_get_tcp_addrinfo) 90089554 0000000c --HOLE-- [fill = 0] 90089560 00000084 : dhcp.obj (.text.dhcp_option_short) 900895e4 0000000c --HOLE-- [fill = 0] 900895f0 00000084 : ip4_frag.obj (.text.ip_reass_dequeue_datagram) 90089674 0000000c --HOLE-- [fill = 0] 90089680 00000084 : tcp.obj (.text.tcp_close) 90089704 0000000c --HOLE-- [fill = 0] 90089710 00000084 : tcp_in.obj (.text.tcp_get_next_optbyte) 90089794 0000000c --HOLE-- [fill = 0] 900897a0 00000082 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_getALEAddressType) 90089822 0000000e --HOLE-- [fill = 0] 90089830 00000082 : csl_cpsw.obj (.text.CSL_CPSW_getPTypeReg) 900898b2 0000000e --HOLE-- [fill = 0] 900898c0 00000082 : csl_cpsw.obj (.text.CSL_CPSW_setAleAgingTimerReg) 90089942 0000000e --HOLE-- [fill = 0] 90089950 00000082 : csl_cpsw.obj (.text.CSL_CPSW_setAlePolicerControlReg) 900899d2 0000000e --HOLE-- [fill = 0] 900899e0 00000082 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_utils.obj (.text.CSL_udmapCppi5SetReturnPolicy) 90089a62 0000000e --HOLE-- [fill = 0] 90089a70 00000082 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_setNetSecCfg) 90089af2 0000000e --HOLE-- [fill = 0] 90089b00 00000082 : cpsw_ale_ioctl.obj (.text.CpswAle_validateEtherTypePolicer) 90089b82 0000000e --HOLE-- [fill = 0] 90089b90 00000082 : cpsw_macport_ioctl.obj (.text.CpswMacPort_ioctl_handler_ENET_TAS_IOCTL_SET_STATE) 90089c12 0000000e --HOLE-- [fill = 0] 90089c20 00000082 : cpsw_est.obj (.text.Cpsw_ioctlEst) 90089ca2 0000000e --HOLE-- [fill = 0] 90089cb0 00000082 ti_enet_open_close.o (.text.EnetAppUtils_allocRxFlowForChIdx) 90089d32 0000000e --HOLE-- [fill = 0] 90089d40 00000082 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_unregisterIntr) 90089dc2 0000000e --HOLE-- [fill = 0] 90089dd0 00000082 : enetphy.obj (.text.EnetPhy_readReg) 90089e52 0000000e --HOLE-- [fill = 0] 90089e60 00000082 : enet_rm.obj (.text.EnetRm_findResource) 90089ee2 0000000e --HOLE-- [fill = 0] 90089ef0 00000082 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.FF_CheckValid) 90089f72 0000000e --HOLE-- [fill = 0] 90089f80 00000082 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_halSoftReset) 9008a002 0000000e --HOLE-- [fill = 0] 9008a010 00000082 : mmcsd_v0.obj (.text.MMCSD_sendTuningDataEMMC) 9008a092 0000000e --HOLE-- [fill = 0] 9008a0a0 00000082 : ospi_phy.obj (.text.OSPI_phyFindRxHigh) 9008a122 0000000e --HOLE-- [fill = 0] 9008a130 00000082 : ospi_phy.obj (.text.OSPI_phyFindRxLow) 9008a1b2 0000000e --HOLE-- [fill = 0] 9008a1c0 00000082 : ospi_phy.obj (.text.OSPI_phyFindTxHigh) 9008a242 0000000e --HOLE-- [fill = 0] 9008a250 00000082 : ospi_phy.obj (.text.OSPI_phyFindTxLow) 9008a2d2 0000000e --HOLE-- [fill = 0] 9008a2e0 00000082 : udma_ch.obj (.text.Udma_chPair) 9008a362 0000000e --HOLE-- [fill = 0] 9008a370 00000082 : udma_ch.obj (.text.Udma_chUnpair) 9008a3f2 0000000e --HOLE-- [fill = 0] 9008a400 00000082 fs.o (.text.fs_open) 9008a482 0000000e --HOLE-- [fill = 0] 9008a490 00000082 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_netif_ip_addr_changed) 9008a512 0000000e --HOLE-- [fill = 0] 9008a520 00000082 : tftp_server.obj (.text.tftp_init) 9008a5a2 0000000e --HOLE-- [fill = 0] 9008a5b0 00000080 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_delIPv6HighEntry) 9008a630 00000080 : cpsw_ale.obj (.text.CpswAle_initVlanCfg) 9008a6b0 00000080 board.am64x.r5f.ti-arm-clang.debug.lib : eeprom_at24c.obj (.text.EEPROM_AT24C_open) 9008a730 00000080 ti_enet_config.o (.text.EnetAppSoc_fillMacAddrList) 9008a7b0 00000080 ti_enet_open_close.o (.text.EnetAppUtils_closeTxCh) 9008a830 00000080 ti_enet_soc.o (.text.EnetSoc_getMacPortMii) 9008a8b0 00000080 ti_enet_soc.o (.text.EnetSoc_releaseIntrCfg) 9008a930 00000080 ti_enet_soc.o (.text.EnetSoc_setupIntrCfg) 9008a9b0 00000080 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_GetChainLength) 9008aa30 00000080 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiRegRead) 9008aab0 00000080 IPC.lib : IPCTransceive.o (.text.IPC_vNotify_recvCallback) 9008ab30 00000080 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_dma.obj (.text.UART_dmaDisableChannel) 9008abb0 00000080 : uart_v0.obj (.text.UART_readData) 9008ac30 00000080 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_shutdown) 9008acb0 00000080 : dhcp.obj (.text.dhcp_dec_pcb_refcount) 9008ad30 00000080 : inet_chksum.obj (.text.inet_chksum_pseudo_partial) 9008adb0 00000080 termserver.o (.text.termd_getchar) 9008ae30 0000007e drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaChanOpIsChanEnabled) 9008aeae 00000002 --HOLE-- [fill = 0] 9008aeb0 0000007e : csl_bcdma.obj (.text.CSL_bcdmaChanOpIsValidChanIdx) 9008af2e 00000002 --HOLE-- [fill = 0] 9008af30 0000007e : csl_bcdma.obj (.text.CSL_bcdmaMapChanIdx) 9008afae 00000002 --HOLE-- [fill = 0] 9008afb0 0000007e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_setPriorityPolicerEntry) 9008b02e 00000002 --HOLE-- [fill = 0] 9008b030 0000007e : cpsw_macport.obj (.text.CpswMacPort_enableLoopback) 9008b0ae 00000002 --HOLE-- [fill = 0] 9008b0b0 0000007e : enet.obj (.text.EnetPer_close) 9008b12e 00000002 --HOLE-- [fill = 0] 9008b130 0000007e : k3_soc.obj (.text.EnetSocJ7x_getIntrNum) 9008b1ae 00000002 --HOLE-- [fill = 0] 9008b1b0 0000007e drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_getReadMailbox) 9008b22e 00000002 --HOLE-- [fill = 0] 9008b230 0000007e : lpddr4.obj (.text.LPDDR4_StartSequenceController) 9008b2ae 00000002 --HOLE-- [fill = 0] 9008b2b0 0000007e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_dbg_get_tcp_state) 9008b32e 00000002 --HOLE-- [fill = 0] 9008b330 0000007e : lwiperf.obj (.text.lwip_tcp_conn_report) 9008b3ae 00000002 --HOLE-- [fill = 0] 9008b3b0 0000007e : netif.obj (.text.netif_invoke_ext_callback) 9008b42e 00000002 --HOLE-- [fill = 0] 9008b430 0000007c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_mapMacAddr2TableWord) 9008b4ac 00000004 --HOLE-- [fill = 0] 9008b4b0 0000007c drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_pktdma.obj (.text.CSL_pktdmaGetCfg) 9008b52c 00000004 --HOLE-- [fill = 0] 9008b530 0000007c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_ioctlutils.obj (.text.EnetAppUtils_isPortLinkUp) 9008b5ac 00000004 --HOLE-- [fill = 0] 9008b5b0 0000007c : enet.obj (.text.EnetPer_initCfg) 9008b62c 00000004 --HOLE-- [fill = 0] 9008b630 0000007c : enet_rm.obj (.text.EnetRm_isCoreAttached) 9008b6ac 00000004 --HOLE-- [fill = 0] 9008b6b0 0000007c : enet.obj (.text.Enet_initCfg) 9008b72c 00000004 --HOLE-- [fill = 0] 9008b730 0000007c freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_ProcessShortName) 9008b7ac 00000004 --HOLE-- [fill = 0] 9008b7b0 0000007c lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_deinitTxObj) 9008b82c 00000004 --HOLE-- [fill = 0] 9008b830 0000007c ti_enet_lwipif.o (.text.LwipifEnetAppCb_releaseRxHandle) 9008b8ac 00000004 --HOLE-- [fill = 0] 9008b8b0 0000007c ti_enet_lwipif.o (.text.LwipifEnetAppCb_releaseTxHandle) 9008b92c 00000004 --HOLE-- [fill = 0] 9008b930 0000007c drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_dma.obj (.text.UART_dmaClose) 9008b9ac 00000004 --HOLE-- [fill = 0] 9008b9b0 0000007c nortos.am64x.r5f.ti-arm-clang.debug.lib : DebugP_log.obj (.text._DebugP_assert) 9008ba2c 00000004 --HOLE-- [fill = 0] 9008ba30 0000007c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_nagle_disabled) 9008baac 00000004 --HOLE-- [fill = 0] 9008bab0 0000007c : tftp_server.obj (.text.send_error) 9008bb2c 00000004 --HOLE-- [fill = 0] 9008bb30 0000007c : tcp.obj (.text.tcp_seg_copy) 9008bbac 00000004 --HOLE-- [fill = 0] 9008bbb0 0000007a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udmautils.obj (.text.EnetAppUtils_regDfltRxFlowForChIdx) 9008bc2a 00000006 --HOLE-- [fill = 0] 9008bc30 0000007a : enet_udmautils.obj (.text.EnetAppUtils_unregDfltRxFlowForChIdx) 9008bcaa 00000006 --HOLE-- [fill = 0] 9008bcb0 0000007a ti_enet_open_close.o (.text.EnetDma_checkPktState) 9008bd2a 00000006 --HOLE-- [fill = 0] 9008bd30 0000007a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_phymdio_dflt.obj (.text.EnetPhyMdioDflt_ioctl) 9008bdaa 00000006 --HOLE-- [fill = 0] 9008bdb0 0000007a freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_isEndOfChain) 9008be2a 00000006 --HOLE-- [fill = 0] 9008be30 0000007a lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_retrieveTxPkts) 9008beaa 00000006 --HOLE-- [fill = 0] 9008beb0 0000007a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_manual_ioctl.obj (.text.Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_C22_READ) 9008bf2a 00000006 --HOLE-- [fill = 0] 9008bf30 0000007a drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_disablePhy) 9008bfaa 00000006 --HOLE-- [fill = 0] 9008bfb0 0000007a : uart_v0.obj (.text.UART_Params_init) 9008c02a 00000006 --HOLE-- [fill = 0] 9008c030 0000007a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : inet_chksum.obj (.text.inet_chksum_pbuf) 9008c0aa 00000006 --HOLE-- [fill = 0] 9008c0b0 00000078 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_cpts_ioctl.obj (.text.CpswCpts_checkGenfEstfErrata) 9008c128 00000008 --HOLE-- [fill = 0] 9008c130 00000078 ti_enet_open_close.o (.text.EnetApp_retrieveFreeTxPkts) 9008c1a8 00000008 --HOLE-- [fill = 0] 9008c1b0 00000078 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_waitIndWriteComplete) 9008c228 00000008 --HOLE-- [fill = 0] 9008c230 00000078 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_nagle_disable) 9008c2a8 00000008 --HOLE-- [fill = 0] 9008c2b0 00000078 : altcp_tcp.obj (.text.altcp_tcp_nagle_enable) 9008c328 00000008 --HOLE-- [fill = 0] 9008c330 00000078 : altcp_tcp.obj (.text.altcp_tcp_output) 9008c3a8 00000008 --HOLE-- [fill = 0] 9008c3b0 00000078 : altcp_tcp.obj (.text.altcp_tcp_sndbuf) 9008c428 00000008 --HOLE-- [fill = 0] 9008c430 00000078 : altcp_tcp.obj (.text.altcp_tcp_sndqueuelen) 9008c4a8 00000008 --HOLE-- [fill = 0] 9008c4b0 00000078 enet_main.o (.text.ec_iface_init_ecs1) 9008c528 00000078 libc.a : snprintf.c.obj (.text.snprintf) 9008c5a0 00000078 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_remove_listener) 9008c618 00000008 --HOLE-- [fill = 0] 9008c620 00000076 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaChanOpClearError) 9008c696 0000000a --HOLE-- [fill = 0] 9008c6a0 00000076 : csl_bcdma.obj (.text.CSL_bcdmaDoChanOp) 9008c716 0000000a --HOLE-- [fill = 0] 9008c720 00000076 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_mapMcastMaskBits2RegCfg) 9008c796 0000000a --HOLE-- [fill = 0] 9008c7a0 00000076 : cpsw_ale.obj (.text.CpswAle_setPolicerDefaultThreadCfg) 9008c816 0000000a --HOLE-- [fill = 0] 9008c820 00000076 : enet_ioctlutils.obj (.text.EnetAppUtils_freeMac) 9008c896 0000000a --HOLE-- [fill = 0] 9008c8a0 00000076 : enet_apputils_k3.obj (.text.EnetAppUtils_unlockMmr) 9008c916 0000000a --HOLE-- [fill = 0] 9008c920 00000076 ti_enet_soc.o (.text.EnetSoc_getMcuEnetControl) 9008c996 0000000a --HOLE-- [fill = 0] 9008c9a0 00000076 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_mmcsd.obj (.text.FF_MMCSDMountPartition) 9008ca16 0000000a --HOLE-- [fill = 0] 9008ca20 00000076 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2lwipif.obj (.text.LWIPIF_LWIP_input) 9008ca96 0000000a --HOLE-- [fill = 0] 9008caa0 00000076 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_priv.obj (.text.MMCSD_parseCSDEmmc) 9008cb16 0000000a --HOLE-- [fill = 0] 9008cb20 00000076 : ospi_v0.obj (.text.OSPI_isDmaRestrictedRegion) 9008cb96 0000000a --HOLE-- [fill = 0] 9008cba0 00000076 : ospi_phy.obj (.text.OSPI_phyReadAttackVector) 9008cc16 0000000a --HOLE-- [fill = 0] 9008cc20 00000076 : ospi_v0.obj (.text.OSPI_waitIdle) 9008cc96 0000000a --HOLE-- [fill = 0] 9008cca0 00000076 termcom.o (.text.TERMCOM_vPrintComma) 9008cd16 0000000a --HOLE-- [fill = 0] 9008cd20 00000076 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_fifoRead) 9008cd96 0000000a --HOLE-- [fill = 0] 9008cda0 00000076 : udma_ch.obj (.text.Udma_chGetCqRingHandle) 9008ce16 0000000a --HOLE-- [fill = 0] 9008ce20 00000076 : udma_ch.obj (.text.Udma_chGetFqRingHandle) 9008ce96 0000000a --HOLE-- [fill = 0] 9008cea0 00000076 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_mss) 9008cf16 0000000a --HOLE-- [fill = 0] 9008cf20 00000076 : altcp_tcp.obj (.text.altcp_tcp_set_poll) 9008cf96 0000000a --HOLE-- [fill = 0] 9008cfa0 00000076 flasher.o (.text.flash) 9008d016 0000000a --HOLE-- [fill = 0] 9008d020 00000076 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : memp.obj (.text.memp_free) 9008d096 0000000a --HOLE-- [fill = 0] 9008d0a0 00000076 : memp.obj (.text.memp_malloc) 9008d116 0000000a --HOLE-- [fill = 0] 9008d120 00000074 drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_uniflash.obj (.text.Bootloader_uniflashFlashPhyTuningData) 9008d194 0000000c --HOLE-- [fill = 0] 9008d1a0 00000074 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_ioctlutils.obj (.text.EnetAppUtils_allocMac) 9008d214 0000000c --HOLE-- [fill = 0] 9008d220 00000074 : enetphy.obj (.text.EnetPhy_foundState) 9008d294 0000000c --HOLE-- [fill = 0] 9008d2a0 00000074 : enetphy.obj (.text.EnetPhy_loopbackState) 9008d314 0000000c --HOLE-- [fill = 0] 9008d320 00000074 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_ValidShortChar) 9008d394 0000000c --HOLE-- [fill = 0] 9008d3a0 00000074 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_init) 9008d414 0000000c --HOLE-- [fill = 0] 9008d420 00000074 : uart_v0.obj (.text.UART_readInterrupt) 9008d494 0000000c --HOLE-- [fill = 0] 9008d4a0 00000074 : udma_ch.obj (.text.Udma_chEnable) 9008d514 0000000c --HOLE-- [fill = 0] 9008d520 00000074 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_check) 9008d594 0000000c --HOLE-- [fill = 0] 9008d5a0 00000074 : dhcp.obj (.text.dhcp_option_trailer) 9008d614 0000000c --HOLE-- [fill = 0] 9008d620 00000074 : dns.obj (.text.dns_create_txid) 9008d694 0000000c --HOLE-- [fill = 0] 9008d6a0 00000074 : memp.obj (.text.do_memp_free_pool) 9008d714 0000000c --HOLE-- [fill = 0] 9008d720 00000074 enet_main.o (.text.fill_buffer_with_packets) 9008d794 0000000c --HOLE-- [fill = 0] 9008d7a0 00000074 flasher.o (.text.flasher_sbl) 9008d814 0000000c --HOLE-- [fill = 0] 9008d820 00000074 flasher.o (.text.flasher_xip) 9008d894 0000000c --HOLE-- [fill = 0] 9008d8a0 00000074 httpd.o (.text.http_send_data_nonssi) 9008d914 0000000c --HOLE-- [fill = 0] 9008d920 00000074 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.strcasecmp) 9008d994 0000000c --HOLE-- [fill = 0] 9008d9a0 00000072 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpts.obj (.text.CSL_CPTS_getEventInfo) 9008da12 0000000e --HOLE-- [fill = 0] 9008da20 00000072 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaChanOpTriggerChan) 9008da92 0000000e --HOLE-- [fill = 0] 9008daa0 00000072 : csl_lcdma_ringacc.obj (.text.CSL_lcdma_ringaccAckReverseRing) 9008db12 0000000e --HOLE-- [fill = 0] 9008db20 00000072 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_usleep) 9008db92 0000000e --HOLE-- [fill = 0] 9008dba0 00000072 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_addVlanEntry) 9008dc12 0000000e --HOLE-- [fill = 0] 9008dc20 00000072 : cpsw_ale.obj (.text.CpswAle_getFreeEntry) 9008dc92 0000000e --HOLE-- [fill = 0] 9008dca0 00000072 ti_enet_open_close.o (.text.EnetApp_openAllTxDmaChannels) 9008dd12 0000000e --HOLE-- [fill = 0] 9008dd20 00000072 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_appmemutils.obj (.text.EnetMem_allocDmaDesc) 9008dd92 0000000e --HOLE-- [fill = 0] 9008dda0 00000072 : enetphy.obj (.text.EnetPhy_findCommonNwayCaps) 9008de12 0000000e --HOLE-- [fill = 0] 9008de20 00000072 : enetphy.obj (.text.EnetPhy_getHandle) 9008de92 0000000e --HOLE-- [fill = 0] 9008dea0 00000072 : enet_queue.obj (.text.EnetQueue_getQCount) 9008df12 0000000e --HOLE-- [fill = 0] 9008df20 00000072 : enet_rm_ioctl.obj (.text.EnetRm_validateRxFlow) 9008df92 0000000e --HOLE-- [fill = 0] 9008dfa0 00000072 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_close) 9008e012 0000000e --HOLE-- [fill = 0] 9008e020 00000072 : udma_utils.obj (.text.UdmaUtils_makeTrpd) 9008e092 0000000e --HOLE-- [fill = 0] 9008e0a0 00000072 flasher.o (.text.flasher_img) 9008e112 0000000e --HOLE-- [fill = 0] 9008e120 00000072 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_tcp_get_tcp_addrinfo) 9008e192 0000000e --HOLE-- [fill = 0] 9008e1a0 00000072 lwip-contrib-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcpecho_raw.obj (.text.tcpecho_raw_init) 9008e212 0000000e --HOLE-- [fill = 0] 9008e220 00000070 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_getAleOUIAddrEntry) 9008e290 00000070 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_intaggr.obj (.text.CSL_intaggrClrIntr) 9008e300 00000070 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_construct) 9008e370 00000070 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_validateMacAddrPolicer) 9008e3e0 00000070 : cpsw_ioctl.obj (.text.Cpsw_internalIoctl_handler_ENET_IOCTL_REGISTER_RX_DEFAULT_FLOW) 9008e450 00000070 ti_enet_open_close.o (.text.EnetAppUtils_allocTxCh) 9008e4c0 00000070 ti_enet_config.o (.text.EnetApp_releaseMacAddrToPool) 9008e530 00000070 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_getLinkCfg) 9008e5a0 00000070 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_GetFreeSize) 9008e610 00000070 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_getWriteMailbox) 9008e680 00000070 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2lwipif.obj (.text.LWIPIF_LWIP_send) 9008e6f0 00000070 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_halSetUHSMode) 9008e760 00000070 : sciclient_rm.obj (.text.Sciclient_rmGetResourceRange) 9008e7d0 00000070 : uart_dma.obj (.text.UART_dmaOpen) 9008e840 00000070 : uart_v0.obj (.text.UART_readByte) 9008e8b0 00000070 : udma_flow.obj (.text.Udma_flowDetach) 9008e920 00000070 : udma_rm.obj (.text.Udma_rmFreeMappedRxCh) 9008e990 00000070 : udma_rm.obj (.text.Udma_rmFreeMappedTxCh) 9008ea00 00000070 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_abort) 9008ea70 00000070 : altcp_tcp.obj (.text.altcp_tcp_setprio) 9008eae0 00000070 libc.a : atoi.c.obj (.text.atoi) 9008eb50 00000070 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_option_byte) 9008ebc0 00000070 : igmp.obj (.text.igmp_start) 9008ec30 00000070 : timeouts.obj (.text.lwip_cyclic_timer) 9008eca0 0000006e enet_main.o (.text.App_handleEvent) 9008ed0e 00000002 --HOLE-- [fill = 0] 9008ed10 0000006e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getCppiP0Control) 9008ed7e 00000002 --HOLE-- [fill = 0] 9008ed80 0000006e : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_mapTableWord2MacAddr) 9008edee 00000002 --HOLE-- [fill = 0] 9008edf0 0000006e : csl_cpsw.obj (.text.CSL_CPSW_setAleIPNxtHdrWhitelist) 9008ee5e 00000002 --HOLE-- [fill = 0] 9008ee60 0000006e : cpsw_ale_ioctl.obj (.text.CpswAle_getPolicerDefaultThreadConfig) 9008eece 00000002 --HOLE-- [fill = 0] 9008eed0 0000006e : cpsw_ioctl.obj (.text.Cpsw_internalIoctl_handler_ENET_IOCTL_UNREGISTER_RX_DEFAULT_FLOW) 9008ef3e 00000002 --HOLE-- [fill = 0] 9008ef40 0000006e dcs_som_ddr_soc.o (.text.DDR_socEnableVttRegulator) 9008efae 00000002 --HOLE-- [fill = 0] 9008efb0 0000006e drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4_16bit.obj (.text.LPDDR4_EnablePIInitiator) 9008f01e 00000002 --HOLE-- [fill = 0] 9008f020 0000006e : mmcsd_v0.obj (.text.MMCSD_phyGetOtapDelay) 9008f08e 00000002 --HOLE-- [fill = 0] 9008f090 0000006e : sciclient_rm_irq.obj (.text.Sciclient_rmIaVintGetInfo) 9008f0fe 00000002 --HOLE-- [fill = 0] 9008f100 0000006e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_recved) 9008f16e 00000002 --HOLE-- [fill = 0] 9008f170 0000006e : tftp_server.obj (.text.close_handle) 9008f1de 00000002 --HOLE-- [fill = 0] 9008f1e0 0000006e : dhcp.obj (.text.dhcp_t2_timeout) 9008f24e 00000002 --HOLE-- [fill = 0] 9008f250 0000006e : inet_chksum.obj (.text.inet_chksum_pseudo) 9008f2be 00000002 --HOLE-- [fill = 0] 9008f2c0 0000006e iperfserver.o (.text.lwiperf_report) 9008f32e 00000002 --HOLE-- [fill = 0] 9008f330 0000006e freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.prvAllocFileHandle) 9008f39e 00000002 --HOLE-- [fill = 0] 9008f3a0 0000006e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_kill_timewait) 9008f40e 00000002 --HOLE-- [fill = 0] 9008f410 0000006e : tcp_out.obj (.text.tcp_rexmit_rto_commit) 9008f47e 00000002 --HOLE-- [fill = 0] 9008f480 0000006c enet_main.o (.text.App_netifStatusChangeCb) 9008f4ec 00000004 --HOLE-- [fill = 0] 9008f4f0 0000006c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_setVlanMcastPortMask) 9008f55c 00000004 --HOLE-- [fill = 0] 9008f560 0000006c ti_enet_open_close.o (.text.EnetApp_openTxDma) 9008f5cc 00000004 --HOLE-- [fill = 0] 9008f5d0 0000006c freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_mmcsd.obj (.text.FF_MMCSDCreateAndFormatPartition) 9008f63c 00000004 --HOLE-- [fill = 0] 9008f640 0000006c : ff_ioman.obj (.text.FF_ReadParts) 9008f6ac 0000006c libsysbm.a : hostunlink.c.obj (.text.HOSTunlink) 9008f718 00000008 --HOLE-- [fill = 0] 9008f720 0000006c drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_registerClient) 9008f78c 00000004 --HOLE-- [fill = 0] 9008f790 0000006c lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2lwipif.obj (.text.LWIPIF_LWIP_setNotifyCallbacks) 9008f7fc 00000004 --HOLE-- [fill = 0] 9008f800 0000006c drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_dma.obj (.text.OSPI_dmaOpen) 9008f86c 00000004 --HOLE-- [fill = 0] 9008f870 0000006c : udma_ch.obj (.text.UdmaChPrms_init) 9008f8dc 0000006c libc.a : aeabi_portable.c.obj (.text.__aeabi_assert) 9008f948 00000008 --HOLE-- [fill = 0] 9008f950 0000006c flasher.o (.text.construct_uniflash_headers) 9008f9bc 0000006c libc.a : getdevice.c.obj (.text.finddevice) 9008fa28 00000008 --HOLE-- [fill = 0] 9008fa30 0000006c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwiperf.obj (.text.lwiperf_tcp_client_sent) 9008fa9c 00000004 --HOLE-- [fill = 0] 9008faa0 0000006a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_apputils_k3.obj (.text.EnetAppUtils_lockMmr) 9008fb0a 00000006 --HOLE-- [fill = 0] 9008fb10 0000006a : enet.obj (.text.Enet_getHandleInfo) 9008fb7a 00000006 --HOLE-- [fill = 0] 9008fb80 0000006a freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.FF_ReleaseBuffer) 9008fbea 00000006 --HOLE-- [fill = 0] 9008fbf0 0000006a board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_quirkSpansionUNHYSADisable) 9008fc5a 00000006 --HOLE-- [fill = 0] 9008fc60 0000006a : led_tpic2810.obj (.text.LED_tpic2810Open) 9008fcca 00000006 --HOLE-- [fill = 0] 9008fcd0 0000006a drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.LPDDR4_WriteCtlConfig) 9008fd3a 00000006 --HOLE-- [fill = 0] 9008fd40 0000006a : lpddr4.obj (.text.LPDDR4_WritePhyConfig) 9008fdaa 00000006 --HOLE-- [fill = 0] 9008fdb0 0000006a : lpddr4.obj (.text.LPDDR4_WritePhyIndepConfig) 9008fe1a 00000006 --HOLE-- [fill = 0] 9008fe20 0000006a : pinmux.obj (.text.Pinmux_lockMMR) 9008fe8a 00000006 --HOLE-- [fill = 0] 9008fe90 0000006a lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.text.pbufQ_deQ) 9008fefa 00000006 --HOLE-- [fill = 0] 9008ff00 0000006a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_skip_const) 9008ff6a 00000006 --HOLE-- [fill = 0] 9008ff70 0000006a httpd_cgi_sii.o (.text.sii_error_message) 9008ffda 00000006 --HOLE-- [fill = 0] 9008ffe0 0000006a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : timeouts.obj (.text.sys_timeout) 9009004a 00000006 --HOLE-- [fill = 0] 90090050 00000068 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_mdio.obj (.text.CSL_MDIO_phyGetRegReadVal) 900900b8 00000008 --HOLE-- [fill = 0] 900900c0 00000068 : enet_apputils.obj (.text.EnetAppUtils_print) 90090128 00000008 --HOLE-- [fill = 0] 90090130 00000068 ti_enet_soc.o (.text.EnetSoc_getEFusedMacAddrs) 90090198 00000008 --HOLE-- [fill = 0] 900901a0 00000068 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_ReleaseFATBuffers) 90090208 00000008 --HOLE-- [fill = 0] 90090210 00000068 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiCmdRead) 90090278 00000008 --HOLE-- [fill = 0] 90090280 00000068 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2lwipif.obj (.text.LWIPIF_LWIP_periodic_polling) 900902e8 00000008 --HOLE-- [fill = 0] 900902f0 00000068 : lwip2enet.obj (.text.Lwip2Enet_prepTxPktQ) 90090358 00000008 --HOLE-- [fill = 0] 90090360 00000068 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_waitWriteSRAMLevel) 900903c8 00000008 --HOLE-- [fill = 0] 900903d0 00000068 : sciclient_rm_irq.obj (.text.Sciclient_rmIrqCfgIsDirectEvent) 90090438 00000008 --HOLE-- [fill = 0] 90090440 00000068 : sciclient_rm_irq.obj (.text.Sciclient_rmIrqCfgIsDirectNonEvent) 900904a8 00000008 --HOLE-- [fill = 0] 900904b0 00000068 : sciclient_rm_irq.obj (.text.Sciclient_rmIrqCfgIsEventToVintMappingOnly) 90090518 00000008 --HOLE-- [fill = 0] 90090520 00000068 : sciclient_rm_irq.obj (.text.Sciclient_rmIrqCfgIsOesOnly) 90090588 00000008 --HOLE-- [fill = 0] 90090590 00000068 : sciclient_rm_irq.obj (.text.Sciclient_rmIrqCfgIsUnmappedVintDirectEvent) 900905f8 00000008 --HOLE-- [fill = 0] 90090600 00000068 : uart_v0.obj (.text.UART_divisorValCompute) 90090668 00000008 --HOLE-- [fill = 0] 90090670 00000068 : udma_ring_lcdma.obj (.text.Udma_ringPrimeReadLcdma) 900906d8 00000008 --HOLE-- [fill = 0] 900906e0 00000068 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_fine_tmr) 90090748 00000068 libc.a : strstr.c.obj (.text.strstr) 900907b0 00000068 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_next_iss) 90090818 00000008 --HOLE-- [fill = 0] 90090820 00000068 : tcp_out.obj (.text.tcp_output_segment_busy) 90090888 00000008 --HOLE-- [fill = 0] 90090890 00000066 drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_uniflash.obj (.text.Bootloader_uniflashFlashFileMMCSDRaw) 900908f6 0000000a --HOLE-- [fill = 0] 90090900 00000066 : csl_lcdma_ringacc.obj (.text.CSL_lcdma_ringaccCommitToForwardRing) 90090966 0000000a --HOLE-- [fill = 0] 90090970 00000066 : udma_utils.obj (.text.CSL_udmapCppi5SetIds) 900909d6 0000000a --HOLE-- [fill = 0] 900909e0 00000066 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.CSL_udmapCppi5SetIds) 90090a46 0000000a --HOLE-- [fill = 0] 90090a50 00000066 : cpsw_macport_est.obj (.text.CpswEst_clearEstBuf) 90090ab6 0000000a --HOLE-- [fill = 0] 90090ac0 00000066 : cpsw_est.obj (.text.Cpsw_enableEst) 90090b26 0000000a --HOLE-- [fill = 0] 90090b30 00000066 eeprom.o (.text.EEPROM_open) 90090b96 0000000a --HOLE-- [fill = 0] 90090ba0 00000066 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_rm_ioctl.obj (.text.EnetRm_attachCore) 90090c06 0000000a --HOLE-- [fill = 0] 90090c10 00000066 : enet_rm_ioctl.obj (.text.EnetRm_mapMacAddr2ResourceIdx) 90090c76 0000000a --HOLE-- [fill = 0] 90090c80 00000066 board.am64x.r5f.ti-arm-clang.debug.lib : led.obj (.text.LED_open) 90090ce6 0000000a --HOLE-- [fill = 0] 90090cf0 00000066 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_createTimer) 90090d56 0000000a --HOLE-- [fill = 0] 90090d60 00000066 : lwip2enet.obj (.text.Lwip2Enet_submitTxPackets) 90090dc6 0000000a --HOLE-- [fill = 0] 90090dd0 00000066 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_manual_ioctl.obj (.text.Mdio_manualModeSendPreamble) 90090e36 0000000a --HOLE-- [fill = 0] 90090e40 00000066 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : custom_pbuf.obj (.text.custom_pbuf_validateChain) 90090ea6 0000000a --HOLE-- [fill = 0] 90090eb0 00000066 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : memp.obj (.text.memp_malloc_pool) 90090f16 0000000a --HOLE-- [fill = 0] 90090f20 00000066 : pbuf.obj (.text.pbuf_ref) 90090f86 0000000a --HOLE-- [fill = 0] 90090f90 00000064 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getAleStatusNumPolicers) 90090ff4 0000000c --HOLE-- [fill = 0] 90091000 00000064 : cpsw_hostport.obj (.text.CpswHostPort_close) 90091064 0000000c --HOLE-- [fill = 0] 90091070 00000064 : cpsw_macport.obj (.text.CpswMacPort_checkSocCfg) 900910d4 0000000c --HOLE-- [fill = 0] 900910e0 00000064 ti_enet_config.o (.text.EnetAppSoc_getMacAddrList) 90091144 0000000c --HOLE-- [fill = 0] 90091150 00000064 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : k3_soc.obj (.text.EnetSocJ7x_rmIrqSet) 900911b4 0000000c --HOLE-- [fill = 0] 900911c0 00000064 : enet.obj (.text.Enet_getHandle) 90091224 0000000c --HOLE-- [fill = 0] 90091230 00000064 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_MakeNameCompliant) 90091294 0000000c --HOLE-- [fill = 0] 900912a0 00000064 IPC.lib : IPCTransceive.o (.text.IPC_s32NotifySend) 90091304 0000000c --HOLE-- [fill = 0] 90091310 00000064 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_getXferSpeedFromModeEmmc) 90091374 0000000c --HOLE-- [fill = 0] 90091380 00000064 : ospi_v0.obj (.text.OSPI_getCmdExt) 900913e4 0000000c --HOLE-- [fill = 0] 900913f0 00000064 : sciclient_procboot.obj (.text.Sciclient_procBootGetProcessorState) 90091454 0000000c --HOLE-- [fill = 0] 90091460 00000064 : sciclient_rm_irq.obj (.text.Sciclient_rmIrGetInst) 900914c4 0000000c --HOLE-- [fill = 0] 900914d0 00000064 : udma_event.obj (.text.Udma_eventDisable) 90091534 0000000c --HOLE-- [fill = 0] 90091540 00000064 : udma_event.obj (.text.Udma_eventEnable) 900915a4 0000000c --HOLE-- [fill = 0] 900915b0 00000064 : udma_rm.obj (.text.Udma_rmFreeEvent) 90091614 0000000c --HOLE-- [fill = 0] 90091620 00000064 : udma_rm.obj (.text.Udma_rmFreeIrIntr) 90091684 0000000c --HOLE-- [fill = 0] 90091690 00000064 : udma_rm.obj (.text.Udma_rmFreeVintr) 900916f4 0000000c --HOLE-- [fill = 0] 90091700 00000064 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_t1_timeout) 90091764 0000000c --HOLE-- [fill = 0] 90091770 00000064 httpd_cgi_sii.o (.text.sii_last_device_param) 900917d4 0000000c --HOLE-- [fill = 0] 900917e0 00000064 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_err) 90091844 0000000c --HOLE-- [fill = 0] 90091850 00000064 : tcp.obj (.text.tcp_recv) 900918b4 0000000c --HOLE-- [fill = 0] 900918c0 00000064 : tcp.obj (.text.tcp_sent) 90091924 0000000c --HOLE-- [fill = 0] 90091930 00000062 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getPortStats) 90091992 0000000e --HOLE-- [fill = 0] 900919a0 00000062 : cpsw_ale.obj (.text.CpswAle_setAleModeFlags) 90091a02 0000000e --HOLE-- [fill = 0] 90091a10 00000062 : cpsw_macport.obj (.text.CpswMacPort_disablePort) 90091a72 0000000e --HOLE-- [fill = 0] 90091a80 00000062 : cpsw.obj (.text.Cpsw_getPortLinkState) 90091ae2 0000000e --HOLE-- [fill = 0] 90091af0 00000062 drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.text.DDR_probe) 90091b52 0000000e --HOLE-- [fill = 0] 90091b60 00000062 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_initCfg) 90091bc2 0000000e --HOLE-- [fill = 0] 90091bd0 00000062 : k3_soc.obj (.text.EnetSocJ7x_rmIrqRelease) 90091c32 0000000e --HOLE-- [fill = 0] 90091c40 00000062 board.am64x.r5f.ti-arm-clang.debug.lib : flash.obj (.text.Flash_open) 90091ca2 0000000e --HOLE-- [fill = 0] 90091cb0 00000062 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2lwipif.obj (.text.LWIPIF_LWIP_init) 90091d12 0000000e --HOLE-- [fill = 0] 90091d20 00000062 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_event.obj (.text.UdmaEventPrms_init) 90091d82 0000000e --HOLE-- [fill = 0] 90091d90 00000062 : udma_rm.obj (.text.Udma_rmFreeBlkCopyCh) 90091df2 0000000e --HOLE-- [fill = 0] 90091e00 00000062 : udma_rm.obj (.text.Udma_rmFreeBlkCopyHcCh) 90091e62 0000000e --HOLE-- [fill = 0] 90091e70 00000062 : udma_rm.obj (.text.Udma_rmFreeBlkCopyUhcCh) 90091ed2 0000000e --HOLE-- [fill = 0] 90091ee0 00000062 : udma_rm.obj (.text.Udma_rmFreeRxCh) 90091f42 0000000e --HOLE-- [fill = 0] 90091f50 00000062 : udma_rm.obj (.text.Udma_rmFreeRxHcCh) 90091fb2 0000000e --HOLE-- [fill = 0] 90091fc0 00000062 : udma_rm.obj (.text.Udma_rmFreeRxUhcCh) 90092022 0000000e --HOLE-- [fill = 0] 90092030 00000062 : udma_rm.obj (.text.Udma_rmFreeTxCh) 90092092 0000000e --HOLE-- [fill = 0] 900920a0 00000062 : udma_rm.obj (.text.Udma_rmFreeTxHcCh) 90092102 0000000e --HOLE-- [fill = 0] 90092110 00000062 : udma_rm.obj (.text.Udma_rmFreeTxUhcCh) 90092172 0000000e --HOLE-- [fill = 0] 90092180 00000062 xmodem.o (.text.dcs_inbyte) 900921e2 0000000e --HOLE-- [fill = 0] 900921f0 00000062 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : igmp.obj (.text.igmp_tmr) 90092252 0000000e --HOLE-- [fill = 0] 90092260 00000062 : memp.obj (.text.memp_init_pool) 900922c2 0000000e --HOLE-- [fill = 0] 900922d0 00000060 enet_main.o (.text.App_netifLinkChangeCb) 90092330 00000060 drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_xmodem.obj (.text.Bootloader_xmodemReceive) 90092390 00000060 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setAlePolicerTestControlReg) 900923f0 00000060 : cpsw_ale_ioctl.obj (.text.CpswAle_allocPolicerEntry) 90092450 00000060 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.FF_IOMAN_InitBufferDescriptors) 900924b0 00000060 libsysbm.a : hostclose.c.obj (.text.HOSTclose) 90092510 00000060 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2CBufferStatus) 90092570 00000060 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_processRxUnusedQ) 900925d0 00000060 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_getChar) 90092630 00000060 : udma_utils.obj (.text.Udma_phyToVirtFxn) 90092690 00000060 : udma_utils.obj (.text.Udma_virtToPhyFxn) 900926f0 00000060 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_supplied_address) 90092750 00000060 httpd.o (.text.httpd_init) 900927b0 00000060 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tftp_server.obj (.text.resend_data) 90092810 00000060 httpd_cgi_sii.o (.text.ssi_ip_to_str) 90092870 00000060 IPC.lib : pec_ip_common.o (.text.str_to_ip) 900928d0 00000060 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_out.obj (.text.tcp_rexmit_rto) 90092930 00000060 : udp.obj (.text.udp_recv) 90092990 0000005e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_getAleEthertypeEntry) 900929ee 00000002 --HOLE-- [fill = 0] 900929f0 0000005e : enet_utils_dflt.obj (.text.EnetUtilsDflt_print) 90092a4e 00000002 --HOLE-- [fill = 0] 90092a50 0000005e : enet_utils.obj (.text.EnetUtils_printf) 90092aae 00000002 --HOLE-- [fill = 0] 90092ab0 0000005e freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_getMinorBlockEntry) 90092b0e 00000002 --HOLE-- [fill = 0] 90092b10 0000005e drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.LPDDR4_PollAndAckIrq) 90092b6e 00000002 --HOLE-- [fill = 0] 90092b70 0000005e : sciclient_pm.obj (.text.Sciclient_pmSetModuleRst) 90092bce 00000002 --HOLE-- [fill = 0] 90092bd0 0000005e nortos.am64x.r5f.ti-arm-clang.debug.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_post) 90092c2e 00000002 --HOLE-- [fill = 0] 90092c30 0000005e drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_writeData) 90092c8e 00000002 --HOLE-- [fill = 0] 90092c90 0000005e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_accept) 90092cee 00000002 --HOLE-- [fill = 0] 90092cf0 0000005e : igmp.obj (.text.igmp_ip_output_if) 90092d4e 00000002 --HOLE-- [fill = 0] 90092d50 0000005e : pbuf.obj (.text.pbuf_init_alloced_pbuf) 90092dae 00000002 --HOLE-- [fill = 0] 90092db0 0000005e : raw.obj (.text.raw_netif_ip_addr_changed) 90092e0e 00000002 --HOLE-- [fill = 0] 90092e10 0000005e : tcp.obj (.text.tcp_accept_null) 90092e6e 00000002 --HOLE-- [fill = 0] 90092e70 0000005e : udp.obj (.text.udp_netif_ip_addr_changed) 90092ece 00000002 --HOLE-- [fill = 0] 90092ed0 0000005c enet_main.o (.text.App_receiveEvents) 90092f2c 00000004 --HOLE-- [fill = 0] 90092f30 0000005c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_ioctl_handler_CPSW_ALE_IOCTL_REMOVE_ADDR) 90092f8c 00000004 --HOLE-- [fill = 0] 90092f90 0000005c : cpsw_ale_ioctl.obj (.text.CpswAle_setPolicerRateLimit) 90092fec 00000004 --HOLE-- [fill = 0] 90092ff0 0000005c ti_enet_open_close.o (.text.EnetAppUtils_freeRxFlowForChIdx) 9009304c 00000004 --HOLE-- [fill = 0] 90093050 0000005c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.EnetUdma_dmaDescDeque) 900930ac 00000004 --HOLE-- [fill = 0] 900930b0 0000005c freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.FF_DeleteIOManager) 9009310c 00000004 --HOLE-- [fill = 0] 90093110 0000005c : ff_crc.obj (.text.FF_GetCRC16) 9009316c 00000004 --HOLE-- [fill = 0] 90093170 0000005c drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.LPDDR4_CheckPhyIndepInterrupt) 900931cc 00000004 --HOLE-- [fill = 0] 900931d0 0000005c : lpddr4.obj (.text.LPDDR4_SanityFunction4) 9009322c 00000004 --HOLE-- [fill = 0] 90093230 0000005c ti_power_clock_config.o (.text.Module_clockSetFrequency) 9009328c 00000004 --HOLE-- [fill = 0] 90093290 0000005c drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_utilLog2) 900932ec 00000004 --HOLE-- [fill = 0] 900932f0 0000005c : sciclient_rm_irq.obj (.text.Sciclient_rmIaGetInst) 9009334c 00000004 --HOLE-- [fill = 0] 90093350 0000005c : sciclient_rm_irq.obj (.text.Sciclient_rmPsPush) 900933ac 00000004 --HOLE-- [fill = 0] 900933b0 0000005c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_frag.obj (.text.ip_reass_tmr) 9009340c 00000004 --HOLE-- [fill = 0] 90093410 0000005c mcp23008.o (.text.mcp23008_getgpio) 9009346c 00000004 --HOLE-- [fill = 0] 90093470 0000005c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_setprio) 900934cc 00000004 --HOLE-- [fill = 0] 900934d0 0000005a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_ioctl_handler_CPSW_ALE_IOCTL_SET_POLICER) 9009352a 00000006 --HOLE-- [fill = 0] 90093530 0000005a : cpsw_ale.obj (.text.CpswAle_mapAleAgingIntervalMsToAgingTimer) 9009358a 00000006 --HOLE-- [fill = 0] 90093590 0000005a : dp83867.obj (.text.Dp83867_setLedMode) 900935ea 00000006 --HOLE-- [fill = 0] 900935f0 0000005a : enet_hostport.obj (.text.EnetHostPortDma_openRxCh) 9009364a 00000006 --HOLE-- [fill = 0] 90093650 0000005a ti_enet_soc.o (.text.EnetSoc_getIntrNum) 900936aa 00000006 --HOLE-- [fill = 0] 900936b0 0000005a freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_getMinorBlockNumber) 9009370a 00000006 --HOLE-- [fill = 0] 90093710 0000005a lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_freeTxPktCb) 9009376a 00000006 --HOLE-- [fill = 0] 90093770 0000005a drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_halIsClockStable) 900937ca 00000006 --HOLE-- [fill = 0] 900937d0 0000005a : sciclient_rm_irq.obj (.text.Sciclient_rmIaValidateGlobalEvt) 9009382a 00000006 --HOLE-- [fill = 0] 90093830 0000005a IPC.lib : termcom_common.o (.text.TERMCOM_vHelp) 9009388a 00000006 --HOLE-- [fill = 0] 90093890 0000005a : termcom_common.o (.text.TERMCOM_vVersion) 900938ea 00000006 --HOLE-- [fill = 0] 900938f0 0000005a drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_regConfigModeEnable) 9009394a 00000006 --HOLE-- [fill = 0] 90093950 0000005a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.text.dhcp_handle_offer) 900939aa 00000006 --HOLE-- [fill = 0] 900939b0 0000005a : igmp.obj (.text.igmp_timeout) 90093a0a 00000006 --HOLE-- [fill = 0] 90093a10 0000005a : memp.obj (.text.memp_init) 90093a6a 00000006 --HOLE-- [fill = 0] 90093a70 0000005a tftpserver.o (.text.print_spin) 90093aca 00000006 --HOLE-- [fill = 0] 90093ad0 00000058 drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_xmodem.obj (.text.Bootloader_xmodemTransmit) 90093b28 00000008 --HOLE-- [fill = 0] 90093b30 00000058 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_getALEEntryType) 90093b88 00000008 --HOLE-- [fill = 0] 90093b90 00000058 : cpsw_ale_ioctl.obj (.text.CpswAle_matchIPv6AddrRegWord) 90093be8 00000008 --HOLE-- [fill = 0] 90093bf0 00000058 : cpsw_ale.obj (.text.CpswAle_setAleAging) 90093c48 00000008 --HOLE-- [fill = 0] 90093c50 00000058 : cpsw_macport_intervlan.obj (.text.CpswMacPort_isRouteIdFree) 90093ca8 00000008 --HOLE-- [fill = 0] 90093cb0 00000058 ti_enet_open_close.o (.text.EnetApp_getMacPortInitConfig) 90093d08 00000008 --HOLE-- [fill = 0] 90093d10 00000058 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_rm_ioctl.obj (.text.EnetRm_freeRxFlowIdx) 90093d68 00000008 --HOLE-- [fill = 0] 90093d70 00000058 cpswconfighandler.o (.text.Enet_isCpswFamily) 90093dc8 00000008 --HOLE-- [fill = 0] 90093dd0 00000058 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_apputils_k3.obj (.text.Enet_isCpswFamily) 90093e28 00000008 --HOLE-- [fill = 0] 90093e30 00000058 : enet_udma.obj (.text.Enet_isCpswFamily) 90093e88 00000008 --HOLE-- [fill = 0] 90093e90 00000058 : enet_udma_priv.obj (.text.Enet_isCpswFamily) 90093ee8 00000008 --HOLE-- [fill = 0] 90093ef0 00000058 ti_enet_open_close.o (.text.Enet_isCpswFamily) 90093f48 00000008 --HOLE-- [fill = 0] 90093f50 00000058 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiCmdWrite) 90093fa8 00000008 --HOLE-- [fill = 0] 90093fb0 00000058 : led_tpic2810.obj (.text.LED_tpic2810SetMask) 90094008 00000008 --HOLE-- [fill = 0] 90094010 00000058 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_print) 90094068 00000008 --HOLE-- [fill = 0] 90094070 00000058 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_writeFifoData) 900940c8 00000008 --HOLE-- [fill = 0] 900940d0 00000058 : sciclient_rm.obj (.text.Sciclient_rmIrqSetRaw) 90094128 00000008 --HOLE-- [fill = 0] 90094130 00000058 : sciclient_rm_irq.obj (.text.Sciclient_rmIrqUnmappedVintRouteDelete) 90094188 00000008 --HOLE-- [fill = 0] 90094190 00000058 : sciclient_rm.obj (.text.Sciclient_rmRingCfg) 900941e8 00000008 --HOLE-- [fill = 0] 900941f0 00000058 : sciclient_rm.obj (.text.Sciclient_rmUdmapFlowCfg) 90094248 00000008 --HOLE-- [fill = 0] 90094250 00000058 : sciclient_rm.obj (.text.Sciclient_rmUdmapFlowSizeThreshCfg) 900942a8 00000008 --HOLE-- [fill = 0] 900942b0 00000058 : sciclient_rm.obj (.text.Sciclient_rmUdmapRxChCfg) 90094308 00000008 --HOLE-- [fill = 0] 90094310 00000058 : sciclient_rm.obj (.text.Sciclient_rmUdmapTxChCfg) 90094368 00000008 --HOLE-- [fill = 0] 90094370 00000058 : udma_utils.obj (.text.UdmaUtils_getTrSizeEncoded) 900943c8 00000058 libc.a : fopen.c.obj (.text.__TI_cleanup) 90094420 00000058 libsysbm.a : trgmsg.c.obj (.text.__TI_readmsg) 90094478 00000058 : trgmsg.c.obj (.text.__TI_writemsg) 900944d0 00000058 libc.a : snprintf.c.obj (.text._outs) 90094528 00000008 --HOLE-- [fill = 0] 90094530 00000058 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4.obj (.text.ip4_output_if) 90094588 00000008 --HOLE-- [fill = 0] 90094590 00000058 : ip4.obj (.text.ip4_output_if_src) 900945e8 00000008 --HOLE-- [fill = 0] 900945f0 00000058 : tftp_server.obj (.text.send_ack) 90094648 00000058 libc.a : sprintf.c.obj (.text.sprintf) 900946a0 00000058 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_free) 900946f8 00000008 --HOLE-- [fill = 0] 90094700 00000058 : tcp.obj (.text.tcp_free_listen) 90094758 00000008 --HOLE-- [fill = 0] 90094760 00000058 lwip-contrib-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcpecho_raw.obj (.text.tcpecho_raw_poll) 900947b8 00000008 --HOLE-- [fill = 0] 900947c0 00000056 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getAlePolicerControlReg) 90094816 0000000a --HOLE-- [fill = 0] 90094820 00000056 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.CSL_REG64_FEXT_RAW) 90094876 0000000a --HOLE-- [fill = 0] 90094880 00000056 : csl_intaggr.obj (.text.CSL_intaggrGetCfg) 900948d6 0000000a --HOLE-- [fill = 0] 900948e0 00000056 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_delAllEntries) 90094936 0000000a --HOLE-- [fill = 0] 90094940 00000056 : cpsw_macport.obj (.text.CpswMacPort_isMiiSupported) 90094996 0000000a --HOLE-- [fill = 0] 900949a0 00000056 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_getHandle) 900949f6 0000000a --HOLE-- [fill = 0] 90094a00 00000056 : sciclient_rm.obj (.text.Sciclient_rmIrqReleaseRaw) 90094a56 0000000a --HOLE-- [fill = 0] 90094a60 00000056 : sciclient_rm.obj (.text.Sciclient_rmPsilPair) 90094ab6 0000000a --HOLE-- [fill = 0] 90094ac0 00000056 : sciclient_rm.obj (.text.Sciclient_rmPsilUnpair) 90094b16 0000000a --HOLE-- [fill = 0] 90094b20 00000056 : udma_event.obj (.text.Udma_eventGetGlobalHandle) 90094b76 0000000a --HOLE-- [fill = 0] 90094b80 00000056 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_frag.obj (.text.ip_frag_free_pbuf_custom_ref) 90094bd6 0000000a --HOLE-- [fill = 0] 90094be0 00000054 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_pktdma.obj (.text.CSL_pktdmaIsValidChanIdx) 90094c34 0000000c --HOLE-- [fill = 0] 90094c40 00000054 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_close) 90094c94 0000000c --HOLE-- [fill = 0] 90094ca0 00000054 : cpsw_ale.obj (.text.CpswAle_setUnknownVlanCfg) 90094cf4 0000000c --HOLE-- [fill = 0] 90094d00 00000054 : cpsw_hostport_ioctl.obj (.text.CpswHostPort_ioctl_handler_ENET_HOSTPORT_IOCTL_SET_INGRESS_DSCP_PRI_MAP) 90094d54 0000000c --HOLE-- [fill = 0] 90094d60 00000054 : dp83867.obj (.text.Dp83867_setGpioMux) 90094db4 0000000c --HOLE-- [fill = 0] 90094dc0 00000054 ti_enet_open_close.o (.text.EnetAppUtils_freeTxCh) 90094e14 0000000c --HOLE-- [fill = 0] 90094e20 00000054 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_apputils_k3.obj (.text.EnetAppUtils_selectCptsClock) 90094e74 0000000c --HOLE-- [fill = 0] 90094e80 00000054 ti_enet_open_close.o (.text.EnetApp_getCpswInitCfg) 90094ed4 0000000c --HOLE-- [fill = 0] 90094ee0 00000054 cpsw_custom_phy.o (.text.EnetBoard_getPortCfg) 90094f34 0000000c --HOLE-- [fill = 0] 90094f40 00000054 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_string.obj (.text.FF_tolower) 90094f94 0000000c --HOLE-- [fill = 0] 90094fa0 00000054 ti_enet_lwipif.o (.text.LwipifEnetApp_getNetifFromId) 90094ff4 0000000c --HOLE-- [fill = 0] 90095000 00000054 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_halEnableInternalClock) 90095054 0000000c --HOLE-- [fill = 0] 90095060 00000054 : ospi_v0.obj (.text.OSPI_setNumAddrBytes) 900950b4 0000000c --HOLE-- [fill = 0] 900950c0 00000054 : sciclient_rm_irq.obj (.text.Sciclient_rmUnmappedVintRouteCreate) 90095114 0000000c --HOLE-- [fill = 0] 90095120 00000054 : uart_dma.obj (.text.UART_readInterruptDma) 90095174 0000000c --HOLE-- [fill = 0] 90095180 00000054 : uart_dma.obj (.text.UART_writeInterruptDma) 900951d4 0000000c --HOLE-- [fill = 0] 900951e0 00000054 : udma_ring_common.obj (.text.UdmaRingPrms_init) 90095234 0000000c --HOLE-- [fill = 0] 90095240 00000054 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_dealloc) 90095294 00000054 libc.a : exit.c.obj (.text.exit) 900952e8 00000008 --HOLE-- [fill = 0] 900952f0 00000054 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_stdio.obj (.text.ff_fopen) 90095344 0000000c --HOLE-- [fill = 0] 90095350 00000054 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : netif.obj (.text.netif_get_by_index) 900953a4 0000000c --HOLE-- [fill = 0] 900953b0 00000054 httpd_cgi_sii.o (.text.ssi_mac_to_str) 90095404 0000000c --HOLE-- [fill = 0] 90095410 00000052 ti_board_open_close.o (.text.Board_ledClose) 90095462 0000000e --HOLE-- [fill = 0] 90095470 00000052 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_setThreadPolicerConfig) 900954c2 0000000e --HOLE-- [fill = 0] 900954d0 00000052 : cpsw_ale_ioctl.obj (.text.CpswAle_validateOuiPolicer) 90095522 0000000e --HOLE-- [fill = 0] 90095530 00000052 : cpsw_ale_ioctl.obj (.text.CpswAle_validateThreadPolicer) 90095582 0000000e --HOLE-- [fill = 0] 90095590 00000052 : cpsw_macport_intervlan.obj (.text.CpswMacPort_clearAllRoutes) 900955e2 0000000e --HOLE-- [fill = 0] 900955f0 00000052 : cpsw_macport.obj (.text.CpswMacPort_isPortEnabled) 90095642 0000000e --HOLE-- [fill = 0] 90095650 00000052 ti_enet_open_close.o (.text.EnetApp_deleteClock) 900956a2 0000000e --HOLE-- [fill = 0] 900956b0 00000052 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet.obj (.text.Enet_deinit) 90095702 0000000e --HOLE-- [fill = 0] 90095710 00000052 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2COwnAddressSet) 90095762 0000000e --HOLE-- [fill = 0] 90095770 00000052 : lpddr4.obj (.text.LPDDR4_AckPhyIndepInterrupt) 900957c2 0000000e --HOLE-- [fill = 0] 900957d0 00000052 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_manual_ioctl.obj (.text.Mdio_manualModeFieldSend) 90095822 0000000e --HOLE-- [fill = 0] 90095830 00000052 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_dma.obj (.text.OSPI_dmaCopy) 90095882 0000000e --HOLE-- [fill = 0] 90095890 00000052 : soc.obj (.text.SOC_controlModuleLockMMR) 900958e2 0000000e --HOLE-- [fill = 0] 900958f0 00000052 nortos.am64x.r5f.ti-arm-clang.debug.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_construct) 90095942 0000000e --HOLE-- [fill = 0] 90095950 00000052 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ch.obj (.text.Udma_chInitRegs) 900959a2 0000000e --HOLE-- [fill = 0] 900959b0 00000052 : udma_ring_lcdma.obj (.text.Udma_ringPrimeLcdma) 90095a02 0000000e --HOLE-- [fill = 0] 90095a10 00000052 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp.obj (.text.altcp_write) 90095a62 0000000e --HOLE-- [fill = 0] 90095a70 00000052 drivers.am64x.r5f.ti-arm-clang.debug.lib : crc16.obj (.text.crc16_ccitt) 90095ac2 0000000e --HOLE-- [fill = 0] 90095ad0 00000052 httpd.o (.text.http_state_eof) 90095b22 0000000e --HOLE-- [fill = 0] 90095b30 00000052 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : mem.obj (.text.mem_calloc) 90095b82 0000000e --HOLE-- [fill = 0] 90095b90 00000052 lwip-contrib-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcpecho_raw.obj (.text.tcpecho_raw_sent) 90095be2 0000000e --HOLE-- [fill = 0] 90095bf0 00000050 ti_board_open_close.o (.text.Board_eepromClose) 90095c40 00000050 ti_board_open_close.o (.text.Board_flashClose) 90095c90 00000050 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_mdio.obj (.text.CSL_MDIO_getVersionInfo) 90095ce0 00000050 : cpsw_hostport.obj (.text.CpswHostPort_initCfg) 90095d30 00000050 : dp83867.obj (.text.Dp83867_enableAutoMdix) 90095d80 00000050 ti_drivers_open_close.o (.text.Drivers_i2cClose) 90095dd0 00000050 ti_drivers_open_close.o (.text.Drivers_mmcsdClose) 90095e20 00000050 ti_drivers_open_close.o (.text.Drivers_ospiClose) 90095e70 00000050 ti_drivers_open_close.o (.text.Drivers_uartClose) 90095ec0 00000050 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_sys.obj (.text.FF_FS_Get) 90095f10 00000050 : ff_file.obj (.text.FF_GetFileSize) 90095f60 00000050 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_checkCharsAvailInFifo) 90095fb0 00000050 : udma_flow.obj (.text.Udma_mappedFlowCheckParams) 90096000 00000050 : udma_rmcfg.obj (.text.Udma_rmGetSharedResPrms) 90096050 00000050 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dns.obj (.text.dns_setserver) 900960a0 00000050 libc.a : strncpy.c.obj (.text.strncpy) 900960f0 00000050 : autoinit.c.obj (.text:__TI_auto_init_nobinit_nopinit) 90096140 0000004e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_writeEstFetchCmd) 9009618e 00000002 --HOLE-- [fill = 0] 90096190 0000004e drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.CSL_REG16_FINS_RAW) 900961de 00000002 --HOLE-- [fill = 0] 900961e0 0000004e : mmcsd_v0.obj (.text.CSL_REG8_FINS_RAW) 9009622e 00000002 --HOLE-- [fill = 0] 90096230 0000004e : csl_pktdma.obj (.text.CSL_pktdmaIsChanEnabled) 9009627e 00000002 --HOLE-- [fill = 0] 90096280 0000004e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.CSL_udmapCppi5GetPktLen) 900962ce 00000002 --HOLE-- [fill = 0] 900962d0 0000004e : cpsw_ale.obj (.text.CpswAle_delAllPolicerEntries) 9009631e 00000002 --HOLE-- [fill = 0] 90096320 0000004e : cpsw_ale_ioctl.obj (.text.CpswAle_ioctl_handler_CPSW_ALE_IOCTL_SET_DEFAULT_THREADCFG) 9009636e 00000002 --HOLE-- [fill = 0] 90096370 0000004e : cpsw_cpts_ioctl.obj (.text.CpswCpts_ioctl_handler_CPSW_CPTS_IOCTL_HANDLE_INTR) 900963be 00000002 --HOLE-- [fill = 0] 900963c0 0000004e ti_enet_open_close.o (.text.EnetAppUtils_setCommonRxFlowPrms) 9009640e 00000002 --HOLE-- [fill = 0] 90096410 0000004e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_utils.obj (.text.EnetUtils_vprintf) 9009645e 00000002 --HOLE-- [fill = 0] 90096460 0000004e freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_file.obj (.text.FF_FileLBA) 900964ae 00000002 --HOLE-- [fill = 0] 900964b0 0000004e lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_freeRxPktCb) 900964fe 00000002 --HOLE-- [fill = 0] 90096500 0000004e drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_getHandle) 9009654e 00000002 --HOLE-- [fill = 0] 90096550 0000004e : mmcsd_v0.obj (.text.MMCSD_initTransaction) 9009659e 00000002 --HOLE-- [fill = 0] 900965a0 0000004e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_manual_ioctl.obj (.text.Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_IS_LINKED) 900965ee 00000002 --HOLE-- [fill = 0] 900965f0 0000004e drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_setDeviceSize) 9009663e 00000002 --HOLE-- [fill = 0] 90096640 0000004e : uart_v0.obj (.text.UART_getHandle) 9009668e 00000002 --HOLE-- [fill = 0] 90096690 0000004e : udma_utils.obj (.text.UdmaUtils_makeTrpdTr15) 900966de 00000002 --HOLE-- [fill = 0] 900966e0 0000004e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwiperf.obj (.text.lwiperf_start_tcp_server) 9009672e 00000002 --HOLE-- [fill = 0] 90096730 0000004e : tcp.obj (.text.tcp_handle_closepend) 9009677e 00000002 --HOLE-- [fill = 0] 90096780 0000004e tftpserver.o (.text.tftp_open) 900967ce 00000002 --HOLE-- [fill = 0] 900967d0 0000004c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_setIPPolicerEntry) 9009681c 00000004 --HOLE-- [fill = 0] 90096820 0000004c : dp83867.obj (.text.Dp83867_isPhyDevSupported) 9009686c 00000004 --HOLE-- [fill = 0] 90096870 0000004c ti_enet_config.o (.text.EnetApp_isPortLinked) 900968bc 00000004 --HOLE-- [fill = 0] 900968c0 0000004c drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_resetCtrl) 9009690c 00000004 --HOLE-- [fill = 0] 90096910 0000004c : lpddr4.obj (.text.LPDDR4_SanityFunction5) 9009695c 00000004 --HOLE-- [fill = 0] 90096960 0000004c ti_power_clock_config.o (.text.Module_clockEnable) 900969ac 00000004 --HOLE-- [fill = 0] 900969b0 0000004c drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_getHandle) 900969fc 00000004 --HOLE-- [fill = 0] 90096a00 0000004c : sciclient_rm_irq.obj (.text.Sciclient_rmPsSetInp) 90096a4c 00000004 --HOLE-- [fill = 0] 90096a50 0000004c : sciclient_rm_irq.obj (.text.Sciclient_rmPsSetOutp) 90096a9c 00000004 --HOLE-- [fill = 0] 90096aa0 0000004c : uart_v0.obj (.text.UART_fifoRegisterWrite) 90096aec 00000004 --HOLE-- [fill = 0] 90096af0 0000004c : uart_v0.obj (.text.UART_statusIsDataReady) 90096b3c 00000004 --HOLE-- [fill = 0] 90096b40 0000004c : udma_event.obj (.text.Udma_eventGetId) 90096b8c 0000004c libc.a : rand.c.obj (.text.rand) 90096bd8 0000004c : strncmp.c.obj (.text.strncmp) 90096c24 0000000c --HOLE-- [fill = 0] 90096c30 0000004c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : timeouts.obj (.text.tcp_timer_needed) 90096c7c 00000004 --HOLE-- [fill = 0] 90096c80 0000004a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getAleUnkownVlanReg) 90096cca 00000006 --HOLE-- [fill = 0] 90096cd0 0000004a drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_pktdma.obj (.text.CSL_pktdmaGetRxRT) 90096d1a 00000006 --HOLE-- [fill = 0] 90096d20 0000004a : csl_pktdma.obj (.text.CSL_pktdmaGetTxRT) 90096d6a 00000006 --HOLE-- [fill = 0] 90096d70 0000004a lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_getInterfaceObj) 90096dba 00000006 --HOLE-- [fill = 0] 90096dc0 0000004a drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_priv.obj (.text.MMCSD_parseSCRSd) 90096e0a 00000006 --HOLE-- [fill = 0] 90096e10 0000004a : sciclient_soc_priv.obj (.text.Sciclient_getDevId) 90096e5a 00000006 --HOLE-- [fill = 0] 90096e60 0000004a : uart_v0.obj (.text.UART_getIntrIdentityStatus) 90096eaa 00000006 --HOLE-- [fill = 0] 90096eb0 0000004a : uart_v0.obj (.text.UART_lineCharConfig) 90096efa 00000006 --HOLE-- [fill = 0] 90096f00 0000004a IPC.lib : pec_crc.o (.text.cm_crc) 90096f4a 00000006 --HOLE-- [fill = 0] 90096f50 0000004a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : igmp.obj (.text.igmp_delaying_member) 90096f9a 00000006 --HOLE-- [fill = 0] 90096fa0 0000004a : igmp.obj (.text.igmp_start_timer) 90096fea 00000006 --HOLE-- [fill = 0] 90096ff0 0000004a : pbuf.obj (.text.pbuf_free_ooseq) 9009703a 00000006 --HOLE-- [fill = 0] 90097040 0000004a httpd_cgi_sii.o (.text.ssi_handler) 9009708a 00000006 --HOLE-- [fill = 0] 90097090 0000004a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : timeouts.obj (.text.tcpip_tcp_timer) 900970da 00000006 --HOLE-- [fill = 0] 900970e0 00000048 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_extractVid) 90097128 00000008 --HOLE-- [fill = 0] 90097130 00000048 : csl_cpsw.obj (.text.CSL_CPSW_getAleIPv6HighEntryOffset) 90097178 00000008 --HOLE-- [fill = 0] 90097180 00000048 : cpsw.obj (.text.Cpsw_mdioIsr) 900971c8 00000008 --HOLE-- [fill = 0] 900971d0 00000048 : dp83867.obj (.text.Dp83867_setClkShift) 90097218 00000008 --HOLE-- [fill = 0] 90097220 00000048 eeprom.o (.text.EEPROM_read) 90097268 00000008 --HOLE-- [fill = 0] 90097270 00000048 eeprom.o (.text.EEPROM_write) 900972b8 00000008 --HOLE-- [fill = 0] 900972c0 00000048 ti_enet_open_close.o (.text.EnetApp_postPollEvent) 90097308 00000008 --HOLE-- [fill = 0] 90097310 00000048 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_initState) 90097358 00000008 --HOLE-- [fill = 0] 90097360 00000048 : enet_rm.obj (.text.EnetRm_validateCoreKey) 900973a8 00000008 --HOLE-- [fill = 0] 900973b0 00000048 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_CreateChkSum) 900973f8 00000008 --HOLE-- [fill = 0] 90097400 00000048 board.am64x.r5f.ti-arm-clang.debug.lib : flash.obj (.text.Flash_read) 90097448 00000008 --HOLE-- [fill = 0] 90097450 00000048 : flash.obj (.text.Flash_write) 90097498 00000008 --HOLE-- [fill = 0] 900974a0 00000048 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.LPDDR4_Init) 900974e8 00000008 --HOLE-- [fill = 0] 900974f0 00000048 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_deinitRxObj) 90097538 00000008 --HOLE-- [fill = 0] 90097540 00000048 : lwip2enet.obj (.text.Lwip2Enet_pktInfoQ2PbufQ) 90097588 00000008 --HOLE-- [fill = 0] 90097590 00000048 ti_enet_lwipif.o (.text.LwipifEnetApp_postPollEvent) 900975d8 00000008 --HOLE-- [fill = 0] 900975e0 00000048 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_halSetBusVolt) 90097628 00000008 --HOLE-- [fill = 0] 90097630 00000048 : ospi_v0.obj (.text.OSPI_setRdDataCaptureDelay) 90097678 00000008 --HOLE-- [fill = 0] 90097680 00000048 IPC.lib : pec_prom.o (.text.PP_Exec) 900976c8 00000008 --HOLE-- [fill = 0] 900976d0 00000048 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp.obj (.text.altcp_bind) 90097718 00000008 --HOLE-- [fill = 0] 90097720 00000048 : altcp.obj (.text.altcp_poll) 90097768 00000008 --HOLE-- [fill = 0] 90097770 00000048 : altcp_tcp.obj (.text.altcp_tcp_new_ip_type) 900977b8 00000048 libc.a : memccpy.c.obj (.text.memccpy) 90097800 00000048 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_header_impl) 90097848 00000008 --HOLE-- [fill = 0] 90097850 00000048 : pbuf.obj (.text.pbuf_try_get_at) 90097898 00000008 --HOLE-- [fill = 0] 900978a0 00000048 httpd_cgi_sii.o (.text.sii_counter) 900978e8 00000048 libsysbm.a : unlink.c.obj (.text.unlink) 90097930 00000046 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaTeardownRxChan) 90097976 0000000a --HOLE-- [fill = 0] 90097980 00000046 : csl_bcdma.obj (.text.CSL_bcdmaTeardownTxChan) 900979c6 0000000a --HOLE-- [fill = 0] 900979d0 00000046 ti_enet_open_close.o (.text.EnetAppUtils_setCommonTxChPrms) 90097a16 0000000a --HOLE-- [fill = 0] 90097a20 00000046 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_appmemutils.obj (.text.EnetMem_freeDmaDesc) 90097a66 0000000a --HOLE-- [fill = 0] 90097a70 00000046 ti_enet_soc.o (.text.EnetSoc_getClkFreq) 90097ab6 0000000a --HOLE-- [fill = 0] 90097ac0 00000046 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : generic_phy.obj (.text.GenericPhy_printRegs) 90097b06 0000000a --HOLE-- [fill = 0] 90097b10 00000046 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_notifyRxPackets) 90097b56 0000000a --HOLE-- [fill = 0] 90097b60 00000046 : lwip2enet.obj (.text.Lwip2Enet_setCustomPbuf) 90097ba6 0000000a --HOLE-- [fill = 0] 90097bb0 00000046 : lwip2enet.obj (.text.Lwip2Enet_submitRxPackets) 90097bf6 0000000a --HOLE-- [fill = 0] 90097c00 00000046 ti_enet_lwipif.o (.text.LwipifEnetApp_postRxPktEvent) 90097c46 0000000a --HOLE-- [fill = 0] 90097c50 00000046 ti_enet_lwipif.o (.text.LwipifEnetApp_postTxPktEvent) 90097c96 0000000a --HOLE-- [fill = 0] 90097ca0 00000046 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_dma.obj (.text.OSPI_dmaClose) 90097ce6 0000000a --HOLE-- [fill = 0] 90097cf0 00000046 : uart_v0.obj (.text.UART_i2310WA) 90097d36 0000000a --HOLE-- [fill = 0] 90097d40 00000046 : uart_v0.obj (.text.UART_readLineStatus) 90097d86 0000000a --HOLE-- [fill = 0] 90097d90 00000046 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_put_at) 90097dd6 0000000a --HOLE-- [fill = 0] 90097de0 00000044 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getAleStatusRamDepth) 90097e24 0000000c --HOLE-- [fill = 0] 90097e30 00000044 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaGetChanPeerReg) 90097e74 0000000c --HOLE-- [fill = 0] 90097e80 00000044 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_stats_ioctl.obj (.text.CpswStats_ioctl_handler_CPSW_STATS_IOCTL_SYNC) 90097ec4 0000000c --HOLE-- [fill = 0] 90097ed0 00000044 drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.text.DDR_setFreq) 90097f14 0000000c --HOLE-- [fill = 0] 90097f20 00000044 ti_dpl_config.o (.text.Dpl_init) 90097f64 0000000c --HOLE-- [fill = 0] 90097f70 00000044 ti_enet_config.o (.text.EnetAppSoc_releaseMacAddrList) 90097fb4 0000000c --HOLE-- [fill = 0] 90097fc0 00000044 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_apputils.obj (.text.EnetAppUtils_assertLocal) 90098004 0000000c --HOLE-- [fill = 0] 90098010 00000044 : enetphy.obj (.text.EnetPhy_isLinked) 90098054 0000000c --HOLE-- [fill = 0] 90098060 00000044 : cpsw.obj (.text.EnetUtils_assertLocal) 900980a4 0000000c --HOLE-- [fill = 0] 900980b0 00000044 : cpsw_ale.obj (.text.EnetUtils_assertLocal) 900980f4 0000000c --HOLE-- [fill = 0] 90098100 00000044 : cpsw_cpts.obj (.text.EnetUtils_assertLocal) 90098144 0000000c --HOLE-- [fill = 0] 90098150 00000044 : cpsw_est.obj (.text.EnetUtils_assertLocal) 90098194 0000000c --HOLE-- [fill = 0] 900981a0 00000044 : cpsw_est_ioctl.obj (.text.EnetUtils_assertLocal) 900981e4 0000000c --HOLE-- [fill = 0] 900981f0 00000044 : cpsw_hostport.obj (.text.EnetUtils_assertLocal) 90098234 0000000c --HOLE-- [fill = 0] 90098240 00000044 : cpsw_ioctl.obj (.text.EnetUtils_assertLocal) 90098284 0000000c --HOLE-- [fill = 0] 90098290 00000044 : cpsw_macport.obj (.text.EnetUtils_assertLocal) 900982d4 0000000c --HOLE-- [fill = 0] 900982e0 00000044 : cpsw_macport_est.obj (.text.EnetUtils_assertLocal) 90098324 0000000c --HOLE-- [fill = 0] 90098330 00000044 : cpsw_macport_est_ioctl.obj (.text.EnetUtils_assertLocal) 90098374 0000000c --HOLE-- [fill = 0] 90098380 00000044 : cpsw_macport_ioctl.obj (.text.EnetUtils_assertLocal) 900983c4 0000000c --HOLE-- [fill = 0] 900983d0 00000044 : cpsw_stats.obj (.text.EnetUtils_assertLocal) 90098414 0000000c --HOLE-- [fill = 0] 90098420 00000044 : cpsw_stats_ioctl.obj (.text.EnetUtils_assertLocal) 90098464 0000000c --HOLE-- [fill = 0] 90098470 00000044 : enet.obj (.text.EnetUtils_assertLocal) 900984b4 0000000c --HOLE-- [fill = 0] 900984c0 00000044 : enet_appmemutils.obj (.text.EnetUtils_assertLocal) 90098504 0000000c --HOLE-- [fill = 0] 90098510 00000044 : enet_hostport.obj (.text.EnetUtils_assertLocal) 90098554 0000000c --HOLE-- [fill = 0] 90098560 00000044 : enet_osal.obj (.text.EnetUtils_assertLocal) 900985a4 0000000c --HOLE-- [fill = 0] 900985b0 00000044 : enet_phymdio_dflt.obj (.text.EnetUtils_assertLocal) 900985f4 0000000c --HOLE-- [fill = 0] 90098600 00000044 : enet_queue.obj (.text.EnetUtils_assertLocal) 90098644 0000000c --HOLE-- [fill = 0] 90098650 00000044 : enet_rm.obj (.text.EnetUtils_assertLocal) 90098694 0000000c --HOLE-- [fill = 0] 900986a0 00000044 : enet_rm_ioctl.obj (.text.EnetUtils_assertLocal) 900986e4 0000000c --HOLE-- [fill = 0] 900986f0 00000044 : enet_udma.obj (.text.EnetUtils_assertLocal) 90098734 0000000c --HOLE-- [fill = 0] 90098740 00000044 : enet_udma_priv.obj (.text.EnetUtils_assertLocal) 90098784 0000000c --HOLE-- [fill = 0] 90098790 00000044 : enet_utils.obj (.text.EnetUtils_assertLocal) 900987d4 0000000c --HOLE-- [fill = 0] 900987e0 00000044 : enetphy.obj (.text.EnetUtils_assertLocal) 90098824 0000000c --HOLE-- [fill = 0] 90098830 00000044 : mdio.obj (.text.EnetUtils_assertLocal) 90098874 0000000c --HOLE-- [fill = 0] 90098880 00000044 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : custom_pbuf.obj (.text.EnetUtils_assertLocal) 900988c4 0000000c --HOLE-- [fill = 0] 900988d0 00000044 : lwip2enet.obj (.text.EnetUtils_assertLocal) 90098914 0000000c --HOLE-- [fill = 0] 90098920 00000044 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl_register.obj (.text.Enet_ioctl_register_CPSW_ALE_IOCTL_ADD_MCAST) 90098964 0000000c --HOLE-- [fill = 0] 90098970 00000044 : cpsw_ale_ioctl_register.obj (.text.Enet_ioctl_register_CPSW_ALE_IOCTL_ADD_UCAST) 900989b4 0000000c --HOLE-- [fill = 0] 900989c0 00000044 : cpsw_ale_ioctl_register.obj (.text.Enet_ioctl_register_CPSW_ALE_IOCTL_REMOVE_ADDR) 90098a04 0000000c --HOLE-- [fill = 0] 90098a10 00000044 : cpsw_ale_ioctl_register.obj (.text.Enet_ioctl_register_CPSW_ALE_IOCTL_SET_PORT_STATE) 90098a54 0000000c --HOLE-- [fill = 0] 90098a60 00000044 : cpsw_hostport_ioctl_register.obj (.text.Enet_ioctl_register_ENET_HOSTPORT_IOCTL_DISABLE) 90098aa4 0000000c --HOLE-- [fill = 0] 90098ab0 00000044 : cpsw_hostport_ioctl_register.obj (.text.Enet_ioctl_register_ENET_HOSTPORT_IOCTL_ENABLE) 90098af4 0000000c --HOLE-- [fill = 0] 90098b00 00000044 : cpsw_hostport_ioctl_register.obj (.text.Enet_ioctl_register_ENET_HOSTPORT_IOCTL_SET_INGRESS_DSCP_PRI_MAP) 90098b44 0000000c --HOLE-- [fill = 0] 90098b50 00000044 : cpsw_hostport_ioctl_register.obj (.text.Enet_ioctl_register_ENET_HOSTPORT_IS_CSUM_OFFLOAD_ENABLED) 90098b94 0000000c --HOLE-- [fill = 0] 90098ba0 00000044 : cpsw_ioctl_register.obj (.text.Enet_ioctl_register_ENET_IOCTL_REGISTER_DSTMAC_RX_FLOW) 90098be4 0000000c --HOLE-- [fill = 0] 90098bf0 00000044 : cpsw_ioctl_register.obj (.text.Enet_ioctl_register_ENET_IOCTL_REGISTER_RX_DEFAULT_FLOW) 90098c34 0000000c --HOLE-- [fill = 0] 90098c40 00000044 : cpsw_ioctl_register.obj (.text.Enet_ioctl_register_ENET_IOCTL_UNREGISTER_DSTMAC_RX_FLOW) 90098c84 0000000c --HOLE-- [fill = 0] 90098c90 00000044 : cpsw_ioctl_register.obj (.text.Enet_ioctl_register_ENET_IOCTL_UNREGISTER_RX_DEFAULT_FLOW) 90098cd4 0000000c --HOLE-- [fill = 0] 90098ce0 00000044 : cpsw_macport_ioctl_register.obj (.text.Enet_ioctl_register_ENET_MACPORT_IOCTL_SET_INGRESS_DSCP_PRI_MAP) 90098d24 0000000c --HOLE-- [fill = 0] 90098d30 00000044 : mdio_ioctl_register.obj (.text.Enet_ioctl_register_ENET_MDIO_IOCTL_IS_ALIVE) 90098d74 0000000c --HOLE-- [fill = 0] 90098d80 00000044 : cpsw_ioctl_register.obj (.text.Enet_ioctl_register_ENET_PER_IOCTL_ATTACH_CORE) 90098dc4 0000000c --HOLE-- [fill = 0] 90098dd0 00000044 : cpsw_ioctl_register.obj (.text.Enet_ioctl_register_ENET_PER_IOCTL_CLOSE_PORT_LINK) 90098e14 0000000c --HOLE-- [fill = 0] 90098e20 00000044 : cpsw_ioctl_register.obj (.text.Enet_ioctl_register_ENET_PER_IOCTL_DETACH_CORE) 90098e64 0000000c --HOLE-- [fill = 0] 90098e70 00000044 : cpsw_ioctl_register.obj (.text.Enet_ioctl_register_ENET_PER_IOCTL_IS_PORT_LINK_UP) 90098eb4 0000000c --HOLE-- [fill = 0] 90098ec0 00000044 : cpsw_ioctl_register.obj (.text.Enet_ioctl_register_ENET_PER_IOCTL_OPEN_PORT_LINK) 90098f04 0000000c --HOLE-- [fill = 0] 90098f10 00000044 : enet_rm_ioctl_register.obj (.text.Enet_ioctl_register_ENET_RM_IOCTL_ALLOC_MAC_ADDR) 90098f54 0000000c --HOLE-- [fill = 0] 90098f60 00000044 : enet_rm_ioctl_register.obj (.text.Enet_ioctl_register_ENET_RM_IOCTL_ALLOC_RX_FLOW) 90098fa4 0000000c --HOLE-- [fill = 0] 90098fb0 00000044 : enet_rm_ioctl_register.obj (.text.Enet_ioctl_register_ENET_RM_IOCTL_ALLOC_TX_CH_PEERID) 90098ff4 0000000c --HOLE-- [fill = 0] 90099000 00000044 : enet_rm_ioctl_register.obj (.text.Enet_ioctl_register_ENET_RM_IOCTL_FREE_MAC_ADDR) 90099044 0000000c --HOLE-- [fill = 0] 90099050 00000044 : enet_rm_ioctl_register.obj (.text.Enet_ioctl_register_ENET_RM_IOCTL_FREE_RX_FLOW) 90099094 0000000c --HOLE-- [fill = 0] 900990a0 00000044 : enet_rm_ioctl_register.obj (.text.Enet_ioctl_register_ENET_RM_IOCTL_FREE_TX_CH_PEERID) 900990e4 0000000c --HOLE-- [fill = 0] 900990f0 00000044 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_crc.obj (.text.FF_GetCRC32) 90099134 0000000c --HOLE-- [fill = 0] 90099140 00000044 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_unregisterClient) 90099184 0000000c --HOLE-- [fill = 0] 90099190 00000044 : ospi_v0.obj (.text.OSPI_enableDacMode) 900991d4 0000000c --HOLE-- [fill = 0] 900991e0 00000044 eeprom.o (.text.PromWriteFunc) 90099224 0000000c --HOLE-- [fill = 0] 90099230 00000044 drivers.am64x.r5f.ti-arm-clang.debug.lib : soc.obj (.text.SOC_generateSwWarmResetMcuDomain) 90099274 0000000c --HOLE-- [fill = 0] 90099280 00000044 : udma_ring_lcdma.obj (.text.Udma_lcdmaRingaccMemOps) 900992c4 0000000c --HOLE-- [fill = 0] 900992d0 00000044 nortos.am64x.r5f.ti-arm-clang.debug.lib : DebugP_nortos.obj (.text._DebugP_logZone) 90099314 0000000c --HOLE-- [fill = 0] 90099320 00000044 : printf.obj (.text._strnlen_s) 90099364 0000000c --HOLE-- [fill = 0] 90099370 00000044 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dns.obj (.text.dns_backupserver_available) 900993b4 0000000c --HOLE-- [fill = 0] 900993c0 00000044 httpd.o (.text.http_sent) 90099404 0000000c --HOLE-- [fill = 0] 90099410 00000044 IPC.lib : pec_queue.o (.text.pec_dequeue) 90099454 0000000c --HOLE-- [fill = 0] 90099460 00000044 lwip-contrib-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcpecho_raw.obj (.text.tcpecho_raw_close) 900994a4 0000000c --HOLE-- [fill = 0] 900994b0 00000042 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpts.obj (.text.CSL_CPTS_getESTFnLength) 900994f2 0000000e --HOLE-- [fill = 0] 90099500 00000042 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_utils.obj (.text.CSL_udmapCppi5SetPktLen) 90099542 0000000e --HOLE-- [fill = 0] 90099550 00000042 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_start) 90099592 0000000e --HOLE-- [fill = 0] 900995a0 00000042 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_clearGlobalPolicerStats) 900995e2 0000000e --HOLE-- [fill = 0] 900995f0 00000042 cpswconfighandler.o (.text.EnetApp_portLinkStatusChangeCb) 90099632 0000000e --HOLE-- [fill = 0] 90099640 00000042 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_CreateClusterChain) 90099682 0000000e --HOLE-- [fill = 0] 90099690 00000042 : ff_fat.obj (.text.FF_getMajorBlockNumber) 900996d2 0000000e --HOLE-- [fill = 0] 900996e0 00000042 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_halErrorIntrStatusEnable) 90099722 0000000e --HOLE-- [fill = 0] 90099730 00000042 : mmcsd_v0.obj (.text.MMCSD_halErrorSigIntrDisable) 90099772 0000000e --HOLE-- [fill = 0] 90099780 00000042 : mmcsd_v0.obj (.text.MMCSD_halErrorSigIntrEnable) 900997c2 0000000e --HOLE-- [fill = 0] 900997d0 00000042 : mmcsd_v0.obj (.text.MMCSD_halNormalIntrStatusDisable) 90099812 0000000e --HOLE-- [fill = 0] 90099820 00000042 : mmcsd_v0.obj (.text.MMCSD_halNormalIntrStatusEnable) 90099862 0000000e --HOLE-- [fill = 0] 90099870 00000042 : mmcsd_v0.obj (.text.MMCSD_halNormalSigIntrDisable) 900998b2 0000000e --HOLE-- [fill = 0] 900998c0 00000042 : mmcsd_v0.obj (.text.MMCSD_halNormalSigIntrEnable) 90099902 0000000e --HOLE-- [fill = 0] 90099910 00000042 IPC.lib : pec_prom.o (.text.PP_Register) 90099952 0000000e --HOLE-- [fill = 0] 90099960 00000042 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmIrqGetNodeItf) 900999a2 0000000e --HOLE-- [fill = 0] 900999b0 00000042 : uart_v0.obj (.text.UART_checkOpenParams) 900999f2 0000000e --HOLE-- [fill = 0] 90099a00 00000042 : udma_utils.obj (.text.UdmaUtils_getRingMemSize) 90099a42 0000000e --HOLE-- [fill = 0] 90099a50 00000042 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp.obj (.text.altcp_listen_with_backlog_and_err) 90099a92 0000000e --HOLE-- [fill = 0] 90099aa0 00000042 : autoip.obj (.text.autoip_stop) 90099ae2 0000000e --HOLE-- [fill = 0] 90099af0 00000042 xmodem.o (.text.dcs_outbyte) 90099b32 0000000e --HOLE-- [fill = 0] 90099b40 00000042 nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text.fctprintf) 90099b82 0000000e --HOLE-- [fill = 0] 90099b90 00000040 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getAleTableEntry) 90099bd0 00000040 : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_getEthertypeMax) 90099c10 00000040 : csl_cpts.obj (.text.CSL_CPTS_getGENFnLength) 90099c50 00000040 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_lcdma_ringacc.obj (.text.CSL_lcdma_ringaccIsTeardownComplete) 90099c90 00000040 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_delAddr) 90099cd0 00000040 : cpsw_macport_intervlan.obj (.text.CpswMacPort_clearRouteId) 90099d10 00000040 : enet_apputils.obj (.text.EnetAppUtils_printMacAddr) 90099d50 00000040 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_Cluster2LBA) 90099d90 00000040 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_hwiFxn) 90099dd0 00000040 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_allocateRxHandle) 90099e10 00000040 : lwip2enet.obj (.text.Lwip2Enet_assertPriv) 90099e50 00000040 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_ioctl.obj (.text.Mdio_ioctl_handler_ENET_MDIO_IOCTL_C22_READ) 90099e90 00000040 : mdio_ioctl.obj (.text.Mdio_ioctl_handler_ENET_MDIO_IOCTL_C22_WRITE) 90099ed0 00000040 : mdio_ioctl.obj (.text.Mdio_ioctl_handler_ENET_MDIO_IOCTL_C45_READ) 90099f10 00000040 : mdio_ioctl.obj (.text.Mdio_ioctl_handler_ENET_MDIO_IOCTL_C45_WRITE) 90099f50 00000040 : mdio_ioctl.obj (.text.Mdio_ioctl_handler_ENET_MDIO_IOCTL_IS_ALIVE) 90099f90 00000040 : mdio_ioctl.obj (.text.Mdio_ioctl_handler_ENET_MDIO_IOCTL_IS_LINKED) 90099fd0 00000040 : mdio_manual_ioctl.obj (.text.Mdio_manualModePhyRegWriteC45) 9009a010 00000040 IPC.lib : pec_prom.o (.text.PP_Read_FWPage) 9009a050 00000040 eeprom.o (.text.PromReadFunc) 9009a090 00000040 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmIrqProgramOesRegister) 9009a0d0 00000040 : sciclient_rm_irq.obj (.text.Sciclient_rmPsGetIfIdx) 9009a110 00000040 : sciclient_rm_irq.obj (.text.Sciclient_rmPsGetInp) 9009a150 00000040 : sciclient_rm_irq.obj (.text.Sciclient_rmPsGetOutp) 9009a190 00000040 : spinlock.obj (.text.Spinlock_lock) 9009a1d0 00000040 : uart_v0.obj (.text.UART_readDataPolling) 9009a210 00000040 IPC.lib : pec_uart.o (.text.UART_u16ReadCharNonBlocking) 9009a250 00000040 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ring_lcdma.obj (.text.Udma_ringGetForwardRingOccLcdma) 9009a290 00000040 : udma_ring_lcdma.obj (.text.Udma_ringGetReverseRingOccLcdma) 9009a2d0 00000040 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_stdio.obj (.text.ff_fread) 9009a310 00000040 : ff_stdio.obj (.text.ff_fwrite) 9009a350 00000040 libc.a : memory.c.obj (.text.free_list_insert) 9009a390 00000040 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : inet_chksum.obj (.text.ip_chksum_pseudo_partial) 9009a3d0 00000040 libc.a : memcmp.c.obj (.text.memcmp) 9009a410 00000040 IPC.lib : pec_queue.o (.text.pec_enqueue) 9009a450 0000003e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_getIpv4IgnBitsMax) 9009a48e 00000002 --HOLE-- [fill = 0] 9009a490 0000003e : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_getIpv6IgnBitsMax) 9009a4ce 00000002 --HOLE-- [fill = 0] 9009a4d0 0000003e : csl_cpts.obj (.text.CSL_CPTS_setTSAddVal) 9009a50e 00000002 --HOLE-- [fill = 0] 9009a510 0000003e drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_emif.obj (.text.CSL_emifDisableECC) 9009a54e 00000002 --HOLE-- [fill = 0] 9009a550 0000003e : csl_emif.obj (.text.CSL_emifEnableECC) 9009a58e 00000002 --HOLE-- [fill = 0] 9009a590 0000003e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_hostport_ioctl.obj (.text.CpswHostPort_getMaxLen) 9009a5ce 00000002 --HOLE-- [fill = 0] 9009a5d0 0000003e : cpsw_stats.obj (.text.CpswStats_rejoin) 9009a60e 00000002 --HOLE-- [fill = 0] 9009a610 0000003e drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.text.DDR_isEnabled) 9009a64e 00000002 --HOLE-- [fill = 0] 9009a650 0000003e cpswconfighandler.o (.text.EnetMacPort_isQsgmii) 9009a68e 00000002 --HOLE-- [fill = 0] 9009a690 0000003e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_macport.obj (.text.EnetMacPort_isQsgmii) 9009a6ce 00000002 --HOLE-- [fill = 0] 9009a6d0 0000003e : cpsw_macport_ioctl.obj (.text.EnetMacPort_isQsgmii) 9009a70e 00000002 --HOLE-- [fill = 0] 9009a710 0000003e : enet_appmemutils.obj (.text.EnetMem_freeRingMem) 9009a74e 00000002 --HOLE-- [fill = 0] 9009a750 0000003e : enetphy.obj (.text.EnetPhy_linkedState) 9009a78e 00000002 --HOLE-- [fill = 0] 9009a790 0000003e : enetphy.obj (.text.EnetPhy_readExtReg) 9009a7ce 00000002 --HOLE-- [fill = 0] 9009a7d0 0000003e ti_enet_soc.o (.text.EnetSoc_getTxChPeerId) 9009a80e 00000002 --HOLE-- [fill = 0] 9009a810 0000003e freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_FindEndOfChain) 9009a84e 00000002 --HOLE-- [fill = 0] 9009a850 0000003e board.am64x.r5f.ti-arm-clang.debug.lib : flash.obj (.text.Flash_eraseBlk) 9009a88e 00000002 --HOLE-- [fill = 0] 9009a890 0000003e lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2lwipif.obj (.text.LWIPIF_LWIP_start) 9009a8ce 00000002 --HOLE-- [fill = 0] 9009a8d0 0000003e : lwip2enet.obj (.text.Lwip2Enet_allocateTxHandle) 9009a90e 00000002 --HOLE-- [fill = 0] 9009a910 0000003e drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_setCmdDummyCycles) 9009a94e 00000002 --HOLE-- [fill = 0] 9009a950 0000003e : ospi_v0.obj (.text.OSPI_setReadDummyCycles) 9009a98e 00000002 --HOLE-- [fill = 0] 9009a990 0000003e : sciclient.obj (.text.Sciclient_secProxyWaitThread) 9009a9ce 00000002 --HOLE-- [fill = 0] 9009a9d0 0000003e : uart_v0.obj (.text.UART_spaceAvail) 9009aa0e 00000002 --HOLE-- [fill = 0] 9009aa10 0000003e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_setup_callbacks) 9009aa4e 00000002 --HOLE-- [fill = 0] 9009aa50 0000003e : etharp.obj (.text.etharp_request_dst) 9009aa8e 00000002 --HOLE-- [fill = 0] 9009aa90 0000003e : lwiperf.obj (.text.lwiperf_list_find) 9009aace 00000002 --HOLE-- [fill = 0] 9009aad0 0000003e mcp23008.o (.text.mcp23008_setdir) 9009ab0e 00000002 --HOLE-- [fill = 0] 9009ab10 0000003e mcp23008.o (.text.mcp23008_setgpio) 9009ab4e 00000002 --HOLE-- [fill = 0] 9009ab50 0000003e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : timeouts.obj (.text.sys_timeouts_init) 9009ab8e 00000002 --HOLE-- [fill = 0] 9009ab90 0000003c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setPort0VlanReg) 9009abcc 00000004 --HOLE-- [fill = 0] 9009abd0 0000003c drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaSetChanPeerReg) 9009ac0c 00000004 --HOLE-- [fill = 0] 9009ac10 0000003c : csl_intaggr.obj (.text.CSL_intaggrIsValidStatusBitNum) 9009ac4c 00000004 --HOLE-- [fill = 0] 9009ac50 0000003c : csl_pktdma.obj (.text.CSL_pktdmaSetRxRT) 9009ac8c 00000004 --HOLE-- [fill = 0] 9009ac90 0000003c : csl_pktdma.obj (.text.CSL_pktdmaSetTxRT) 9009accc 00000004 --HOLE-- [fill = 0] 9009acd0 0000003c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_validatePortPolicer) 9009ad0c 00000004 --HOLE-- [fill = 0] 9009ad10 0000003c : cpsw_macport.obj (.text.CpswMacPort_close) 9009ad4c 00000004 --HOLE-- [fill = 0] 9009ad50 0000003c : dp83867.obj (.text.Dp83867_isResetComplete) 9009ad8c 00000004 --HOLE-- [fill = 0] 9009ad90 0000003c board.am64x.r5f.ti-arm-clang.debug.lib : eeprom_at24c.obj (.text.EEPROM_AT24C_close) 9009adcc 00000004 --HOLE-- [fill = 0] 9009add0 0000003c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_hostport.obj (.text.EnetHostPortDma_getTotalRxFlowCount) 9009ae0c 00000004 --HOLE-- [fill = 0] 9009ae10 0000003c : enetphy.obj (.text.EnetPhy_checkTimeout) 9009ae4c 00000004 --HOLE-- [fill = 0] 9009ae50 0000003c : enet_udma.obj (.text.EnetUdma_getMappedRxChStartIdx) 9009ae8c 00000004 --HOLE-- [fill = 0] 9009ae90 0000003c drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_enableDdrRdCmds) 9009aecc 00000004 --HOLE-- [fill = 0] 9009aed0 0000003c : sciclient_rm_irq.obj (.text.Sciclient_rmIrqClearOesRegister) 9009af0c 00000004 --HOLE-- [fill = 0] 9009af10 0000003c : uart_v0.obj (.text.UART_enhanFuncEnable) 9009af4c 00000004 --HOLE-- [fill = 0] 9009af50 0000003c : uart_v0.obj (.text.UART_resetModule) 9009af8c 00000004 --HOLE-- [fill = 0] 9009af90 0000003c : uart_v0.obj (.text.UART_writeDataPolling) 9009afcc 00000004 --HOLE-- [fill = 0] 9009afd0 0000003c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp.obj (.text.altcp_close) 9009b00c 00000004 --HOLE-- [fill = 0] 9009b010 0000003c : altcp.obj (.text.altcp_mss) 9009b04c 00000004 --HOLE-- [fill = 0] 9009b050 0000003c : altcp.obj (.text.altcp_output) 9009b08c 00000004 --HOLE-- [fill = 0] 9009b090 0000003c : altcp.obj (.text.altcp_sndbuf) 9009b0cc 00000004 --HOLE-- [fill = 0] 9009b0d0 0000003c : altcp.obj (.text.altcp_sndqueuelen) 9009b10c 00000004 --HOLE-- [fill = 0] 9009b110 0000003c : altcp_tcp.obj (.text.altcp_tcp_err) 9009b14c 00000004 --HOLE-- [fill = 0] 9009b150 0000003c freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_stdio.obj (.text.ff_filelength) 9009b18c 00000004 --HOLE-- [fill = 0] 9009b190 0000003c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : igmp.obj (.text.igmp_lookfor_group) 9009b1cc 00000004 --HOLE-- [fill = 0] 9009b1d0 0000003c nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text.printf_) 9009b20c 00000004 --HOLE-- [fill = 0] 9009b210 0000003a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setAleCtrl2IPPktFilterConfig) 9009b24a 00000006 --HOLE-- [fill = 0] 9009b250 0000003a : csl_cpsw.obj (.text.CSL_CPSW_setAleCtrl2MalformedFrameConfig) 9009b28a 00000006 --HOLE-- [fill = 0] 9009b290 0000003a : cpsw_ale.obj (.text.CpswAle_isVlanMaskMuxRegSupported) 9009b2ca 00000006 --HOLE-- [fill = 0] 9009b2d0 0000003a : dp83867.obj (.text.Dp83867_isMacModeSupported) 9009b30a 00000006 --HOLE-- [fill = 0] 9009b310 0000003a ti_enet_config.o (.text.EnetApp_getMacAddrFromPool) 9009b34a 00000006 --HOLE-- [fill = 0] 9009b350 0000003a board.am64x.r5f.ti-arm-clang.debug.lib : flash.obj (.text.Flash_getAttrs) 9009b38a 00000006 --HOLE-- [fill = 0] 9009b390 0000003a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : generic_phy.obj (.text.GenericPhy_isResetComplete) 9009b3ca 00000006 --HOLE-- [fill = 0] 9009b3d0 0000003a drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_Params_init) 9009b40a 00000006 --HOLE-- [fill = 0] 9009b410 0000003a : lpddr4.obj (.text.LPDDR4_SanityFunction2) 9009b44a 00000006 --HOLE-- [fill = 0] 9009b450 0000003a lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2lwipif.obj (.text.LWIPIF_LWIP_rxPktHandler) 9009b48a 00000006 --HOLE-- [fill = 0] 9009b490 0000003a : lwip2lwipif.obj (.text.LWIPIF_LWIP_txPktHandler) 9009b4ca 00000006 --HOLE-- [fill = 0] 9009b4d0 0000003a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_manual_ioctl.obj (.text.Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_IS_ALIVE) 9009b50a 00000006 --HOLE-- [fill = 0] 9009b510 0000003a drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_disablePhyPipeline) 9009b54a 00000006 --HOLE-- [fill = 0] 9009b550 0000003a : ospi_v0.obj (.text.OSPI_enableDDR) 9009b58a 00000006 --HOLE-- [fill = 0] 9009b590 0000003a : udma_ring_lcdma.obj (.text.Udma_ringDequeueRawLcdma) 9009b5ca 00000006 --HOLE-- [fill = 0] 9009b5d0 0000003a : udma_ring_common.obj (.text.Udma_ringGetNum) 9009b60a 00000006 --HOLE-- [fill = 0] 9009b610 0000003a nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text._atoi) 9009b64a 00000006 --HOLE-- [fill = 0] 9009b650 0000003a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : igmp.obj (.text.igmp_report_groups) 9009b68a 00000006 --HOLE-- [fill = 0] 9009b690 0000003a nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text.snprintf_) 9009b6ca 00000006 --HOLE-- [fill = 0] 9009b6d0 00000038 ti_board_open_close.o (.text.Board_driversOpen) 9009b708 00000008 --HOLE-- [fill = 0] 9009b710 00000038 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getAleVersionInfo) 9009b748 00000008 --HOLE-- [fill = 0] 9009b750 00000038 : csl_cpsw.obj (.text.CSL_CPSW_getCpswVersionInfo) 9009b788 00000008 --HOLE-- [fill = 0] 9009b790 00000038 : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_setAlePolicerType) 9009b7c8 00000008 --HOLE-- [fill = 0] 9009b7d0 00000038 : csl_cpts.obj (.text.CSL_CPTS_getCptsVersionInfo) 9009b808 00000008 --HOLE-- [fill = 0] 9009b810 00000038 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_REG32_FINS_RAW) 9009b848 00000008 --HOLE-- [fill = 0] 9009b850 00000038 : mmcsd_v0.obj (.text.CSL_REG32_FINS_RAW) 9009b888 00000008 --HOLE-- [fill = 0] 9009b890 00000038 : ospi_phy.obj (.text.CSL_REG32_FINS_RAW) 9009b8c8 00000008 --HOLE-- [fill = 0] 9009b8d0 00000038 : ospi_v0.obj (.text.CSL_REG32_FINS_RAW) 9009b908 00000008 --HOLE-- [fill = 0] 9009b910 00000038 : soc.obj (.text.CSL_REG32_FINS_RAW) 9009b948 00000008 --HOLE-- [fill = 0] 9009b950 00000038 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpts.obj (.text.CSL_REG32_FINS_RAW) 9009b988 00000008 --HOLE-- [fill = 0] 9009b990 00000038 : cpsw_ale_ioctl.obj (.text.CpswAle_ioctl_handler_CPSW_ALE_IOCTL_GET_POLICER) 9009b9c8 00000008 --HOLE-- [fill = 0] 9009b9d0 00000038 : cpsw_hostport_ioctl.obj (.text.CpswHostPort_ioctl_handler_ENET_HOSTPORT_IS_CSUM_OFFLOAD_ENABLED) 9009ba08 00000008 --HOLE-- [fill = 0] 9009ba10 00000038 : dp83867.obj (.text.Dp83867_setLoopbackCfg) 9009ba48 00000008 --HOLE-- [fill = 0] 9009ba50 00000038 : enet_osal.obj (.text.EnetOsal_cacheInv) 9009ba88 00000008 --HOLE-- [fill = 0] 9009ba90 00000038 : enet_osal.obj (.text.EnetOsal_cacheWb) 9009bac8 00000008 --HOLE-- [fill = 0] 9009bad0 00000038 : enet_osal.obj (.text.EnetOsal_cacheWbInv) 9009bb08 00000008 --HOLE-- [fill = 0] 9009bb10 00000038 : enetphy.obj (.text.EnetPhy_showLinkPartnerCompat) 9009bb48 00000008 --HOLE-- [fill = 0] 9009bb50 00000038 : enet_rm_ioctl.obj (.text.EnetRm_ioctl_handler_ENET_RM_IOCTL_ALLOC_RX_FLOW) 9009bb88 00000008 --HOLE-- [fill = 0] 9009bb90 00000038 : enet_trace.obj (.text.EnetTrace_trace) 9009bbc8 00000008 --HOLE-- [fill = 0] 9009bbd0 00000038 : enet_udma_priv.obj (.text.EnetUdma_freeRing) 9009bc08 00000008 --HOLE-- [fill = 0] 9009bc10 00000038 nortos.am64x.r5f.ti-arm-clang.debug.lib : EventP_nortos.obj (.text.EventP_construct) 9009bc48 00000008 --HOLE-- [fill = 0] 9009bc50 00000038 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_memory.obj (.text.FF_putLong) 9009bc88 00000008 --HOLE-- [fill = 0] 9009bc90 00000038 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_checkTimeout) 9009bcc8 00000008 --HOLE-- [fill = 0] 9009bcd0 00000038 : sciclient.obj (.text.Sciclient_secProxyFlush) 9009bd08 00000008 --HOLE-- [fill = 0] 9009bd10 00000038 : spinlock.obj (.text.Spinlock_unlock) 9009bd48 00000008 --HOLE-- [fill = 0] 9009bd50 00000038 IPC.lib : pec_uart_wrapper.o (.text.UARTWRAP_u16ReadCharNonBlocking) 9009bd88 00000008 --HOLE-- [fill = 0] 9009bd90 00000038 : pec_uart_wrapper.o (.text.UARTWRAP_u16WriteCharNonBlocking) 9009bdc8 00000008 --HOLE-- [fill = 0] 9009bdd0 00000038 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : autoip.obj (.text.autoip_handle_arp_conflict) 9009be08 00000008 --HOLE-- [fill = 0] 9009be10 00000038 : init.obj (.text.lwip_init) 9009be48 00000008 --HOLE-- [fill = 0] 9009be50 00000038 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.prvToLower) 9009be88 00000038 libc.a : rand.c.obj (.text.srand) 9009bec0 00000036 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_clearTableEntry) 9009bef6 0000000a --HOLE-- [fill = 0] 9009bf00 00000036 : cpsw_ale_ioctl.obj (.text.CpswAle_validatePriorityPolicer) 9009bf36 0000000a --HOLE-- [fill = 0] 9009bf40 00000036 : enet_hostport.obj (.text.EnetHostPortDma_openRsvdFlow) 9009bf76 0000000a --HOLE-- [fill = 0] 9009bf80 00000036 : enet_rm.obj (.text.EnetRm_initCoreResourceQ) 9009bfb6 0000000a --HOLE-- [fill = 0] 9009bfc0 00000036 ti_enet_soc.o (.text.EnetSoc_getRxChPeerId) 9009bff6 0000000a --HOLE-- [fill = 0] 9009c000 00000036 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.EnetUdma_deInitRxFreeDescQ) 9009c036 0000000a --HOLE-- [fill = 0] 9009c040 00000036 : enet_udma_priv.obj (.text.EnetUdma_deInitTxFreeDescQ) 9009c076 0000000a --HOLE-- [fill = 0] 9009c080 00000036 : enet_udma_priv.obj (.text.EnetUdma_getTxChUdmaInfo) 9009c0b6 0000000a --HOLE-- [fill = 0] 9009c0c0 00000036 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_mmcsd.obj (.text.FF_MMCSDDiskDelete) 9009c0f6 0000000a --HOLE-- [fill = 0] 9009c100 00000036 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2CFIFOClear) 9009c136 0000000a --HOLE-- [fill = 0] 9009c140 00000036 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio.obj (.text.Mdio_initCfg) 9009c176 0000000a --HOLE-- [fill = 0] 9009c180 00000036 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_checkTransaction) 9009c1b6 0000000a --HOLE-- [fill = 0] 9009c1c0 00000036 : udma_ring_lcdma.obj (.text.Udma_ringQueueRawLcdma) 9009c1f6 0000000a --HOLE-- [fill = 0] 9009c200 00000036 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp.obj (.text.altcp_free) 9009c236 0000000a --HOLE-- [fill = 0] 9009c240 00000036 : altcp_tcp.obj (.text.altcp_tcp_remove_callbacks) 9009c276 0000000a --HOLE-- [fill = 0] 9009c280 00000036 enet_main.o (.text.enet_loop) 9009c2b6 0000000a --HOLE-- [fill = 0] 9009c2c0 00000036 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_stdio.obj (.text.ff_fclose) 9009c2f6 0000000a --HOLE-- [fill = 0] 9009c300 00000036 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_get_at) 9009c336 0000000a --HOLE-- [fill = 0] 9009c340 00000036 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.prvIsExtendedPartition) 9009c376 0000000a --HOLE-- [fill = 0] 9009c380 00000034 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpgmac_sl.obj (.text.CSL_CPGMAC_SL_setRxMaxLen) 9009c3b4 0000000c --HOLE-- [fill = 0] 9009c3c0 00000034 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_pktdma.obj (.text.CSL_pktdmaTeardownRxChan) 9009c3f4 0000000c --HOLE-- [fill = 0] 9009c400 00000034 : csl_pktdma.obj (.text.CSL_pktdmaTeardownTxChan) 9009c434 0000000c --HOLE-- [fill = 0] 9009c440 00000034 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_delPolicer) 9009c474 0000000c --HOLE-- [fill = 0] 9009c480 00000034 : cpsw_ale.obj (.text.CpswAle_initAleRegs) 9009c4b4 0000000c --HOLE-- [fill = 0] 9009c4c0 00000034 : cpsw.obj (.text.Cpsw_cptsIsr) 9009c4f4 0000000c --HOLE-- [fill = 0] 9009c500 00000034 : dp83867.obj (.text.Dp83867_setMiiMode) 9009c534 0000000c --HOLE-- [fill = 0] 9009c540 00000034 ti_drivers_open_close.o (.text.Drivers_ffClose) 9009c574 0000000c --HOLE-- [fill = 0] 9009c580 00000034 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma.obj (.text.EnetDma_disableRxEvent) 9009c5b4 0000000c --HOLE-- [fill = 0] 9009c5c0 00000034 : enet_udma.obj (.text.EnetDma_disableTxEvent) 9009c5f4 0000000c --HOLE-- [fill = 0] 9009c600 00000034 : enet_udma.obj (.text.EnetDma_enableRxEvent) 9009c634 0000000c --HOLE-- [fill = 0] 9009c640 00000034 : enet_udma.obj (.text.EnetDma_enableTxEvent) 9009c674 0000000c --HOLE-- [fill = 0] 9009c680 00000034 : enet_osal.obj (.text.EnetOsal_registerIntr) 9009c6b4 0000000c --HOLE-- [fill = 0] 9009c6c0 00000034 : enet_rm.obj (.text.EnetRm_freeCoreResource) 9009c6f4 0000000c --HOLE-- [fill = 0] 9009c700 00000034 ti_enet_soc.o (.text.EnetSoc_getDmaHandle) 9009c734 0000000c --HOLE-- [fill = 0] 9009c740 00000034 ti_enet_soc.o (.text.EnetSoc_getMacPortCaps) 9009c774 0000000c --HOLE-- [fill = 0] 9009c780 00000034 ti_enet_soc.o (.text.EnetSoc_getRxFlowCount) 9009c7b4 0000000c --HOLE-- [fill = 0] 9009c7c0 00000034 ti_enet_soc.o (.text.EnetSoc_getTxChCount) 9009c7f4 0000000c --HOLE-- [fill = 0] 9009c800 00000034 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_memory.obj (.text.FF_getLong) 9009c834 0000000c --HOLE-- [fill = 0] 9009c840 00000034 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.LPDDR4_SanityFunction1) 9009c874 0000000c --HOLE-- [fill = 0] 9009c880 00000034 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_ioctl.obj (.text.Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_IS_ALIVE) 9009c8b4 0000000c --HOLE-- [fill = 0] 9009c8c0 00000034 : mdio_ioctl.obj (.text.Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_IS_LINKED) 9009c8f4 0000000c --HOLE-- [fill = 0] 9009c900 00000034 drivers.am64x.r5f.ti-arm-clang.debug.lib : soc.obj (.text.SOC_generateSwPORResetMainDomain) 9009c934 0000000c --HOLE-- [fill = 0] 9009c940 00000034 : soc.obj (.text.SOC_generateSwWarmResetMainDomain) 9009c974 0000000c --HOLE-- [fill = 0] 9009c980 00000034 nortos.am64x.r5f.ti-arm-clang.debug.lib : TimerP.obj (.text.TimerP_Params_init) 9009c9b4 0000000c --HOLE-- [fill = 0] 9009c9c0 00000034 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_getRxError) 9009c9f4 0000000c --HOLE-- [fill = 0] 9009ca00 00000034 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp.obj (.text.altcp_recved) 9009ca34 0000000c --HOLE-- [fill = 0] 9009ca40 00000034 : altcp.obj (.text.altcp_setprio) 9009ca74 0000000c --HOLE-- [fill = 0] 9009ca80 00000034 : autoip.obj (.text.autoip_accept_packet) 9009cab4 0000000c --HOLE-- [fill = 0] 9009cac0 00000034 : dhcp.obj (.text.dhcp_handle_nak) 9009caf4 00000034 libc.a : memory.c.obj (.text.free_list_remove) 9009cb28 00000034 libsysbm.a : lseek.c.obj (.text.lseek) 9009cb5c 00000004 --HOLE-- [fill = 0] 9009cb60 00000034 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_out.obj (.text.tcp_route) 9009cb94 00000034 libsysbm.a : write.c.obj (.text.write) 9009cbc8 00000008 --HOLE-- [fill = 0] 9009cbd0 00000032 drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_uniflash.obj (.text.Bootloader_uniflashInitRespHeader) 9009cc02 0000000e --HOLE-- [fill = 0] 9009cc10 00000032 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setAlePolicerGlobConfig) 9009cc42 0000000e --HOLE-- [fill = 0] 9009cc50 00000032 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_sleep) 9009cc82 0000000e --HOLE-- [fill = 0] 9009cc90 00000032 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_mapIPv6AddrOctet2RegWord) 9009ccc2 0000000e --HOLE-- [fill = 0] 9009ccd0 00000032 : cpsw_macport.obj (.text.CpswMacPort_initCfg) 9009cd02 0000000e --HOLE-- [fill = 0] 9009cd10 00000032 : cpsw_macport_ioctl.obj (.text.CpswMacPort_ioctl_handler_CPSW_MACPORT_IOCTL_DISABLE) 9009cd42 0000000e --HOLE-- [fill = 0] 9009cd50 00000032 : cpsw_macport.obj (.text.CpswMacPort_ioctl_handler_CPSW_MACPORT_IOCTL_REGISTER_HANDLER) 9009cd82 0000000e --HOLE-- [fill = 0] 9009cd90 00000032 ti_enet_open_close.o (.text.EnetApp_openDmaChannels) 9009cdc2 0000000e --HOLE-- [fill = 0] 9009cdd0 00000032 ti_enet_soc.o (.text.EnetSoc_getEnetHandle) 9009ce02 0000000e --HOLE-- [fill = 0] 9009ce10 00000032 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_fat.obj (.text.FF_getClusterPosition) 9009ce42 0000000e --HOLE-- [fill = 0] 9009ce50 00000032 board.am64x.r5f.ti-arm-clang.debug.lib : flash.obj (.text.Flash_getHandle) 9009ce82 0000000e --HOLE-- [fill = 0] 9009ce90 00000032 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.HW_WR_FIELD32_RAW) 9009cec2 0000000e --HOLE-- [fill = 0] 9009ced0 00000032 : uart_v0.obj (.text.HW_WR_FIELD32_RAW) 9009cf02 0000000e --HOLE-- [fill = 0] 9009cf10 00000032 : ipc_notify_v0.obj (.text.IpcNotify_syncCallback) 9009cf42 0000000e --HOLE-- [fill = 0] 9009cf50 00000032 : mmcsd_v0.obj (.text.MMCSD_getBlockCount) 9009cf82 0000000e --HOLE-- [fill = 0] 9009cf90 00000032 : mmcsd_v0.obj (.text.MMCSD_getBlockSize) 9009cfc2 0000000e --HOLE-- [fill = 0] 9009cfd0 00000032 : uart_v0.obj (.text.UART_enhanFuncBitValRestore) 9009d002 0000000e --HOLE-- [fill = 0] 9009d010 00000032 : uart_v0.obj (.text.UART_hardwareFlowCtrlOptSet) 9009d042 0000000e --HOLE-- [fill = 0] 9009d050 00000032 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : inet_chksum.obj (.text.ip_chksum_pseudo) 9009d082 0000000e --HOLE-- [fill = 0] 9009d090 00000030 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpgmac_sl.obj (.text.CSL_CPGMAC_SL_disableCastagnoliCRC) 9009d0c0 00000030 : csl_cpgmac_sl.obj (.text.CSL_CPGMAC_SL_disableLoopback) 9009d0f0 00000030 : csl_cpgmac_sl.obj (.text.CSL_CPGMAC_SL_enableCastagnoliCRC) 9009d120 00000030 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.CSL_REG16_FEXT_RAW) 9009d150 00000030 : mmcsd_v0.obj (.text.CSL_REG8_FEXT_RAW) 9009d180 00000030 : csl_emif.obj (.text.CSL_emifConfig) 9009d1b0 00000030 : csl_lcdma_ringacc.obj (.text.CSL_lcdma_ringaccGetReverseRingOcc) 9009d1e0 00000030 : csl_lcdma_ringacc.obj (.text.CSL_lcdma_ringaccPush64) 9009d210 00000030 : csl_pktdma.obj (.text.CSL_pktdmaGetChanPeerReg) 9009d240 00000030 : csl_pktdma.obj (.text.CSL_pktdmaSetChanPeerReg) 9009d270 00000030 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_ioctl_handler_CPSW_ALE_IOCTL_REMOVE_LEARNED_ENTRIES) 9009d2a0 00000030 : cpsw_ale_ioctl.obj (.text.CpswAle_validateSetPolicerCommon) 9009d2d0 00000030 : cpsw.obj (.text.Cpsw_poll) 9009d300 00000030 : dp83867.obj (.text.Dp83867_fixFldStrap) 9009d330 00000030 eeprom.o (.text.EEPROM_close) 9009d360 00000030 cpswconfighandler.o (.text.EnetApp_updateCpswInitCfg) 9009d390 00000030 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet.obj (.text.EnetMod_ioctlFromIsr) 9009d3c0 00000030 board.am64x.r5f.ti-arm-clang.debug.lib : flash.obj (.text.Flash_close) 9009d3f0 00000030 : led.obj (.text.LED_close) 9009d420 00000030 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.LPDDR4_Start) 9009d450 00000030 : ospi_v0.obj (.text.OSPI_setModeBits) 9009d480 00000030 : uart_v0.obj (.text.UART_flowCtrlTrigLvlConfig) 9009d4b0 00000030 IPC.lib : pec_uart.o (.text.UART_vInit) 9009d4e0 00000030 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ch.obj (.text.Udma_chGetCqRingNum) 9009d510 00000030 libc.a : snprintf.c.obj (.text._outc) 9009d540 00000030 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dns.obj (.text.dns_check_entries) 9009d570 00000030 nortos.am64x.r5f.ti-arm-clang.debug.lib : PmuP_armv7r_asm.obj (.text.pmu) 9009d5a0 0000002e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setVlanLTypeReg) 9009d5ce 00000002 --HOLE-- [fill = 0] 9009d5d0 0000002e drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient.obj (.text.CSL_secProxyGetMaxMsgSize) 9009d5fe 00000002 --HOLE-- [fill = 0] 9009d600 0000002e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_validateAleEntryIndex) 9009d62e 00000002 --HOLE-- [fill = 0] 9009d630 0000002e : cpsw_ale_ioctl.obj (.text.CpswAle_validatePolicerIndex) 9009d65e 00000002 --HOLE-- [fill = 0] 9009d660 0000002e ti_enet_config.o (.text.EnetApp_acquireHandleInfo) 9009d68e 00000002 --HOLE-- [fill = 0] 9009d690 0000002e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_findBestCap) 9009d6be 00000002 --HOLE-- [fill = 0] 9009d6c0 0000002e : enet_udma.obj (.text.Enet_isIcssFamily) 9009d6ee 00000002 --HOLE-- [fill = 0] 9009d6f0 0000002e : enet_udma_priv.obj (.text.Enet_isIcssFamily) 9009d71e 00000002 --HOLE-- [fill = 0] 9009d720 0000002e freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_CleanupEntryFetch) 9009d74e 00000002 --HOLE-- [fill = 0] 9009d750 0000002e drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_mailboxClearInt) 9009d77e 00000002 --HOLE-- [fill = 0] 9009d780 0000002e : ipc_notify_v0.obj (.text.IpcNotify_mailboxEnableInt) 9009d7ae 00000002 --HOLE-- [fill = 0] 9009d7b0 0000002e board.am64x.r5f.ti-arm-clang.debug.lib : led_tpic2810.obj (.text.LED_tpic2810Close) 9009d7de 00000002 --HOLE-- [fill = 0] 9009d7e0 0000002e lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_notifyTxPackets) 9009d80e 00000002 --HOLE-- [fill = 0] 9009d810 0000002e drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_sendCmd23) 9009d83e 00000002 --HOLE-- [fill = 0] 9009d840 0000002e : ospi_v0.obj (.text.OSPI_enableModeBitsCmd) 9009d86e 00000002 --HOLE-- [fill = 0] 9009d870 0000002e : ospi_v0.obj (.text.OSPI_enableModeBitsRead) 9009d89e 00000002 --HOLE-- [fill = 0] 9009d8a0 0000002e : ospi_v0.obj (.text.OSPI_setDualOpCodeMode) 9009d8ce 00000002 --HOLE-- [fill = 0] 9009d8d0 0000002e : sciclient_rm_irq.obj (.text.Sciclient_rmIaIsIa) 9009d8fe 00000002 --HOLE-- [fill = 0] 9009d900 0000002e : sciclient_rm_irq.obj (.text.Sciclient_rmIrIsIr) 9009d92e 00000002 --HOLE-- [fill = 0] 9009d930 0000002e : sciclient.obj (.text.Sciclient_secProxyReadThread32) 9009d95e 00000002 --HOLE-- [fill = 0] 9009d960 0000002e : udma_ring_lcdma.obj (.text.Udma_ringGetElementCntLcdma) 9009d98e 00000002 --HOLE-- [fill = 0] 9009d990 0000002e : udma_ring_lcdma.obj (.text.Udma_ringGetMemPtrLcdma) 9009d9be 00000002 --HOLE-- [fill = 0] 9009d9c0 0000002e : udma_ring_lcdma.obj (.text.Udma_ringGetModeLcdma) 9009d9ee 00000002 --HOLE-- [fill = 0] 9009d9f0 0000002e : udma_ring_lcdma.obj (.text.Udma_ringGetRdIdxLcdma) 9009da1e 00000002 --HOLE-- [fill = 0] 9009da20 0000002e : udma_ring_lcdma.obj (.text.Udma_ringGetWrIdxLcdma) 9009da4e 00000002 --HOLE-- [fill = 0] 9009da50 0000002e nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text._is_digit) 9009da7e 00000002 --HOLE-- [fill = 0] 9009da80 0000002e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : autoip.obj (.text.autoip_bind) 9009daae 00000002 --HOLE-- [fill = 0] 9009dab0 0000002e : dhcp.obj (.text.dhcp_set_state) 9009dade 00000002 --HOLE-- [fill = 0] 9009dae0 0000002e lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.text.pbufQ_assert) 9009db0e 00000002 --HOLE-- [fill = 0] 9009db10 0000002c drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.CPS_FldSet) 9009db3c 00000004 --HOLE-- [fill = 0] 9009db40 0000002c : lpddr4_16bit.obj (.text.CPS_FldSet) 9009db6c 00000004 --HOLE-- [fill = 0] 9009db70 0000002c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpgmac_sl.obj (.text.CSL_CPGMAC_SL_isMACResetDone) 9009db9c 00000004 --HOLE-- [fill = 0] 9009dba0 0000002c : csl_cpsw.obj (.text.CSL_CPSW_clearAleEntry) 9009dbcc 00000004 --HOLE-- [fill = 0] 9009dbd0 0000002c drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_bcdmaGetRxRT) 9009dbfc 00000004 --HOLE-- [fill = 0] 9009dc00 0000002c : csl_bcdma.obj (.text.CSL_bcdmaGetTxRT) 9009dc2c 00000004 --HOLE-- [fill = 0] 9009dc30 0000002c : csl_bcdma.obj (.text.CSL_bcdmaSetRxRT) 9009dc5c 00000004 --HOLE-- [fill = 0] 9009dc60 0000002c : csl_bcdma.obj (.text.CSL_bcdmaSetTxRT) 9009dc8c 00000004 --HOLE-- [fill = 0] 9009dc90 0000002c : csl_emif.obj (.text.CSL_emifClearECCInterruptStatus) 9009dcbc 00000004 --HOLE-- [fill = 0] 9009dcc0 0000002c : csl_emif.obj (.text.CSL_emifEnableECCInterrupts) 9009dcec 00000004 --HOLE-- [fill = 0] 9009dcf0 0000002c : csl_emif.obj (.text.CSL_emifIsEmifConfigValid) 9009dd1c 00000004 --HOLE-- [fill = 0] 9009dd20 0000002c : csl_lcdma_ringacc.obj (.text.CSL_lcdma_ringaccGetForwardRingOcc) 9009dd4c 00000004 --HOLE-- [fill = 0] 9009dd50 0000002c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_ioctl_handler_CPSW_ALE_IOCTL_REGISTER_HANDLER) 9009dd7c 00000004 --HOLE-- [fill = 0] 9009dd80 0000002c : cpsw_cpts.obj (.text.CpswCpts_ioctl_handler_CPSW_CPTS_IOCTL_REGISTER_HANDLER) 9009ddac 00000004 --HOLE-- [fill = 0] 9009ddb0 0000002c : cpsw_est.obj (.text.CpswEst_ioctl_handler_CPSW_EST_IOCTL_REGISTER_HANDLER) 9009dddc 00000004 --HOLE-- [fill = 0] 9009dde0 0000002c : cpsw_hostport.obj (.text.CpswHostPort_ioctl_handler_CPSW_HOSTPORT_IOCTL_REGISTER_HANDLER) 9009de0c 00000004 --HOLE-- [fill = 0] 9009de10 0000002c : cpsw_stats.obj (.text.CpswStats_ioctl_handler_CPSW_STATS_IOCTL_REGISTER_HANDLER) 9009de3c 00000004 --HOLE-- [fill = 0] 9009de40 0000002c nortos.am64x.r5f.ti-arm-clang.debug.lib : DebugP_log.obj (.text.DebugP_logZoneEnable) 9009de6c 00000004 --HOLE-- [fill = 0] 9009de70 0000002c ti_enet_soc.o (.text.EnetAppRm_getIoctlPermissionInfo) 9009de9c 00000004 --HOLE-- [fill = 0] 9009dea0 0000002c ti_enet_soc.o (.text.EnetAppRm_getResPartInfo) 9009decc 00000004 --HOLE-- [fill = 0] 9009ded0 0000002c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma.obj (.text.EnetDma_registerRxEventCb) 9009defc 00000004 --HOLE-- [fill = 0] 9009df00 0000002c : enet_udma.obj (.text.EnetDma_registerTxEventCb) 9009df2c 00000004 --HOLE-- [fill = 0] 9009df30 0000002c : cpsw_macport.obj (.text.EnetMacPort_isRmii) 9009df5c 00000004 --HOLE-- [fill = 0] 9009df60 0000002c : cpsw_macport_ioctl.obj (.text.EnetMacPort_isRmii) 9009df8c 00000004 --HOLE-- [fill = 0] 9009df90 0000002c : enet_rm_ioctl.obj (.text.EnetRm_ioctl_handler_ENET_RM_IOCTL_ALLOC_MAC_ADDR) 9009dfbc 00000004 --HOLE-- [fill = 0] 9009dfc0 0000002c : enet_rm_ioctl.obj (.text.EnetRm_ioctl_handler_ENET_RM_IOCTL_ALLOC_TX_CH_PEERID) 9009dfec 00000004 --HOLE-- [fill = 0] 9009dff0 0000002c : enet_rm_ioctl.obj (.text.EnetRm_ioctl_handler_ENET_RM_IOCTL_ATTACH) 9009e01c 00000004 --HOLE-- [fill = 0] 9009e020 0000002c : enet_udma_priv.obj (.text.EnetUdma_getRxFlowUdmaInfo) 9009e04c 00000004 --HOLE-- [fill = 0] 9009e050 0000002c : enet_utils_dflt.obj (.text.EnetUtilsDflt_initCfg) 9009e07c 00000004 --HOLE-- [fill = 0] 9009e080 0000002c drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2CControllerBusBusy) 9009e0ac 00000004 --HOLE-- [fill = 0] 9009e0b0 0000002c lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_findMacPortFromEnet) 9009e0dc 00000004 --HOLE-- [fill = 0] 9009e0e0 0000002c : lwip2enet.obj (.text.Lwip2Enet_freePbufPackets) 9009e10c 00000004 --HOLE-- [fill = 0] 9009e110 0000002c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio.obj (.text.Mdio_ioctl_handler_MDIO_IOCTL_REGISTER_HANDLER) 9009e13c 00000004 --HOLE-- [fill = 0] 9009e140 0000002c drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_getIrAddr) 9009e16c 00000004 --HOLE-- [fill = 0] 9009e170 0000002c nortos.am64x.r5f.ti-arm-clang.debug.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_constructBinary) 9009e19c 00000004 --HOLE-- [fill = 0] 9009e1a0 0000002c : TimerP.obj (.text.TimerP_clearOverflowInt) 9009e1cc 00000004 --HOLE-- [fill = 0] 9009e1d0 0000002c drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_moduleReset) 9009e1fc 0000002c libc.a : sprintf.c.obj (.text._outs) 9009e228 00000008 --HOLE-- [fill = 0] 9009e230 0000002c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp.obj (.text.altcp_abort) 9009e25c 00000004 --HOLE-- [fill = 0] 9009e260 0000002c httpd_cgi_sii.o (.text.httpd_cgi_handler) 9009e28c 00000004 --HOLE-- [fill = 0] 9009e290 0000002c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : icmp.obj (.text.icmp_dest_unreach) 9009e2bc 00000004 --HOLE-- [fill = 0] 9009e2c0 0000002c : icmp.obj (.text.icmp_time_exceeded) 9009e2ec 00000004 --HOLE-- [fill = 0] 9009e2f0 0000002c : pbuf.obj (.text.pbuf_clen) 9009e31c 00000004 --HOLE-- [fill = 0] 9009e320 0000002c freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_ioman.obj (.text.prvIsValidMedia) 9009e34c 00000004 --HOLE-- [fill = 0] 9009e350 0000002c httpd_cgi_sii.o (.text.sii_script_pre) 9009e37c 00000004 --HOLE-- [fill = 0] 9009e380 0000002c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_seg_free) 9009e3ac 00000004 --HOLE-- [fill = 0] 9009e3b0 0000002c : udp.obj (.text.udp_new) 9009e3dc 00000004 --HOLE-- [fill = 0] 9009e3e0 0000002a drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_uniflash.obj (.text.Bootloader_uniflashFlashVerifyXipFile) 9009e40a 00000006 --HOLE-- [fill = 0] 9009e410 0000002a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_setAlePortState) 9009e43a 00000006 --HOLE-- [fill = 0] 9009e440 0000002a : csl_mdio.obj (.text.CSL_MDIO_isPhyRegAccessComplete) 9009e46a 00000006 --HOLE-- [fill = 0] 9009e470 0000002a nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_sleepTicks) 9009e49a 00000006 --HOLE-- [fill = 0] 9009e4a0 0000002a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_ioctl_handler_CPSW_ALE_IOCTL_DEL_POLICER) 9009e4ca 00000006 --HOLE-- [fill = 0] 9009e4d0 0000002a : cpsw_ale.obj (.text.CpswAle_mapBw2IdlIncVal) 9009e4fa 00000006 --HOLE-- [fill = 0] 9009e500 0000002a : cpsw_ale_ioctl.obj (.text.CpswAle_mapIdlIncVal2Bw) 9009e52a 00000006 --HOLE-- [fill = 0] 9009e530 0000002a : cpsw_macport_est.obj (.text.CpswMacPortEst_ioctl_handler_CPSW_MACPORT_IOCTL_REGISTER_HANDLER) 9009e55a 00000006 --HOLE-- [fill = 0] 9009e560 0000002a : cpsw_ioctl.obj (.text.Cpsw_getTxMtuPerPriority) 9009e58a 00000006 --HOLE-- [fill = 0] 9009e590 0000002a : cpsw.obj (.text.Cpsw_registerInternalIoctlHandler) 9009e5ba 00000006 --HOLE-- [fill = 0] 9009e5c0 0000002a : cpsw.obj (.text.Cpsw_statsIsr) 9009e5ea 00000006 --HOLE-- [fill = 0] 9009e5f0 0000002a drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.text.DDR_enableInlineECC) 9009e61a 00000006 --HOLE-- [fill = 0] 9009e620 0000002a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ioctl.obj (.text.EnetMacPort_isRgmii) 9009e64a 00000006 --HOLE-- [fill = 0] 9009e650 0000002a : cpsw_macport.obj (.text.EnetMacPort_isRgmii) 9009e67a 00000006 --HOLE-- [fill = 0] 9009e680 0000002a : cpsw_macport_ioctl.obj (.text.EnetMacPort_isRgmii) 9009e6aa 00000006 --HOLE-- [fill = 0] 9009e6b0 0000002a cpswconfighandler.o (.text.EnetMacPort_isSgmii) 9009e6da 00000006 --HOLE-- [fill = 0] 9009e6e0 0000002a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_macport.obj (.text.EnetMacPort_isSgmii) 9009e70a 00000006 --HOLE-- [fill = 0] 9009e710 0000002a : cpsw_macport_ioctl.obj (.text.EnetMacPort_isSgmii) 9009e73a 00000006 --HOLE-- [fill = 0] 9009e740 0000002a : cpsw_macport.obj (.text.EnetMacPort_isXfi) 9009e76a 00000006 --HOLE-- [fill = 0] 9009e770 0000002a : cpsw_macport_ioctl.obj (.text.EnetMacPort_isXfi) 9009e79a 00000006 --HOLE-- [fill = 0] 9009e7a0 0000002a : enet_phymdio_dflt.obj (.text.EnetPhyMdioDflt_ioctl_handler_ENET_PHY_IOCTL_REGISTER_HANDLER) 9009e7ca 00000006 --HOLE-- [fill = 0] 9009e7d0 0000002a : enetphy.obj (.text.EnetPhy_close) 9009e7fa 00000006 --HOLE-- [fill = 0] 9009e800 0000002a : enet_rm.obj (.text.EnetRm_ioctl_handler_ENET_RM_IOCTL_REGISTER_HANDLER) 9009e82a 00000006 --HOLE-- [fill = 0] 9009e830 0000002a ti_enet_soc.o (.text.EnetSoc_getEnetHandleByIdx) 9009e85a 00000006 --HOLE-- [fill = 0] 9009e860 0000002a ti_enet_soc.o (.text.EnetSoc_getMacPortMax) 9009e88a 00000006 --HOLE-- [fill = 0] 9009e890 0000002a ti_enet_soc.o (.text.EnetSoc_isValidEnetType) 9009e8ba 00000006 --HOLE-- [fill = 0] 9009e8c0 0000002a freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_format.obj (.text.FF_Format) 9009e8ea 00000006 --HOLE-- [fill = 0] 9009e8f0 0000002a : ff_fat.obj (.text.FF_getClusterChainNumber) 9009e91a 00000006 --HOLE-- [fill = 0] 9009e920 0000002a : ff_memory.obj (.text.FF_putShort) 9009e94a 00000006 --HOLE-- [fill = 0] 9009e950 0000002a drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_ReadCmdParams_init) 9009e97a 00000006 --HOLE-- [fill = 0] 9009e980 0000002a : sciclient_rm_irq.obj (.text.Sciclient_rmParamIsValid) 9009e9aa 00000006 --HOLE-- [fill = 0] 9009e9b0 0000002a : sciclient_rm_irq.obj (.text.Sciclient_rmPsIsEmpty) 9009e9da 00000006 --HOLE-- [fill = 0] 9009e9e0 0000002a xmodem.o (.text.UART_Transaction_init) 9009ea0a 00000006 --HOLE-- [fill = 0] 9009ea10 0000002a drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_intr2Disable) 9009ea3a 00000006 --HOLE-- [fill = 0] 9009ea40 0000002a : uart_v0.obj (.text.UART_operatingModeSelect) 9009ea6a 00000006 --HOLE-- [fill = 0] 9009ea70 0000002a : ospi_dma_udma.obj (.text.UdmaUtils_getTrpdTr15Response) 9009ea9a 00000006 --HOLE-- [fill = 0] 9009eaa0 0000002a : udma_event.obj (.text.Udma_eventProgramSteering) 9009eaca 00000006 --HOLE-- [fill = 0] 9009ead0 0000002a : udma_event.obj (.text.Udma_eventResetSteering) 9009eafa 00000006 --HOLE-- [fill = 0] 9009eb00 0000002a : udma_rmcfg.obj (.text.Udma_rmGetDefBoardCfgPrms) 9009eb2a 00000006 --HOLE-- [fill = 0] 9009eb30 0000002a lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.text.mempQ_free) 9009eb5a 00000006 --HOLE-- [fill = 0] 9009eb60 0000002a lwip-contrib-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcpecho_raw.obj (.text.tcpecho_raw_free) 9009eb8a 00000006 --HOLE-- [fill = 0] 9009eb90 0000002a nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text.vsnprintf_) 9009ebba 00000006 --HOLE-- [fill = 0] 9009ebc0 00000028 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4_16bit.obj (.text.CPS_FldWrite) 9009ebe8 00000008 --HOLE-- [fill = 0] 9009ebf0 00000028 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getAleStatusNumAleEntries) 9009ec18 00000008 --HOLE-- [fill = 0] 9009ec20 00000028 nortos.am64x.r5f.ti-arm-clang.debug.lib : CpuId_armv7r.obj (.text.CSL_armR5GetCpuID) 9009ec48 00000008 --HOLE-- [fill = 0] 9009ec50 00000028 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_lcdma_ringacc.obj (.text.CSL_lcdma_ringaccPop64) 9009ec78 00000008 --HOLE-- [fill = 0] 9009ec80 00000028 : csl_lcdma_ringacc.obj (.text.CSL_lcdma_ringaccSetReverseDoorbell) 9009eca8 00000008 --HOLE-- [fill = 0] 9009ecb0 00000028 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_ioctl_handler_CPSW_ALE_IOCTL_SET_PORT_STATE) 9009ecd8 00000008 --HOLE-- [fill = 0] 9009ece0 00000028 : cpsw_macport_intervlan.obj (.text.CpswMacPort_openInterVlan) 9009ed08 00000008 --HOLE-- [fill = 0] 9009ed10 00000028 : cpsw_ioctl.obj (.text.Cpsw_internalIoctl_handler_ENET_PER_IOCTL_CLOSE_PORT_LINK) 9009ed38 00000008 --HOLE-- [fill = 0] 9009ed40 00000028 cpsw_custom_phy.o (.text.EnetBoard_getPhyCfg) 9009ed68 00000008 --HOLE-- [fill = 0] 9009ed70 00000028 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_phyTimeout) 9009ed98 00000008 --HOLE-- [fill = 0] 9009eda0 00000028 : enet_rm_ioctl.obj (.text.EnetRm_ioctl_handler_ENET_RM_IOCTL_FREE_RX_FLOW) 9009edc8 00000008 --HOLE-- [fill = 0] 9009edd0 00000028 : enet_rm_ioctl.obj (.text.EnetRm_ioctl_handler_ENET_RM_IOCTL_VALIDATE_RX_FLOW) 9009edf8 00000008 --HOLE-- [fill = 0] 9009ee00 00000028 : enet_udma_priv.obj (.text.EnetUdma_dmaDescInit) 9009ee28 00000008 --HOLE-- [fill = 0] 9009ee30 00000028 : enet_udma_priv.obj (.text.EnetUdma_memMgrDeInit) 9009ee58 00000008 --HOLE-- [fill = 0] 9009ee60 00000028 nortos.am64x.r5f.ti-arm-clang.debug.lib : EventP_nortos.obj (.text.EventP_setBits) 9009ee88 00000008 --HOLE-- [fill = 0] 9009ee90 00000028 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_string.obj (.text.FF_GetUtf16SequenceLen) 9009eeb8 00000008 --HOLE-- [fill = 0] 9009eec0 00000028 : ff_sys.obj (.text.FF_Mounted) 9009eee8 00000008 --HOLE-- [fill = 0] 9009eef0 00000028 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2CControllerIntEnableEx) 9009ef18 00000008 --HOLE-- [fill = 0] 9009ef20 00000028 : i2c_v0.obj (.text.I2CTargetIntEnableEx) 9009ef48 00000008 --HOLE-- [fill = 0] 9009ef50 00000028 : mmcsd_v0.obj (.text.MMCSD_halErrorIntrStatusGet) 9009ef78 00000008 --HOLE-- [fill = 0] 9009ef80 00000028 : mmcsd_v0.obj (.text.MMCSD_halNormalIntrStatusGet) 9009efa8 00000008 --HOLE-- [fill = 0] 9009efb0 00000028 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_manual_ioctl.obj (.text.Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_C22_WRITE) 9009efd8 00000008 --HOLE-- [fill = 0] 9009efe0 00000028 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm.obj (.text.Sciclient_rmIrqTranslateIaOutput) 9009f008 00000008 --HOLE-- [fill = 0] 9009f010 00000028 : sciclient.obj (.text.Sciclient_secProxyVerifyThread) 9009f038 00000008 --HOLE-- [fill = 0] 9009f040 00000028 nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text._out_fct) 9009f068 00000028 libc.a : strchr.c.obj (.text.strchr) 9009f090 00000028 nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text.vprintf_) 9009f0b8 00000008 --HOLE-- [fill = 0] 9009f0c0 00000026 enet_main.o (.text.App_setupNetworkStack) 9009f0e6 0000000a --HOLE-- [fill = 0] 9009f0f0 00000026 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpgmac_sl.obj (.text.CSL_CPGMAC_SL_enableIdleMode) 9009f116 0000000a --HOLE-- [fill = 0] 9009f120 00000026 : csl_cpgmac_sl.obj (.text.CSL_CPGMAC_SL_enableLoopback) 9009f146 0000000a --HOLE-- [fill = 0] 9009f150 00000026 : csl_cpgmac_sl.obj (.text.CSL_CPGMAC_SL_resetMac) 9009f176 0000000a --HOLE-- [fill = 0] 9009f180 00000026 : csl_cpsw.obj (.text.CSL_CPSW_disableAlePolicerThread) 9009f1a6 0000000a --HOLE-- [fill = 0] 9009f1b0 00000026 : csl_cpsw.obj (.text.CSL_CPSW_getAlePolicerGlobConfig) 9009f1d6 0000000a --HOLE-- [fill = 0] 9009f1e0 00000026 : cpsw_ale_ioctl.obj (.text.CpswAle_ioctl_handler_CPSW_ALE_IOCTL_GET_DEFAULT_THREADCFG) 9009f206 0000000a --HOLE-- [fill = 0] 9009f210 00000026 : cpsw_est.obj (.text.Cpsw_disableEst) 9009f236 0000000a --HOLE-- [fill = 0] 9009f240 00000026 : cpsw.obj (.text.Cpsw_disableIet) 9009f266 0000000a --HOLE-- [fill = 0] 9009f270 00000026 : cpsw.obj (.text.Cpsw_enableIet) 9009f296 0000000a --HOLE-- [fill = 0] 9009f2a0 00000026 : enet_hostport.obj (.text.EnetHostPortDma_getDmaResInfo) 9009f2c6 0000000a --HOLE-- [fill = 0] 9009f2d0 00000026 : enet_rm.obj (.text.EnetRm_initResourceNode) 9009f2f6 0000000a --HOLE-- [fill = 0] 9009f300 00000026 : enet_rm_ioctl.obj (.text.EnetRm_ioctl_handler_ENET_RM_IOCTL_FREE_MAC_ADDR) 9009f326 0000000a --HOLE-- [fill = 0] 9009f330 00000026 : enet_rm_ioctl.obj (.text.EnetRm_ioctl_handler_ENET_RM_IOCTL_FREE_TX_CH_PEERID) 9009f356 0000000a --HOLE-- [fill = 0] 9009f360 00000026 : enet_udma.obj (.text.EnetUdma_drainIsrCq) 9009f386 0000000a --HOLE-- [fill = 0] 9009f390 00000026 : enet_udma.obj (.text.EnetUdma_getRxChFlowStartIdx) 9009f3b6 0000000a --HOLE-- [fill = 0] 9009f3c0 00000026 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_memory.obj (.text.FF_getShort) 9009f3e6 0000000a --HOLE-- [fill = 0] 9009f3f0 00000026 board.am64x.r5f.ti-arm-clang.debug.lib : flash.obj (.text.Flash_getPhyTuningOffset) 9009f416 0000000a --HOLE-- [fill = 0] 9009f420 00000026 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.LPDDR4_Probe) 9009f446 0000000a --HOLE-- [fill = 0] 9009f450 00000026 : ospi_v0.obj (.text.OSPI_WriteCmdParams_init) 9009f476 0000000a --HOLE-- [fill = 0] 9009f480 00000026 : spinlock.obj (.text.Spinlock_getNumLocks) 9009f4a6 0000000a --HOLE-- [fill = 0] 9009f4b0 00000026 IPC.lib : terminal.o (.text.TERMINAL_vResetCommandConsole) 9009f4d6 0000000a --HOLE-- [fill = 0] 9009f4e0 00000026 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ring_common.obj (.text.Udma_ringGetElementCnt) 9009f506 0000000a --HOLE-- [fill = 0] 9009f510 00000026 : udma_ring_common.obj (.text.Udma_ringGetForwardRingOcc) 9009f536 0000000a --HOLE-- [fill = 0] 9009f540 00000026 : udma_ring_common.obj (.text.Udma_ringGetMemPtr) 9009f566 0000000a --HOLE-- [fill = 0] 9009f570 00000026 : udma_ring_common.obj (.text.Udma_ringGetRdIdx) 9009f596 0000000a --HOLE-- [fill = 0] 9009f5a0 00000026 : udma_ring_common.obj (.text.Udma_ringGetReverseRingOcc) 9009f5c6 0000000a --HOLE-- [fill = 0] 9009f5d0 00000026 : udma_ring_common.obj (.text.Udma_ringGetWrIdx) 9009f5f6 0000000a --HOLE-- [fill = 0] 9009f600 00000026 : udma_ring_common.obj (.text.Udma_ringPrime) 9009f626 0000000a --HOLE-- [fill = 0] 9009f630 00000026 nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text._out_buffer) 9009f656 0000000a --HOLE-- [fill = 0] 9009f660 00000026 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp_tcp.obj (.text.altcp_tcp_setup) 9009f686 0000000a --HOLE-- [fill = 0] 9009f690 00000026 : autoip.obj (.text.autoip_network_changed) 9009f6b6 0000000a --HOLE-- [fill = 0] 9009f6c0 00000026 httpd.o (.text.http_ssi_state_alloc) 9009f6e6 0000000a --HOLE-- [fill = 0] 9009f6f0 00000026 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : igmp.obj (.text.igmp_init) 9009f716 0000000a --HOLE-- [fill = 0] 9009f720 00000026 mcp23008.o (.text.mcp23008_init) 9009f746 0000000a --HOLE-- [fill = 0] 9009f750 00000026 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_accept) 9009f776 0000000a --HOLE-- [fill = 0] 9009f780 00000024 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_REG32_FEXT_RAW) 9009f7a4 0000000c --HOLE-- [fill = 0] 9009f7b0 00000024 : csl_lcdma_ringacc.obj (.text.CSL_REG32_FEXT_RAW) 9009f7d4 0000000c --HOLE-- [fill = 0] 9009f7e0 00000024 : csl_pktdma.obj (.text.CSL_REG32_FEXT_RAW) 9009f804 0000000c --HOLE-- [fill = 0] 9009f810 00000024 : mmcsd_v0.obj (.text.CSL_REG32_FEXT_RAW) 9009f834 0000000c --HOLE-- [fill = 0] 9009f840 00000024 : ospi_phy.obj (.text.CSL_REG32_FEXT_RAW) 9009f864 0000000c --HOLE-- [fill = 0] 9009f870 00000024 : ospi_v0.obj (.text.CSL_REG32_FEXT_RAW) 9009f894 0000000c --HOLE-- [fill = 0] 9009f8a0 00000024 : sciclient.obj (.text.CSL_REG32_FEXT_RAW) 9009f8c4 0000000c --HOLE-- [fill = 0] 9009f8d0 00000024 : sciclient_rm_irq.obj (.text.CSL_REG32_FEXT_RAW) 9009f8f4 0000000c --HOLE-- [fill = 0] 9009f900 00000024 : spinlock.obj (.text.CSL_REG32_FEXT_RAW) 9009f924 0000000c --HOLE-- [fill = 0] 9009f930 00000024 : udma_ring_lcdma.obj (.text.CSL_REG32_FEXT_RAW) 9009f954 0000000c --HOLE-- [fill = 0] 9009f960 00000024 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpts.obj (.text.CSL_REG32_FEXT_RAW) 9009f984 0000000c --HOLE-- [fill = 0] 9009f990 00000024 : enet_apputils_k3.obj (.text.CSL_REG32_FEXT_RAW) 9009f9b4 0000000c --HOLE-- [fill = 0] 9009f9c0 00000024 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_lcdma_ringacc.obj (.text.CSL_lcdma_ringaccSetForwardDoorbell) 9009f9e4 0000000c --HOLE-- [fill = 0] 9009f9f0 00000024 : udma_utils.obj (.text.CSL_udmapCppi5TrSetReload) 9009fa14 0000000c --HOLE-- [fill = 0] 9009fa20 00000024 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_clearSelectedPolicerStats) 9009fa44 0000000c --HOLE-- [fill = 0] 9009fa50 00000024 : cpsw_hostport_ioctl.obj (.text.CpswHostPort_ioctl_handler_CPSW_HOSTPORT_GET_FLOW_ID_OFFSET) 9009fa74 0000000c --HOLE-- [fill = 0] 9009fa80 00000024 : cpsw_hostport_ioctl.obj (.text.CpswHostPort_ioctl_handler_CPSW_HOSTPORT_SET_FLOW_ID_OFFSET) 9009faa4 0000000c --HOLE-- [fill = 0] 9009fab0 00000024 : cpsw_hostport.obj (.text.CpswHostPort_rejoin) 9009fad4 0000000c --HOLE-- [fill = 0] 9009fae0 00000024 : cpsw_macport.obj (.text.CpswMacPort_rejoin) 9009fb04 0000000c --HOLE-- [fill = 0] 9009fb10 00000024 ti_enet_open_close.o (.text.EnetApp_initHostPortConfig) 9009fb34 0000000c --HOLE-- [fill = 0] 9009fb40 00000024 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.text.EnetPhy_isNwayCapable) 9009fb64 0000000c --HOLE-- [fill = 0] 9009fb70 00000024 : enet_rm_ioctl.obj (.text.EnetRm_ioctl_handler_ENET_RM_IOCTL_DETACH) 9009fb94 0000000c --HOLE-- [fill = 0] 9009fba0 00000024 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_sys.obj (.text.FF_FS_Init) 9009fbc4 0000000c --HOLE-- [fill = 0] 9009fbd0 00000024 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_Transaction_init) 9009fbf4 0000000c --HOLE-- [fill = 0] 9009fc00 00000024 : i2c_v0.obj (.text.I2C_transferCallback) 9009fc24 0000000c --HOLE-- [fill = 0] 9009fc30 00000024 ti_drivers_config.o (.text.IpcNotify_getConfig) 9009fc54 0000000c --HOLE-- [fill = 0] 9009fc60 00000024 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2lwipif.obj (.text.LWIPIF_LWIP_getIpPktStart) 9009fc84 0000000c --HOLE-- [fill = 0] 9009fc90 00000024 : lwip2enet.obj (.text.Lwip2Enet_decrementRxRefCount) 9009fcb4 0000000c --HOLE-- [fill = 0] 9009fcc0 00000024 : lwip2enet.obj (.text.Lwip2Enet_decrementTxRefCount) 9009fce4 0000000c --HOLE-- [fill = 0] 9009fcf0 00000024 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_halErrorIntrStatusClear) 9009fd14 0000000c --HOLE-- [fill = 0] 9009fd20 00000024 : mmcsd_v0.obj (.text.MMCSD_halIsCardInserted) 9009fd44 0000000c --HOLE-- [fill = 0] 9009fd50 00000024 : mmcsd_v0.obj (.text.MMCSD_halNormalIntrStatusClear) 9009fd74 0000000c --HOLE-- [fill = 0] 9009fd80 00000024 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_manual_ioctl.obj (.text.Mdio_manualModeToggleMdclk) 9009fda4 0000000c --HOLE-- [fill = 0] 9009fdb0 00000024 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_Transaction_init) 9009fdd4 0000000c --HOLE-- [fill = 0] 9009fde0 00000024 : soc.obj (.text.SOC_getSelfCpuClk) 9009fe04 0000000c --HOLE-- [fill = 0] 9009fe10 00000024 nortos.am64x.r5f.ti-arm-clang.debug.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_constructMutex) 9009fe34 0000000c --HOLE-- [fill = 0] 9009fe40 00000024 : printf.obj (.text._out_char) 9009fe64 0000000c --HOLE-- [fill = 0] 9009fe70 00000024 : boot_armv7r.obj (.text._system_pre_init) 9009fe94 0000000c --HOLE-- [fill = 0] 9009fea0 00000024 httpd.o (.text.http_err) 9009fec4 0000000c --HOLE-- [fill = 0] 9009fed0 00000024 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : netif.obj (.text.netif_do_ip_addr_changed) 9009fef4 0000000c --HOLE-- [fill = 0] 9009ff00 00000024 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.text.pbufQ_init) 9009ff24 0000000c --HOLE-- [fill = 0] 9009ff30 00000024 httpd_cgi_sii.o (.text.sii_ownname) 9009ff54 0000000c --HOLE-- [fill = 0] 9009ff60 00000024 httpd_cgi_sii.o (.text.sii_pageurl) 9009ff84 00000024 libc.a : strcmp.c.obj (.text.strcmp) 9009ffa8 00000008 --HOLE-- [fill = 0] 9009ffb0 00000024 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_segs_free) 9009ffd4 00000024 libclang_rt.builtins.a : aeabi_uldivmod.S.obj (.text) 9009fff8 00000008 --HOLE-- [fill = 0] 900a0000 00000022 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getAleStatusVlanMask) 900a0022 0000000e --HOLE-- [fill = 0] 900a0030 00000022 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_lcdma_ringacc.obj (.text.CSL_lcdma_ringaccInitRingObj) 900a0052 0000000e --HOLE-- [fill = 0] 900a0060 00000022 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_cpts.obj (.text.CpswCpts_initCfg) 900a0082 0000000e --HOLE-- [fill = 0] 900a0090 00000022 : cpsw_hostport_ioctl.obj (.text.CpswHostPort_ioctl_handler_ENET_HOSTPORT_IOCTL_GET_MAXLEN) 900a00b2 0000000e --HOLE-- [fill = 0] 900a00c0 00000022 ti_enet_config.o (.text.EnetApp_getEnetInstMacInfo) 900a00e2 0000000e --HOLE-- [fill = 0] 900a00f0 00000022 ti_enet_open_close.o (.text.EnetApp_initEnetLinkCbPrms) 900a0112 0000000e --HOLE-- [fill = 0] 900a0120 00000022 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_hostport.obj (.text.EnetHostPortDma_closeRsvdFlow) 900a0142 0000000e --HOLE-- [fill = 0] 900a0150 00000022 : enet_queue.obj (.text.EnetQueue_initQ) 900a0172 0000000e --HOLE-- [fill = 0] 900a0180 00000022 : enet_utils.obj (.text.EnetUtils_min) 900a01a2 0000000e --HOLE-- [fill = 0] 900a01b0 00000022 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_mailboxGetNumMsg) 900a01d2 0000000e --HOLE-- [fill = 0] 900a01e0 00000022 : ipc_notify_v0.obj (.text.IpcNotify_mailboxIsFull) 900a0202 0000000e --HOLE-- [fill = 0] 900a0210 00000022 : ipc_notify_v0.obj (.text.IpcNotify_mailboxWrite) 900a0232 0000000e --HOLE-- [fill = 0] 900a0240 00000022 : lpddr4.obj (.text.LPDDR4_SanityFunction3) 900a0262 0000000e --HOLE-- [fill = 0] 900a0270 00000022 : mmcsd_v0.obj (.text.MMCSD_phyDisableDLL) 900a0292 0000000e --HOLE-- [fill = 0] 900a02a0 00000022 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio_ioctl.obj (.text.Mdio_ioctl_handler_MDIO_IOCTL_HANDLE_INTR) 900a02c2 0000000e --HOLE-- [fill = 0] 900a02d0 00000022 : mdio.obj (.text.Mdio_setupStatusChangeMode) 900a02f2 0000000e --HOLE-- [fill = 0] 900a0300 00000022 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_getFlashDataBaseAddr) 900a0322 0000000e --HOLE-- [fill = 0] 900a0330 00000022 : uart_v0.obj (.text.UART_writeInterrupt) 900a0352 0000000e --HOLE-- [fill = 0] 900a0360 00000022 : udma_ring_common.obj (.text.Udma_ringGetMode) 900a0382 0000000e --HOLE-- [fill = 0] 900a0390 00000022 : udma_ring_common.obj (.text.Udma_ringPrimeRead) 900a03b2 0000000e --HOLE-- [fill = 0] 900a03c0 00000022 : udma_ring_common.obj (.text.Udma_ringSetDoorBell) 900a03e2 0000000e --HOLE-- [fill = 0] 900a03f0 00000022 : udma_rm.obj (.text.Udma_rmTranslateCoreIntrInput) 900a0412 0000000e --HOLE-- [fill = 0] 900a0420 00000022 : udma_rm.obj (.text.Udma_rmTranslateIrOutput) 900a0442 0000000e --HOLE-- [fill = 0] 900a0450 00000022 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp.obj (.text.altcp_alloc) 900a0472 0000000e --HOLE-- [fill = 0] 900a0480 00000022 : netif.obj (.text.netif_set_default) 900a04a2 0000000e --HOLE-- [fill = 0] 900a04b0 00000022 httpd_cgi_sii.o (.text.ssi_u16_to_str) 900a04d2 0000000e --HOLE-- [fill = 0] 900a04e0 00000022 httpd_cgi_sii.o (.text.ssi_u32_to_str) 900a0502 0000000e --HOLE-- [fill = 0] 900a0510 00000022 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_free_ooseq) 900a0532 0000000e --HOLE-- [fill = 0] 900a0540 00000022 : tcp.obj (.text.tcp_tmr) 900a0562 0000000e --HOLE-- [fill = 0] 900a0570 00000022 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_format.obj (.text.ulMin32) 900a0592 0000000e --HOLE-- [fill = 0] 900a05a0 00000020 drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_uniflash.obj (.text.Bootloader_uniflashFlashXipFile) 900a05c0 00000020 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_disableCutThru) 900a05e0 00000020 : csl_cpsw.obj (.text.CSL_CPSW_enableCutThru) 900a0600 00000020 : csl_mdio.obj (.text.CSL_MDIO_enableLinkStatusChangeInterrupt) 900a0620 00000020 : csl_mdio.obj (.text.CSL_MDIO_enableManualMode) 900a0640 00000020 : csl_mdio.obj (.text.CSL_MDIO_setClkDivVal) 900a0660 00000020 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_isActive) 900a0680 00000020 : ClockP_nortos.obj (.text.ClockP_usecToTicks) 900a06a0 00000020 ti_enet_open_close.o (.text.EnetApp_driverInit) 900a06c0 00000020 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_utils.obj (.text.EnetUtils_deinit) 900a06e0 00000020 : enet_utils.obj (.text.EnetUtils_physToVirt) 900a0700 00000020 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.HW_RD_FIELD32_RAW) 900a0720 00000020 : uart_v0.obj (.text.HW_RD_FIELD32_RAW) 900a0740 00000020 ti_enet_lwipif.o (.text.LwipifEnetAppCb_getRxMode) 900a0760 00000020 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_setCmdExtType) 900a0780 00000020 : ospi_v0.obj (.text.OSPI_setPhyEnableSuccess) 900a07a0 00000020 ti_pinmux_config.o (.text.Pinmux_init) 900a07c0 00000020 libc.a : assert.c.obj (.text._abort_msg) 900a07e0 00000020 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : etharp.obj (.text.etharp_request) 900a0800 00000020 httpd.o (.text.http_state_alloc) 900a0820 00000020 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : def.obj (.text.lwip_htonl) 900a0840 00000020 : lwiperf.obj (.text.lwiperf_start_tcp_server_default) 900a0860 00000020 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.text.mempQ_malloc) 900a0880 00000020 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_skip) 900a08a0 00000020 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_stdio.obj (.text.stdioSET_FF_ERROR) 900a08c0 00000020 libc.a : wcslen.c.obj (.text.wcslen) 900a08e0 0000001e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_mdio.obj (.text.CSL_MDIO_disableLinkStatusChangeInterrupt) 900a08fe 00000002 --HOLE-- [fill = 0] 900a0900 0000001e : csl_mdio.obj (.text.CSL_MDIO_setPollIPG) 900a091e 00000002 --HOLE-- [fill = 0] 900a0920 0000001e : enet_udma_priv.obj (.text.CSL_udmapCppi5SetEpiDataPresent) 900a093e 00000002 --HOLE-- [fill = 0] 900a0940 0000001e nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_Params_init) 900a095e 00000002 --HOLE-- [fill = 0] 900a0960 0000001e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_getVlanMcastPortMask) 900a097e 00000002 --HOLE-- [fill = 0] 900a0980 0000001e : cpsw_ale.obj (.text.CpswAle_setAlePortState) 900a099e 00000002 --HOLE-- [fill = 0] 900a09a0 0000001e : enet_osal.obj (.text.EnetOsal_timerGetDiff) 900a09be 00000002 --HOLE-- [fill = 0] 900a09c0 0000001e freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_InitFATBuffers) 900a09de 00000002 --HOLE-- [fill = 0] 900a09e0 0000001e : ff_fat.obj (.text.FF_InitFATBuffers) 900a09fe 00000002 --HOLE-- [fill = 0] 900a0a00 0000001e : ff_file.obj (.text.FF_InitFATBuffers) 900a0a1e 00000002 --HOLE-- [fill = 0] 900a0a20 0000001e drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_mailboxRead) 900a0a3e 00000002 --HOLE-- [fill = 0] 900a0a40 0000001e : sciclient_rm_irq.obj (.text.Sciclient_rmPsGetIrqNode) 900a0a5e 00000002 --HOLE-- [fill = 0] 900a0a60 0000001e : sciclient_rm_irq.obj (.text.Sciclient_rmPsInit) 900a0a7e 00000002 --HOLE-- [fill = 0] 900a0a80 0000001e : uart_v0.obj (.text.UART_breakCtl) 900a0a9e 00000002 --HOLE-- [fill = 0] 900a0aa0 0000001e : udma_rmcfg_common.obj (.text.Udma_getCoreSciDevId) 900a0abe 00000002 --HOLE-- [fill = 0] 900a0ac0 0000001e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : autoip.obj (.text.autoip_restart) 900a0ade 00000002 --HOLE-- [fill = 0] 900a0ae0 0000001e httpd.o (.text.http_state_free) 900a0afe 00000002 --HOLE-- [fill = 0] 900a0b00 0000001e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : inet_chksum.obj (.text.inet_chksum) 900a0b1e 00000002 --HOLE-- [fill = 0] 900a0b20 0000001e : pbuf.obj (.text.pbuf_chain) 900a0b3e 00000002 --HOLE-- [fill = 0] 900a0b40 0000001c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpgmac_sl.obj (.text.CSL_CPGMAC_SL_isGMIIEnabled) 900a0b5c 00000004 --HOLE-- [fill = 0] 900a0b60 0000001c : csl_cpgmac_sl.obj (.text.CSL_CPGMAC_SL_setMacControlReg) 900a0b7c 00000004 --HOLE-- [fill = 0] 900a0b80 0000001c : csl_cpsw.obj (.text.CSL_CPSW_getAleIPv6HighEntryIndex) 900a0b9c 00000004 --HOLE-- [fill = 0] 900a0ba0 0000001c : csl_cpsw.obj (.text.CSL_CPSW_setAleUnknwnVlanMemberReg) 900a0bbc 00000004 --HOLE-- [fill = 0] 900a0bc0 0000001c : csl_cpsw.obj (.text.CSL_CPSW_setAleUnknwnVlanRegMcastReg) 900a0bdc 00000004 --HOLE-- [fill = 0] 900a0be0 0000001c : csl_cpsw.obj (.text.CSL_CPSW_setAleUnknwnVlanUnregMcastReg) 900a0bfc 00000004 --HOLE-- [fill = 0] 900a0c00 0000001c : csl_cpsw.obj (.text.CSL_CPSW_setAleUnknwnVlanUntagReg) 900a0c1c 00000004 --HOLE-- [fill = 0] 900a0c20 0000001c : csl_cpsw.obj (.text.CSL_CPSW_setPort0FlowIdOffset) 900a0c3c 00000004 --HOLE-- [fill = 0] 900a0c40 0000001c : csl_cpsw.obj (.text.CSL_CPSW_setPort0RxMaxLen) 900a0c5c 00000004 --HOLE-- [fill = 0] 900a0c60 0000001c drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_lcdma_ringacc.obj (.text.CSL_lcdma_ringaccGetNewElCnt) 900a0c7c 00000004 --HOLE-- [fill = 0] 900a0c80 0000001c : csl_sec_proxy.obj (.text.CSL_secProxyGetDataAddr) 900a0c9c 00000004 --HOLE-- [fill = 0] 900a0ca0 0000001c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.CpswAle_validateVlanPolicer) 900a0cbc 00000004 --HOLE-- [fill = 0] 900a0cc0 0000001c : dp83867.obj (.text.Dp83867_setDspFFE) 900a0cdc 00000004 --HOLE-- [fill = 0] 900a0ce0 0000001c ti_drivers_open_close.o (.text.Drivers_open) 900a0cfc 00000004 --HOLE-- [fill = 0] 900a0d00 0000001c ti_enet_open_close.o (.text.EnetApp_initMdioConfig) 900a0d1c 00000004 --HOLE-- [fill = 0] 900a0d20 0000001c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale_ioctl.obj (.text.EnetUtils_cmpMacAddr) 900a0d3c 00000004 --HOLE-- [fill = 0] 900a0d40 0000001c : enet_utils.obj (.text.EnetUtils_virtToPhys) 900a0d5c 00000004 --HOLE-- [fill = 0] 900a0d60 0000001c drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_udelay) 900a0d7c 00000004 --HOLE-- [fill = 0] 900a0d80 0000001c : ospi_phy.obj (.text.OSPI_phyGetTuningData) 900a0d9c 00000004 --HOLE-- [fill = 0] 900a0da0 0000001c IPC.lib : terminal.o (.text.TERMINAL_vPrintCommandPrompt) 900a0dbc 00000004 --HOLE-- [fill = 0] 900a0dc0 0000001c : pec_queue.o (.text.pec_get_queue_len) 900a0ddc 00000004 --HOLE-- [fill = 0] 900a0de0 0000001c freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_stdio.obj (.text.stdioSET_ERRNO) 900a0dfc 0000001c libc.a : strcpy.c.obj (.text.strcpy) 900a0e18 0000001c : _printfi.c.obj (.text.strlen) 900a0e34 0000001c : aeabi_portable.c.obj (.text.strlen) 900a0e50 0000001c : strlen.c.obj (.text.strlen) 900a0e6c 0000001c libsysbm.a : hostrename.c.obj (.text.strlen) 900a0e88 0000001c : memcpy32.S.obj (.text:TI_memcpy_small) 900a0ea4 0000001c libclang_rt.builtins.a : aeabi_memset.S.obj (.text) 900a0ec0 0000001a drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4_16bit.obj (.text.CPS_FldRead) 900a0eda 00000006 --HOLE-- [fill = 0] 900a0ee0 0000001a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpts.obj (.text.CSL_CPTS_setRFTCLKSelectReg) 900a0efa 00000006 --HOLE-- [fill = 0] 900a0f00 0000001a : csl_mdio.obj (.text.CSL_MDIO_clearUnmaskedLinkStatusChangeInt) 900a0f1a 00000006 --HOLE-- [fill = 0] 900a0f20 0000001a : csl_mdio.obj (.text.CSL_MDIO_getLinkStatusChangePhyAddr) 900a0f3a 00000006 --HOLE-- [fill = 0] 900a0f40 0000001a : enet_udma_priv.obj (.text.CSL_udmapCppi5IsEpiDataPresent) 900a0f5a 00000006 --HOLE-- [fill = 0] 900a0f60 0000001a drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_utils.obj (.text.CSL_udmapCppi5SetDescType) 900a0f7a 00000006 --HOLE-- [fill = 0] 900a0f80 0000001a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.CSL_udmapCppi5SetDescType) 900a0f9a 00000006 --HOLE-- [fill = 0] 900a0fa0 0000001a : enet_udma_priv.obj (.text.CSL_udmapCppi5SetPsDataLen) 900a0fba 00000006 --HOLE-- [fill = 0] 900a0fc0 0000001a : cpsw_ale_ioctl.obj (.text.CpswAle_maskIPv4AddrRegWord) 900a0fda 00000006 --HOLE-- [fill = 0] 900a0fe0 0000001a : cpsw_cpts_ioctl.obj (.text.CpswCpts_ioctl_handler_CPSW_CPTS_IOCTL_DISABLE_INTR) 900a0ffa 00000006 --HOLE-- [fill = 0] 900a1000 0000001a : cpsw_cpts_ioctl.obj (.text.CpswCpts_ioctl_handler_CPSW_CPTS_IOCTL_ENABLE_INTR) 900a101a 00000006 --HOLE-- [fill = 0] 900a1020 0000001a : cpsw_hostport_ioctl.obj (.text.CpswHostPort_ioctl_handler_ENET_HOSTPORT_IOCTL_DISABLE) 900a103a 00000006 --HOLE-- [fill = 0] 900a1040 0000001a : cpsw_hostport_ioctl.obj (.text.CpswHostPort_ioctl_handler_ENET_HOSTPORT_IOCTL_ENABLE) 900a105a 00000006 --HOLE-- [fill = 0] 900a1060 0000001a : cpsw.obj (.text.Cpsw_internalIoctl_handler_ENET_PER_IOCTL_REGISTER_IOCTL_HANDLER) 900a107a 00000006 --HOLE-- [fill = 0] 900a1080 0000001a : cpsw.obj (.text.Cpsw_isPortLinkUp) 900a109a 00000006 --HOLE-- [fill = 0] 900a10a0 0000001a : dp83867.obj (.text.Dp83867_setVtmIdleThresh) 900a10ba 00000006 --HOLE-- [fill = 0] 900a10c0 0000001a ti_enet_open_close.o (.text.EnetApp_initAleConfig) 900a10da 00000006 --HOLE-- [fill = 0] 900a10e0 0000001a ti_enet_open_close.o (.text.EnetApp_initCptsConfig) 900a10fa 00000006 --HOLE-- [fill = 0] 900a1100 0000001a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_lockMutex) 900a111a 00000006 --HOLE-- [fill = 0] 900a1120 0000001a drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2CControllerControl) 900a113a 00000006 --HOLE-- [fill = 0] 900a1140 0000001a : i2c_v0.obj (.text.I2CControllerDataGet) 900a115a 00000006 --HOLE-- [fill = 0] 900a1160 0000001a : i2c_v0.obj (.text.I2CControllerDataPut) 900a117a 00000006 --HOLE-- [fill = 0] 900a1180 0000001a : i2c_v0.obj (.text.I2CControllerDisable) 900a119a 00000006 --HOLE-- [fill = 0] 900a11a0 0000001a : i2c_v0.obj (.text.I2CControllerEnable) 900a11ba 00000006 --HOLE-- [fill = 0] 900a11c0 0000001a : i2c_v0.obj (.text.I2CControllerEnableFreeRun) 900a11da 00000006 --HOLE-- [fill = 0] 900a11e0 0000001a : i2c_v0.obj (.text.I2CTargetDataGet) 900a11fa 00000006 --HOLE-- [fill = 0] 900a1200 0000001a : i2c_v0.obj (.text.I2C_Params_init) 900a121a 00000006 --HOLE-- [fill = 0] 900a1220 0000001a : ipc_notify_v0.obj (.text.IpcNotify_makeMsg) 900a123a 00000006 --HOLE-- [fill = 0] 900a1240 0000001a : lpddr4.obj (.text.LPDDR4_AddOffset) 900a125a 00000006 --HOLE-- [fill = 0] 900a1260 0000001a : lpddr4.obj (.text.LPDDR4_ConfigSF) 900a127a 00000006 --HOLE-- [fill = 0] 900a1280 0000001a : lpddr4.obj (.text.LPDDR4_PrivateDataSF) 900a129a 00000006 --HOLE-- [fill = 0] 900a12a0 0000001a lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_setRxNotifyCallback) 900a12ba 00000006 --HOLE-- [fill = 0] 900a12c0 0000001a : lwip2enet.obj (.text.Lwip2Enet_setTxNotifyCallback) 900a12da 00000006 --HOLE-- [fill = 0] 900a12e0 0000001a drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_v0.obj (.text.OSPI_isPhyEnable) 900a12fa 00000006 --HOLE-- [fill = 0] 900a1300 0000001a IPC.lib : termcom_common.o (.text.TERMCOM_vInit) 900a131a 00000006 --HOLE-- [fill = 0] 900a1320 0000001a : terminal.o (.text.TERMINAL_vPrintInvalidCommand) 900a133a 00000006 --HOLE-- [fill = 0] 900a1340 0000001a : terminal.o (.text.TERMINAL_vPrintInvalidCommandOption) 900a135a 00000006 --HOLE-- [fill = 0] 900a1360 0000001a drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_fifoCharGet) 900a137a 00000006 --HOLE-- [fill = 0] 900a1380 0000001a lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : custom_pbuf.obj (.text.custom_pbuf_init) 900a139a 00000006 --HOLE-- [fill = 0] 900a13a0 0000001a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_addr.obj (.text.ip4addr_ntoa) 900a13ba 00000006 --HOLE-- [fill = 0] 900a13c0 0000001a : lwiperf.obj (.text.lwiperf_list_add) 900a13da 00000006 --HOLE-- [fill = 0] 900a13e0 0000001a : lwiperf.obj (.text.lwiperf_tcp_err) 900a13fa 00000006 --HOLE-- [fill = 0] 900a1400 0000001a : pbuf.obj (.text.pbuf_header_force) 900a141a 00000006 --HOLE-- [fill = 0] 900a1420 0000001a : tcp.obj (.text.tcp_listen_with_backlog) 900a143a 00000006 --HOLE-- [fill = 0] 900a1440 00000018 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpgmac_sl.obj (.text.CSL_CPGMAC_SL_getMacControlReg) 900a1458 00000008 --HOLE-- [fill = 0] 900a1460 00000018 : csl_cpsw.obj (.text.CSL_CPSW_setAlePrescaleReg) 900a1478 00000008 --HOLE-- [fill = 0] 900a1480 00000018 : csl_cpsw.obj (.text.CSL_CPSW_setCpswFrequency) 900a1498 00000008 --HOLE-- [fill = 0] 900a14a0 00000018 : csl_cpsw.obj (.text.CSL_CPSW_setVlanType) 900a14b8 00000008 --HOLE-- [fill = 0] 900a14c0 00000018 : csl_cpts.obj (.text.CSL_CPTS_disableCpts) 900a14d8 00000008 --HOLE-- [fill = 0] 900a14e0 00000018 : csl_cpts.obj (.text.CSL_CPTS_disableInterrupt) 900a14f8 00000008 --HOLE-- [fill = 0] 900a1500 00000018 : csl_cpts.obj (.text.CSL_CPTS_enableCpts) 900a1518 00000008 --HOLE-- [fill = 0] 900a1520 00000018 : csl_cpts.obj (.text.CSL_CPTS_enableInterrupt) 900a1538 00000008 --HOLE-- [fill = 0] 900a1540 00000018 : csl_cpts.obj (.text.CSL_CPTS_popEvent) 900a1558 00000008 --HOLE-- [fill = 0] 900a1560 00000018 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_ticksToUsec) 900a1578 00000008 --HOLE-- [fill = 0] 900a1580 00000018 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : dp83867.obj (.text.Dp83867_reset) 900a1598 00000008 --HOLE-- [fill = 0] 900a15a0 00000018 : dp83867.obj (.text.Dp83867_restart) 900a15b8 00000008 --HOLE-- [fill = 0] 900a15c0 00000018 ti_enet_config.o (.text.EnetApp_releaseHandleInfo) 900a15d8 00000008 --HOLE-- [fill = 0] 900a15e0 00000018 cpsw_custom_phy.o (.text.EnetBoard_getMiiConfig) 900a15f8 00000008 --HOLE-- [fill = 0] 900a1600 00000018 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal.obj (.text.EnetOsal_deleteMutex) 900a1618 00000008 --HOLE-- [fill = 0] 900a1620 00000018 : enet_osal.obj (.text.EnetOsal_lockMutex) 900a1638 00000008 --HOLE-- [fill = 0] 900a1640 00000018 : enet_osal.obj (.text.EnetOsal_restoreAllIntr) 900a1658 00000008 --HOLE-- [fill = 0] 900a1660 00000018 : enet_osal.obj (.text.EnetOsal_unlockMutex) 900a1678 00000008 --HOLE-- [fill = 0] 900a1680 00000018 : enet_osal.obj (.text.EnetOsal_unregisterIntr) 900a1698 00000008 --HOLE-- [fill = 0] 900a16a0 00000018 : enet_udma_priv.obj (.text.EnetUdma_unregisterEvent) 900a16b8 00000008 --HOLE-- [fill = 0] 900a16c0 00000018 : generic_phy.obj (.text.GenericPhy_reset) 900a16d8 00000008 --HOLE-- [fill = 0] 900a16e0 00000018 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2CAutoIdleDisable) 900a16f8 00000008 --HOLE-- [fill = 0] 900a1700 00000018 : i2c_v0.obj (.text.I2CControllerIntRawStatusEx) 900a1718 00000008 --HOLE-- [fill = 0] 900a1720 00000018 : i2c_v0.obj (.text.I2CControllerStart) 900a1738 00000008 --HOLE-- [fill = 0] 900a1740 00000018 : i2c_v0.obj (.text.I2CControllerStop) 900a1758 00000008 --HOLE-- [fill = 0] 900a1760 00000018 : i2c_v0.obj (.text.I2CSoftReset) 900a1778 00000008 --HOLE-- [fill = 0] 900a1780 00000018 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2lwipif.obj (.text.LWIPIF_LWIP_stop) 900a1798 00000008 --HOLE-- [fill = 0] 900a17a0 00000018 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm.obj (.text.Sciclient_rmIrqSet) 900a17b8 00000008 --HOLE-- [fill = 0] 900a17c0 00000018 : sciclient.obj (.text.Sciclient_secProxyThreadStatusReg) 900a17d8 00000008 --HOLE-- [fill = 0] 900a17e0 00000018 nortos.am64x.r5f.ti-arm-clang.debug.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_Params_init) 900a17f8 00000008 --HOLE-- [fill = 0] 900a1800 00000018 : TimerP.obj (.text.TimerP_start) 900a1818 00000008 --HOLE-- [fill = 0] 900a1820 00000018 : TimerP.obj (.text.TimerP_stop) 900a1838 00000008 --HOLE-- [fill = 0] 900a1840 00000018 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_divisorLatchDisable) 900a1858 00000008 --HOLE-- [fill = 0] 900a1860 00000018 : uart_v0.obj (.text.UART_modemControlReset) 900a1878 00000008 --HOLE-- [fill = 0] 900a1880 00000018 : uart_v0.obj (.text.UART_putChar) 900a1898 00000008 --HOLE-- [fill = 0] 900a18a0 00000018 : ospi_dma_udma.obj (.text.UdmaUtils_getTrpdTr15Pointer) 900a18b8 00000008 --HOLE-- [fill = 0] 900a18c0 00000018 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : altcp.obj (.text.altcp_accept) 900a18d8 00000008 --HOLE-- [fill = 0] 900a18e0 00000018 : altcp.obj (.text.altcp_arg) 900a18f8 00000008 --HOLE-- [fill = 0] 900a1900 00000018 : altcp.obj (.text.altcp_err) 900a1918 00000008 --HOLE-- [fill = 0] 900a1920 00000018 : altcp.obj (.text.altcp_recv) 900a1938 00000008 --HOLE-- [fill = 0] 900a1940 00000018 : altcp.obj (.text.altcp_sent) 900a1958 00000008 --HOLE-- [fill = 0] 900a1960 00000018 : autoip.obj (.text.autoip_arp_probe) 900a1978 00000008 --HOLE-- [fill = 0] 900a1980 00000018 httpd.o (.text.http_ssi_state_free) 900a1998 00000008 --HOLE-- [fill = 0] 900a19a0 00000018 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : netif.obj (.text.netif_set_link_callback) 900a19b8 00000008 --HOLE-- [fill = 0] 900a19c0 00000018 : netif.obj (.text.netif_set_status_callback) 900a19d8 00000008 --HOLE-- [fill = 0] 900a19e0 00000018 httpd_cgi_sii.o (.text.saf_fwpage_save) 900a19f8 00000008 --HOLE-- [fill = 0] 900a1a00 00000018 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.text.tcp_arg) 900a1a18 00000008 --HOLE-- [fill = 0] 900a1a20 00000018 lwip-contrib-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcpecho_raw.obj (.text.tcpecho_raw_error) 900a1a38 00000008 --HOLE-- [fill = 0] 900a1a40 00000018 termserver.o (.text.termd_conn_err) 900a1a58 00000018 libsysbm.a : memset32.S.obj (.text:TI_memset_small) 900a1a70 00000016 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw_ale_9g_tblcfg.obj (.text.CSL_CPSW_initAleTblWds) 900a1a86 0000000a --HOLE-- [fill = 0] 900a1a90 00000016 : csl_cpts.obj (.text.CSL_CPTS_isRawInterruptStatusBitSet) 900a1aa6 0000000a --HOLE-- [fill = 0] 900a1ab0 00000016 : csl_mdio.obj (.text.CSL_MDIO_isPhyAlive) 900a1ac6 0000000a --HOLE-- [fill = 0] 900a1ad0 00000016 : csl_mdio.obj (.text.CSL_MDIO_isPhyLinked) 900a1ae6 0000000a --HOLE-- [fill = 0] 900a1af0 00000016 : csl_mdio.obj (.text.CSL_MDIO_isUnmaskedLinkStatusChangeIntSet) 900a1b06 0000000a --HOLE-- [fill = 0] 900a1b10 00000016 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_intaggr.obj (.text.CSL_REG64_WR_RAW) 900a1b26 0000000a --HOLE-- [fill = 0] 900a1b30 00000016 : mmcsd_v0.obj (.text.CSL_REG64_WR_RAW) 900a1b46 0000000a --HOLE-- [fill = 0] 900a1b50 00000016 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.CSL_udmapCppi5HostSetPktLen) 900a1b66 0000000a --HOLE-- [fill = 0] 900a1b70 00000016 : enet_udma_priv.obj (.text.CSL_udmapCppi5LinkDesc) 900a1b86 0000000a --HOLE-- [fill = 0] 900a1b90 00000016 : enet_udma_priv.obj (.text.CSL_udmapCppi5SetBufferAddr) 900a1ba6 0000000a --HOLE-- [fill = 0] 900a1bb0 00000016 : enet_udma_priv.obj (.text.CSL_udmapCppi5SetBufferLen) 900a1bc6 0000000a --HOLE-- [fill = 0] 900a1bd0 00000016 : enet_udma_priv.obj (.text.CSL_udmapCppi5SetOrgBufferAddr) 900a1be6 0000000a --HOLE-- [fill = 0] 900a1bf0 00000016 : enet_udma_priv.obj (.text.CSL_udmapCppi5SetPsDataLoc) 900a1c06 0000000a --HOLE-- [fill = 0] 900a1c10 00000016 : enet_udma_priv.obj (.text.CSL_udmapCppi5SetPsFlags) 900a1c26 0000000a --HOLE-- [fill = 0] 900a1c30 00000016 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_utils.obj (.text.CSL_udmapCppi5TrSetEntryStride) 900a1c46 0000000a --HOLE-- [fill = 0] 900a1c50 00000016 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_cpts.obj (.text.CpswCpts_close) 900a1c66 0000000a --HOLE-- [fill = 0] 900a1c70 00000016 ti_enet_open_close.o (.text.EnetApp_getUdmaInstanceHandle) 900a1c86 0000000a --HOLE-- [fill = 0] 900a1c90 00000016 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.text.EnetMod_isOpen) 900a1ca6 0000000a --HOLE-- [fill = 0] 900a1cb0 00000016 : cpsw_ioctl.obj (.text.EnetMod_isOpen) 900a1cc6 0000000a --HOLE-- [fill = 0] 900a1cd0 00000016 : enet_phymdio_dflt.obj (.text.EnetMod_isOpen) 900a1ce6 0000000a --HOLE-- [fill = 0] 900a1cf0 00000016 : enet_osal_dflt.obj (.text.EnetOsalDflt_cacheInv) 900a1d06 0000000a --HOLE-- [fill = 0] 900a1d10 00000016 : enet_osal_dflt.obj (.text.EnetOsalDflt_cacheWb) 900a1d26 0000000a --HOLE-- [fill = 0] 900a1d30 00000016 : enet_osal_dflt.obj (.text.EnetOsalDflt_cacheWbInv) 900a1d46 0000000a --HOLE-- [fill = 0] 900a1d50 00000016 : enet_osal_dflt.obj (.text.EnetOsalDflt_unlockMutex) 900a1d66 0000000a --HOLE-- [fill = 0] 900a1d70 00000016 : enet_udma_priv.obj (.text.EnetUdma_dmaDescQInit) 900a1d86 0000000a --HOLE-- [fill = 0] 900a1d90 00000016 : enet_utils_dflt.obj (.text.EnetUtilsDflt_physToVirtDflt) 900a1da6 0000000a --HOLE-- [fill = 0] 900a1db0 00000016 : cpsw_ale_ioctl.obj (.text.EnetUtils_copyMacAddr) 900a1dc6 0000000a --HOLE-- [fill = 0] 900a1dd0 00000016 : enet_ioctlutils.obj (.text.EnetUtils_copyMacAddr) 900a1de6 0000000a --HOLE-- [fill = 0] 900a1df0 00000016 : enet_udmautils.obj (.text.EnetUtils_copyMacAddr) 900a1e06 0000000a --HOLE-- [fill = 0] 900a1e10 00000016 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.EnetUtils_copyMacAddr) 900a1e26 0000000a --HOLE-- [fill = 0] 900a1e30 00000016 ti_enet_lwipif.o (.text.EnetUtils_copyMacAddr) 900a1e46 0000000a --HOLE-- [fill = 0] 900a1e50 00000016 ti_enet_open_close.o (.text.EnetUtils_copyMacAddr) 900a1e66 0000000a --HOLE-- [fill = 0] 900a1e70 00000016 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2CConfig) 900a1e86 0000000a --HOLE-- [fill = 0] 900a1e90 00000016 : i2c_v0.obj (.text.I2CControllerGetSysTest) 900a1ea6 0000000a --HOLE-- [fill = 0] 900a1eb0 00000016 : i2c_v0.obj (.text.I2CControllerIntClearEx) 900a1ec6 0000000a --HOLE-- [fill = 0] 900a1ed0 00000016 : i2c_v0.obj (.text.I2CControllerIntDisableEx) 900a1ee6 0000000a --HOLE-- [fill = 0] 900a1ef0 00000016 : i2c_v0.obj (.text.I2CControllerSetSysTest) 900a1f06 0000000a --HOLE-- [fill = 0] 900a1f10 00000016 : i2c_v0.obj (.text.I2CControllerTargetAddrSet) 900a1f26 0000000a --HOLE-- [fill = 0] 900a1f30 00000016 : i2c_v0.obj (.text.I2CSetDataCount) 900a1f46 0000000a --HOLE-- [fill = 0] 900a1f50 00000016 : i2c_v0.obj (.text.I2CSyscInit) 900a1f66 0000000a --HOLE-- [fill = 0] 900a1f70 00000016 : i2c_v0.obj (.text.I2CSystemStatusGet) 900a1f86 0000000a --HOLE-- [fill = 0] 900a1f90 00000016 : i2c_v0.obj (.text.I2CTargetIntClearEx) 900a1fa6 0000000a --HOLE-- [fill = 0] 900a1fb0 00000016 : i2c_v0.obj (.text.I2CTargetIntDisableEx) 900a1fc6 0000000a --HOLE-- [fill = 0] 900a1fd0 00000016 : ipc_notify_v0.obj (.text.IpcNotify_sendSync) 900a1fe6 0000000a --HOLE-- [fill = 0] 900a1ff0 00000016 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2lwipif.obj (.text.LWIPIF_LWIP_getDstIp) 900a2006 0000000a --HOLE-- [fill = 0] 900a2010 00000016 : lwip2lwipif.obj (.text.LWIPIF_LWIP_getSrcIp) 900a2026 0000000a --HOLE-- [fill = 0] 900a2030 00000016 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio.obj (.text.Mdio_setupManualMode) 900a2046 0000000a --HOLE-- [fill = 0] 900a2050 00000016 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm.obj (.text.Sciclient_rmIrqRelease) 900a2066 0000000a --HOLE-- [fill = 0] 900a2070 00000016 : sciclient.obj (.text.Sciclient_secProxyReadThreadCount) 900a2086 0000000a --HOLE-- [fill = 0] 900a2090 00000016 IPC.lib : pec_uart_wrapper.o (.text.UARTWRAP_u16Init) 900a20a6 0000000a --HOLE-- [fill = 0] 900a20b0 00000016 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_divideRoundCloset) 900a20c6 0000000a --HOLE-- [fill = 0] 900a20d0 00000016 : uart_v0.obj (.text.UART_regConfModeRestore) 900a20e6 0000000a --HOLE-- [fill = 0] 900a20f0 00000016 xmodem.o (.text.flushinput) 900a2106 0000000a --HOLE-- [fill = 0] 900a2110 00000016 httpd.o (.text.http_close_conn) 900a2126 0000000a --HOLE-- [fill = 0] 900a2130 00000016 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_add_header) 900a2146 0000000a --HOLE-- [fill = 0] 900a2150 00000016 : stats.obj (.text.stats_init) 900a2166 0000000a --HOLE-- [fill = 0] 900a2170 00000016 : tcp.obj (.text.tcp_init) 900a2186 0000000a --HOLE-- [fill = 0] 900a2190 00000016 : tcp.obj (.text.tcp_new_ip_type) 900a21a6 0000000a --HOLE-- [fill = 0] 900a21b0 00000016 : udp.obj (.text.udp_init) 900a21c6 0000000a --HOLE-- [fill = 0] 900a21d0 00000014 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.CPS_RegWrite) 900a21e4 0000000c --HOLE-- [fill = 0] 900a21f0 00000014 : lpddr4_16bit.obj (.text.CPS_RegWrite) 900a2204 0000000c --HOLE-- [fill = 0] 900a2210 00000014 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_clearAleTable) 900a2224 0000000c --HOLE-- [fill = 0] 900a2230 00000014 : csl_cpsw.obj (.text.CSL_CPSW_disableAleVlanAware) 900a2244 0000000c --HOLE-- [fill = 0] 900a2250 00000014 : csl_cpsw.obj (.text.CSL_CPSW_disableP0TxCastagnoliCRC) 900a2264 0000000c --HOLE-- [fill = 0] 900a2270 00000014 : csl_cpsw.obj (.text.CSL_CPSW_disablePort0) 900a2284 0000000c --HOLE-- [fill = 0] 900a2290 00000014 : csl_cpsw.obj (.text.CSL_CPSW_disableVlanAware) 900a22a4 0000000c --HOLE-- [fill = 0] 900a22b0 00000014 : csl_cpsw.obj (.text.CSL_CPSW_enableAleVlanAware) 900a22c4 0000000c --HOLE-- [fill = 0] 900a22d0 00000014 : csl_cpsw.obj (.text.CSL_CPSW_enableP0TxCastagnoliCRC) 900a22e4 0000000c --HOLE-- [fill = 0] 900a22f0 00000014 : csl_cpsw.obj (.text.CSL_CPSW_enablePort0) 900a2304 0000000c --HOLE-- [fill = 0] 900a2310 00000014 : csl_cpsw.obj (.text.CSL_CPSW_enableVlanAware) 900a2324 0000000c --HOLE-- [fill = 0] 900a2330 00000014 : csl_cpsw.obj (.text.CSL_CPSW_getPort0FlowIdOffset) 900a2344 0000000c --HOLE-- [fill = 0] 900a2350 00000014 : csl_cpsw.obj (.text.CSL_CPSW_getPort0RxMaxLen) 900a2364 0000000c --HOLE-- [fill = 0] 900a2370 00000014 : csl_mdio.obj (.text.CSL_MDIO_disableStateChangeMode) 900a2384 0000000c --HOLE-- [fill = 0] 900a2390 00000014 : csl_mdio.obj (.text.CSL_MDIO_disableStateMachine) 900a23a4 0000000c --HOLE-- [fill = 0] 900a23b0 00000014 : csl_mdio.obj (.text.CSL_MDIO_disableStatusChangeModeInterrupt) 900a23c4 0000000c --HOLE-- [fill = 0] 900a23d0 00000014 : csl_mdio.obj (.text.CSL_MDIO_enableStateChangeMode) 900a23e4 0000000c --HOLE-- [fill = 0] 900a23f0 00000014 : csl_mdio.obj (.text.CSL_MDIO_enableStateMachine) 900a2404 0000000c --HOLE-- [fill = 0] 900a2410 00000014 : csl_mdio.obj (.text.CSL_MDIO_enableStatusChangeModeInterrupt) 900a2424 0000000c --HOLE-- [fill = 0] 900a2430 00000014 : csl_mdio.obj (.text.CSL_MDIO_setMdclkHigh) 900a2444 0000000c --HOLE-- [fill = 0] 900a2450 00000014 : csl_mdio.obj (.text.CSL_MDIO_setMdclkLow) 900a2464 0000000c --HOLE-- [fill = 0] 900a2470 00000014 : csl_mdio.obj (.text.CSL_MDIO_setMdoHigh) 900a2484 0000000c --HOLE-- [fill = 0] 900a2490 00000014 : csl_mdio.obj (.text.CSL_MDIO_setMdoInputEnable) 900a24a4 0000000c --HOLE-- [fill = 0] 900a24b0 00000014 : csl_mdio.obj (.text.CSL_MDIO_setMdoLow) 900a24c4 0000000c --HOLE-- [fill = 0] 900a24d0 00000014 : csl_mdio.obj (.text.CSL_MDIO_setMdoOutputEnable) 900a24e4 0000000c --HOLE-- [fill = 0] 900a24f0 00000014 : csl_mdio.obj (.text.CSL_MDIO_setPollEnableMask) 900a2504 0000000c --HOLE-- [fill = 0] 900a2510 00000014 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.CSL_REG16_WR_RAW) 900a2524 0000000c --HOLE-- [fill = 0] 900a2530 00000014 : mmcsd_v0.obj (.text.CSL_REG8_WR_RAW) 900a2544 0000000c --HOLE-- [fill = 0] 900a2550 00000014 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_setTimeout) 900a2564 0000000c --HOLE-- [fill = 0] 900a2570 00000014 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_getMaxAleEntries) 900a2584 0000000c --HOLE-- [fill = 0] 900a2590 00000014 : cpsw_ale.obj (.text.CpswAle_getMaxPolicers) 900a25a4 0000000c --HOLE-- [fill = 0] 900a25b0 00000014 : cpsw.obj (.text.Cpsw_internalIoctl_handler_default) 900a25c4 0000000c --HOLE-- [fill = 0] 900a25d0 00000014 : enet_appmemutils.obj (.text.EnetMem_init) 900a25e4 0000000c --HOLE-- [fill = 0] 900a25f0 00000014 : enet_osal_dflt.obj (.text.EnetOsalDflt_isCacheCoherent) 900a2604 0000000c --HOLE-- [fill = 0] 900a2610 00000014 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_getRealLBA) 900a2624 0000000c --HOLE-- [fill = 0] 900a2630 00000014 : ff_fat.obj (.text.FF_getRealLBA) 900a2644 0000000c --HOLE-- [fill = 0] 900a2650 00000014 : ff_file.obj (.text.FF_getRealLBA) 900a2664 0000000c --HOLE-- [fill = 0] 900a2670 00000014 : ff_dir.obj (.text.FF_isDeleted) 900a2684 0000000c --HOLE-- [fill = 0] 900a2690 00000014 : ff_memory.obj (.text.FF_putChar) 900a26a4 0000000c --HOLE-- [fill = 0] 900a26b0 00000014 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.text.Flash_norOspiClose) 900a26c4 0000000c --HOLE-- [fill = 0] 900a26d0 00000014 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2EnetStats_addNum) 900a26e4 0000000c --HOLE-- [fill = 0] 900a26f0 00000014 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmIrIntControlReg) 900a2704 0000000c --HOLE-- [fill = 0] 900a2710 00000014 : udma_utils.obj (.text.Udma_defaultPhyToVirtFxn) 900a2724 0000000c --HOLE-- [fill = 0] 900a2730 00000014 : udma_rm.obj (.text.Udma_rmAllocFreeRing) 900a2744 00000014 libc.a : sprintf.c.obj (.text._outc) 900a2758 00000008 --HOLE-- [fill = 0] 900a2760 00000014 httpd.o (.text.http_eof) 900a2774 0000000c --HOLE-- [fill = 0] 900a2780 00000014 IPC.lib : pec_queue.o (.text.pec_init_queue) 900a2794 0000000c --HOLE-- [fill = 0] 900a27a0 00000014 ti_dpl_config.o (.text.putchar_) 900a27b4 00000014 libsysbm.a : hostrename.c.obj (.text.strcpy) 900a27c8 00000008 --HOLE-- [fill = 0] 900a27d0 00000014 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : udp.obj (.text.udp_new_ip_type) 900a27e4 0000000c --HOLE-- [fill = 0] 900a27f0 00000012 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.CSL_udmapCppi5GetPsDataLen) 900a2802 0000000e --HOLE-- [fill = 0] 900a2810 00000012 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_utils.obj (.text.CSL_udmapCppi5SetSrcTag) 900a2822 0000000e --HOLE-- [fill = 0] 900a2830 00000012 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.CSL_udmapCppi5SetSrcTag) 900a2842 0000000e --HOLE-- [fill = 0] 900a2850 00000012 : cpsw_ale_ioctl.obj (.text.CpswAle_mapIPv4AddrOctet2RegWord) 900a2862 0000000e --HOLE-- [fill = 0] 900a2870 00000012 ti_enet_open_close.o (.text.EnetApp_phyStateHandler) 900a2882 0000000e --HOLE-- [fill = 0] 900a2890 00000012 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal.obj (.text.EnetOsal_deinit) 900a28a2 0000000e --HOLE-- [fill = 0] 900a28b0 00000012 : enet_rm.obj (.text.EnetRm_ioctl_handler_default) 900a28c2 0000000e --HOLE-- [fill = 0] 900a28d0 00000012 : enet_rm.obj (.text.EnetRm_rejoin) 900a28e2 0000000e --HOLE-- [fill = 0] 900a28f0 00000012 : enet_utils_dflt.obj (.text.EnetUtilsDflt_virtToPhysDflt) 900a2902 0000000e --HOLE-- [fill = 0] 900a2910 00000012 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_dir.obj (.text.FF_isEndOfDir) 900a2922 0000000e --HOLE-- [fill = 0] 900a2930 00000012 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2CControllerIntRawStatus) 900a2942 0000000e --HOLE-- [fill = 0] 900a2950 00000012 : i2c_v0.obj (.text.I2CControllerIntStatus) 900a2962 0000000e --HOLE-- [fill = 0] 900a2970 00000012 : i2c_v0.obj (.text.I2CDataCountGet) 900a2982 0000000e --HOLE-- [fill = 0] 900a2990 00000012 : i2c_v0.obj (.text.I2CTargetIntRawStatus) 900a29a2 0000000e --HOLE-- [fill = 0] 900a29b0 00000012 nortos.am64x.r5f.ti-arm-clang.debug.lib : TimerP.obj (.text.TimerP_getCount) 900a29c2 0000000e --HOLE-- [fill = 0] 900a29d0 00000012 : TimerP.obj (.text.TimerP_getReloadCount) 900a29e2 0000000e --HOLE-- [fill = 0] 900a29f0 00000012 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ring_lcdma.obj (.text.Udma_ringHandleClearRegsLcdma) 900a2a02 0000000e --HOLE-- [fill = 0] 900a2a10 00000012 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : autoip.obj (.text.autoip_arp_announce) 900a2a22 0000000e --HOLE-- [fill = 0] 900a2a30 00000012 httpd.o (.text.http_state_init) 900a2a42 0000000e --HOLE-- [fill = 0] 900a2a50 00000012 iperfserver.o (.text.lwiperf_init) 900a2a62 0000000e --HOLE-- [fill = 0] 900a2a70 00000012 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbuf.obj (.text.pbuf_pool_is_empty) 900a2a82 0000000e --HOLE-- [fill = 0] 900a2a90 00000012 httpd_cgi_sii.o (.text.sii_script_post) 900a2aa2 0000000e --HOLE-- [fill = 0] 900a2ab0 00000012 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : sys_arch.obj (.text.sys_now) 900a2ac2 0000000e --HOLE-- [fill = 0] 900a2ad0 00000012 : tcp.obj (.text.tcp_abort) 900a2ae2 0000000e --HOLE-- [fill = 0] 900a2af0 00000012 : tcp_in.obj (.text.tcp_trigger_input_pcb_close) 900a2b02 0000000e --HOLE-- [fill = 0] 900a2b10 00000010 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.CPS_RegRead) 900a2b20 00000010 : lpddr4_16bit.obj (.text.CPS_RegRead) 900a2b30 00000010 : lpddr4.obj (.text.CPS_UncachedWrite32) 900a2b40 00000010 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_isAleVlanAwareEnabled) 900a2b50 00000010 : csl_cpsw.obj (.text.CSL_CPSW_setAleControlReg) 900a2b60 00000010 : csl_mdio.obj (.text.CSL_MDIO_clearPollEnableMask) 900a2b70 00000010 : csl_mdio.obj (.text.CSL_MDIO_isStateChangeModeEnabled) 900a2b80 00000010 : csl_mdio.obj (.text.CSL_MDIO_readMdi) 900a2b90 00000010 : csl_mdio.obj (.text.CSL_MDIO_setClause45EnableMask) 900a2ba0 00000010 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_bcdma.obj (.text.CSL_REG32_WR_RAW) 900a2bb0 00000010 : csl_emif.obj (.text.CSL_REG32_WR_RAW) 900a2bc0 00000010 : csl_lcdma_ringacc.obj (.text.CSL_REG32_WR_RAW) 900a2bd0 00000010 : csl_pktdma.obj (.text.CSL_REG32_WR_RAW) 900a2be0 00000010 : mmcsd_v0.obj (.text.CSL_REG32_WR_RAW) 900a2bf0 00000010 : ospi_phy.obj (.text.CSL_REG32_WR_RAW) 900a2c00 00000010 : ospi_v0.obj (.text.CSL_REG32_WR_RAW) 900a2c10 00000010 : pinmux.obj (.text.CSL_REG32_WR_RAW) 900a2c20 00000010 : sciclient.obj (.text.CSL_REG32_WR_RAW) 900a2c30 00000010 : soc.obj (.text.CSL_REG32_WR_RAW) 900a2c40 00000010 : spinlock.obj (.text.CSL_REG32_WR_RAW) 900a2c50 00000010 : udma_ch.obj (.text.CSL_REG32_WR_RAW) 900a2c60 00000010 : udma_ring_lcdma.obj (.text.CSL_REG32_WR_RAW) 900a2c70 00000010 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpts.obj (.text.CSL_REG32_WR_RAW) 900a2c80 00000010 : enet_apputils_k3.obj (.text.CSL_REG32_WR_RAW) 900a2c90 00000010 : enet_udma_priv.obj (.text.CSL_udmapCppi5GetBufferLen) 900a2ca0 00000010 : enet_udma_priv.obj (.text.CSL_udmapCppi5GetOrgBufferLen) 900a2cb0 00000010 : enet_udma_priv.obj (.text.CSL_udmapCppi5GetPsDataLoc) 900a2cc0 00000010 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_utils.obj (.text.CSL_udmapCppi5SetDstTag) 900a2cd0 00000010 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.CSL_udmapCppi5SetDstTag) 900a2ce0 00000010 : enet_udma_priv.obj (.text.CSL_udmapCppi5SetOrgBufferLen) 900a2cf0 00000010 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos_r5.obj (.text.ClockP_getTimerCount) 900a2d00 00000010 : ClockP_nortos_r5.obj (.text.ClockP_timerClearOverflowInt) 900a2d10 00000010 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.text.CpswAle_ioctl_handler_default) 900a2d20 00000010 : cpsw_ale.obj (.text.CpswAle_rejoin) 900a2d30 00000010 : cpsw_cpts.obj (.text.CpswCpts_ioctl_handler_default) 900a2d40 00000010 : cpsw_cpts.obj (.text.CpswCpts_rejoin) 900a2d50 00000010 : cpsw_est.obj (.text.CpswEst_ioctl_handler_default) 900a2d60 00000010 : cpsw_hostport.obj (.text.CpswHostPort_ioctl_handler_default) 900a2d70 00000010 : cpsw_macport.obj (.text.CpswMacPort_ioctl_handler_default) 900a2d80 00000010 : cpsw_stats.obj (.text.CpswStats_ioctl_handler_default) 900a2d90 00000010 cpsw_custom_phy.o (.text.EnetBoard_setEnetControl) 900a2da0 00000010 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_disableIntr) 900a2db0 00000010 : enet_osal_dflt.obj (.text.EnetOsalDflt_enableIntr) 900a2dc0 00000010 : enet_osal_dflt.obj (.text.EnetOsalDflt_restoreAllIntr) 900a2dd0 00000010 : enet_osal.obj (.text.EnetOsal_createMutex) 900a2de0 00000010 : enet_osal.obj (.text.EnetOsal_disableAllIntr) 900a2df0 00000010 : enet_osal.obj (.text.EnetOsal_timerRead) 900a2e00 00000010 : enetphy.obj (.text.EnetPhy_defaultState) 900a2e10 00000010 : enetphy.obj (.text.EnetPhy_releaseHandle) 900a2e20 00000010 ti_enet_soc.o (.text.EnetSoc_getIntrTriggerType) 900a2e30 00000010 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma.obj (.text.EnetUdma_checkRxFlowSanity) 900a2e40 00000010 : enet_udma.obj (.text.EnetUdma_checkTxChSanity) 900a2e50 00000010 : enet_udma.obj (.text.EnetUdma_getRxFlowCnt) 900a2e60 00000010 : cpsw_macport_intervlan.obj (.text.EnetUtils_clearMacAddr) 900a2e70 00000010 : cpsw_ale_ioctl.obj (.text.EnetUtils_isMcastAddr) 900a2e80 00000010 : enet.obj (.text.Enet_initOsalCfg) 900a2e90 00000010 : enet.obj (.text.Enet_initUtilsCfg) 900a2ea0 00000010 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_memory.obj (.text.FF_getChar) 900a2eb0 00000010 dcs_som_ddr_soc.o (.text.HW_RD_REG32_RAW) 900a2ec0 00000010 drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.text.HW_RD_REG32_RAW) 900a2ed0 00000010 : i2c_v0.obj (.text.HW_RD_REG32_RAW) 900a2ee0 00000010 : uart_v0.obj (.text.HW_RD_REG32_RAW) 900a2ef0 00000010 dcs_som_ddr_soc.o (.text.HW_WR_REG32_RAW) 900a2f00 00000010 drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.text.HW_WR_REG32_RAW) 900a2f10 00000010 : i2c_v0.obj (.text.HW_WR_REG32_RAW) 900a2f20 00000010 : uart_v0.obj (.text.HW_WR_REG32_RAW) 900a2f30 00000010 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : custom_pbuf.obj (.text.Lwip2EnetStats_addOne) 900a2f40 00000010 : lwip2enet.obj (.text.Lwip2EnetStats_addOne) 900a2f50 00000010 : lwip2lwipif.obj (.text.Lwip2EnetStats_addOne) 900a2f60 00000010 : lwip2enet.obj (.text.Lwip2Enet_txPktHandler) 900a2f70 00000010 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_switchSdMode) 900a2f80 00000010 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio.obj (.text.Mdio_ioctl_handler_default) 900a2f90 00000010 : mdio.obj (.text.Mdio_rejoin) 900a2fa0 00000010 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_utils.obj (.text.Udma_defaultVirtToPhyFxn) 900a2fb0 00000010 nortos.am64x.r5f.ti-arm-clang.debug.lib : printf.obj (.text._out_null) 900a2fc0 00000010 fs.o (.text.fs_bytes_left) 900a2fd0 00000010 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : def.obj (.text.lwip_htons) 900a2fe0 00000010 : netif.obj (.text.netif_null_output_ip4) 900a2ff0 00000010 tftpserver.o (.text.tftp_init_server) 900a3000 0000000e drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_intaggr.obj (.text.CSL_REG64_RD_RAW) 900a300e 00000002 --HOLE-- [fill = 0] 900a3010 0000000e : mmcsd_v0.obj (.text.CSL_REG64_RD_RAW) 900a301e 00000002 --HOLE-- [fill = 0] 900a3020 0000000e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.CSL_udmapCppi5GetBufferAddr) 900a302e 00000002 --HOLE-- [fill = 0] 900a3030 0000000e : enet_udma_priv.obj (.text.CSL_udmapCppi5GetDescType) 900a303e 00000002 --HOLE-- [fill = 0] 900a3040 0000000e : cpsw_macport_est.obj (.text.CpswMacPortEst_ioctl_handler_default) 900a304e 00000002 --HOLE-- [fill = 0] 900a3050 0000000e : enet_apputils_k3.obj (.text.EnetAppUtils_clkRateSet) 900a305e 00000002 --HOLE-- [fill = 0] 900a3060 0000000e : enet_phymdio_dflt.obj (.text.EnetPhyMdioDflt_ioctl_handler_default) 900a306e 00000002 --HOLE-- [fill = 0] 900a3070 0000000e : enet_rm.obj (.text.EnetRm_initAttachObj) 900a307e 00000002 --HOLE-- [fill = 0] 900a3080 0000000e : generic_phy.obj (.text.GenericPhy_isMacModeSupported) 900a308e 00000002 --HOLE-- [fill = 0] 900a3090 0000000e IPC.lib : IPCTransceive.o (.text.IPC_vNotifyInitQueue) 900a309e 00000002 --HOLE-- [fill = 0] 900a30a0 0000000e drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_phyTuneManualEMMC) 900a30ae 00000002 --HOLE-- [fill = 0] 900a30b0 0000000e : mmcsd_v0.obj (.text.MMCSD_sendTuningDataSD) 900a30be 00000002 --HOLE-- [fill = 0] 900a30c0 0000000e IPC.lib : termcom_common.o (.text.TERMCOM_vBlank) 900a30ce 00000002 --HOLE-- [fill = 0] 900a30d0 0000000e lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dns.obj (.text.dns_init) 900a30de 00000002 --HOLE-- [fill = 0] 900a30e0 0000000e : mem.obj (.text.mem_trim) 900a30ee 00000002 --HOLE-- [fill = 0] 900a30f0 0000000e freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : portable.obj (.text.vTaskSetThreadLocalStoragePointer) 900a30fe 00000002 --HOLE-- [fill = 0] 900a3100 0000000c drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4.obj (.text.CPS_UncachedRead32) 900a310c 00000004 --HOLE-- [fill = 0] 900a3110 0000000c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpsw.obj (.text.CSL_CPSW_getAleControlReg) 900a311c 00000004 --HOLE-- [fill = 0] 900a3120 0000000c : csl_cpsw.obj (.text.CSL_CPSW_getAleIPv6LowEntryIndex) 900a312c 00000004 --HOLE-- [fill = 0] 900a3130 0000000c : csl_mdio.obj (.text.CSL_MDIO_getClause45EnableMask) 900a313c 00000004 --HOLE-- [fill = 0] 900a3140 0000000c : csl_mdio.obj (.text.CSL_MDIO_getPollEnableMask) 900a314c 00000004 --HOLE-- [fill = 0] 900a3150 0000000c drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.CSL_REG16_RD_RAW) 900a315c 00000004 --HOLE-- [fill = 0] 900a3160 0000000c : csl_bcdma.obj (.text.CSL_REG32_RD_RAW) 900a316c 00000004 --HOLE-- [fill = 0] 900a3170 0000000c : csl_lcdma_ringacc.obj (.text.CSL_REG32_RD_RAW) 900a317c 00000004 --HOLE-- [fill = 0] 900a3180 0000000c : csl_pktdma.obj (.text.CSL_REG32_RD_RAW) 900a318c 00000004 --HOLE-- [fill = 0] 900a3190 0000000c : mmcsd_v0.obj (.text.CSL_REG32_RD_RAW) 900a319c 00000004 --HOLE-- [fill = 0] 900a31a0 0000000c : ospi_phy.obj (.text.CSL_REG32_RD_RAW) 900a31ac 00000004 --HOLE-- [fill = 0] 900a31b0 0000000c : ospi_v0.obj (.text.CSL_REG32_RD_RAW) 900a31bc 00000004 --HOLE-- [fill = 0] 900a31c0 0000000c : sciclient.obj (.text.CSL_REG32_RD_RAW) 900a31cc 00000004 --HOLE-- [fill = 0] 900a31d0 0000000c : sciclient_rm_irq.obj (.text.CSL_REG32_RD_RAW) 900a31dc 00000004 --HOLE-- [fill = 0] 900a31e0 0000000c : soc.obj (.text.CSL_REG32_RD_RAW) 900a31ec 00000004 --HOLE-- [fill = 0] 900a31f0 0000000c : spinlock.obj (.text.CSL_REG32_RD_RAW) 900a31fc 00000004 --HOLE-- [fill = 0] 900a3200 0000000c : udma_ch.obj (.text.CSL_REG32_RD_RAW) 900a320c 00000004 --HOLE-- [fill = 0] 900a3210 0000000c : udma_ring_lcdma.obj (.text.CSL_REG32_RD_RAW) 900a321c 00000004 --HOLE-- [fill = 0] 900a3220 0000000c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : csl_cpts.obj (.text.CSL_REG32_RD_RAW) 900a322c 00000004 --HOLE-- [fill = 0] 900a3230 0000000c : enet_apputils_k3.obj (.text.CSL_REG32_RD_RAW) 900a323c 00000004 --HOLE-- [fill = 0] 900a3240 0000000c ti_enet_soc.o (.text.CSL_REG32_RD_RAW) 900a324c 00000004 --HOLE-- [fill = 0] 900a3250 0000000c drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.CSL_REG8_RD_RAW) 900a325c 00000004 --HOLE-- [fill = 0] 900a3260 0000000c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.text.CSL_REG8_RD_RAW) 900a326c 00000004 --HOLE-- [fill = 0] 900a3270 0000000c : enet_udma_priv.obj (.text.CSL_udmapCppi5GetSrcTag) 900a327c 00000004 --HOLE-- [fill = 0] 900a3280 0000000c nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_getTicks) 900a328c 00000004 --HOLE-- [fill = 0] 900a3290 0000000c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_apputils.obj (.text.EnetAppUtils_isPrintSupported) 900a329c 00000004 --HOLE-- [fill = 0] 900a32a0 0000000c ti_enet_soc.o (.text.EnetSoc_getCoreDevId) 900a32ac 00000004 --HOLE-- [fill = 0] 900a32b0 0000000c ti_enet_soc.o (.text.EnetSoc_getCoreId) 900a32bc 00000004 --HOLE-- [fill = 0] 900a32c0 0000000c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma.obj (.text.EnetUdmaStats_addCnt) 900a32cc 00000004 --HOLE-- [fill = 0] 900a32d0 0000000c : enet_udma_priv.obj (.text.EnetUdma_dmaDescQCount) 900a32dc 00000004 --HOLE-- [fill = 0] 900a32e0 0000000c : enet.obj (.text.Enet_getPerHandle) 900a32ec 00000004 --HOLE-- [fill = 0] 900a32f0 0000000c freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : portable.obj (.text.FF_BufferWait) 900a32fc 00000004 --HOLE-- [fill = 0] 900a3300 0000000c : ff_sys.obj (.text.FF_FS_Count) 900a330c 00000004 --HOLE-- [fill = 0] 900a3310 0000000c : portable.obj (.text.FF_Has_Lock) 900a331c 00000004 --HOLE-- [fill = 0] 900a3320 0000000c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : generic_phy.obj (.text.GenericPhy_isPhyDevSupported) 900a332c 00000004 --HOLE-- [fill = 0] 900a3330 0000000c IPC.lib : IPCTransceive.o (.text.IPC_vSyncAll) 900a333c 00000004 --HOLE-- [fill = 0] 900a3340 0000000c drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_getSelfCoreId) 900a334c 00000004 --HOLE-- [fill = 0] 900a3350 0000000c ti_power_clock_config.o (.text.PowerClock_init) 900a335c 00000004 --HOLE-- [fill = 0] 900a3360 0000000c drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient.obj (.text.Sciclient_getSelfDevIdCore) 900a336c 00000004 --HOLE-- [fill = 0] 900a3370 0000000c : sciclient_rm_irq.obj (.text.Sciclient_rmPsGetPsp) 900a337c 00000004 --HOLE-- [fill = 0] 900a3380 0000000c IPC.lib : terminal.o (.text.TERMINAL_vInit) 900a338c 00000004 --HOLE-- [fill = 0] 900a3390 0000000c drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_soc.obj (.text.Udma_isCacheCoherent) 900a339c 00000004 --HOLE-- [fill = 0] 900a33a0 0000000c : udma_rm.obj (.text.Udma_rmFreeFreeRing) 900a33ac 00000004 --HOLE-- [fill = 0] 900a33b0 0000000c lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dns.obj (.text.dns_tmr) 900a33bc 00000004 --HOLE-- [fill = 0] 900a33c0 0000000a ti_enet_config.o (.text.EnetMem_getCfg) 900a33ca 00000006 --HOLE-- [fill = 0] 900a33d0 0000000a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_phymdio_dflt.obj (.text.EnetPhyMdioDflt_getPhyMdio) 900a33da 00000006 --HOLE-- [fill = 0] 900a33e0 0000000a ti_enet_config.o (.text.EnetUdmaMem_getCfg) 900a33ea 00000006 --HOLE-- [fill = 0] 900a33f0 0000000a freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : portable.obj (.text.FF_Assert_Lock) 900a33fa 00000006 --HOLE-- [fill = 0] 900a3400 0000000a : portable.obj (.text.FF_CreateEvents) 900a340a 00000006 --HOLE-- [fill = 0] 900a3410 0000000a lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.text.Lwip2Enet_saveAppIfCfg) 900a341a 00000006 --HOLE-- [fill = 0] 900a3420 0000000a ti_enet_lwipif.o (.text.LwipifEnetApp_getHandle) 900a342a 00000006 --HOLE-- [fill = 0] 900a3430 0000000a nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_vim.obj (.text.assembly) 900a343a 00000006 --HOLE-- [fill = 0] 900a3440 0000000a IPC.lib : build.o (.text.get_build_datetime) 900a344a 00000006 --HOLE-- [fill = 0] 900a3450 0000000a lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_frag.obj (.text.ip_frag_alloc_pbuf_custom_ref) 900a345a 00000006 --HOLE-- [fill = 0] 900a3460 0000000a freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_stdio.obj (.text.prvABSPath) 900a346a 00000006 --HOLE-- [fill = 0] 900a3470 0000000a IPC.lib : pec_uart.o (.text.putchar) 900a347a 00000006 --HOLE-- [fill = 0] 900a3480 00000008 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_stats.obj (.text.CpswStats_close) 900a3488 00000008 --HOLE-- [fill = 0] 900a3490 00000008 ti_drivers_config.o (.text.Drivers_uartInit) 900a3498 00000008 --HOLE-- [fill = 0] 900a34a0 00000008 ti_enet_open_close.o (.text.EnetApp_rxPktNotifyCb) 900a34a8 00000008 --HOLE-- [fill = 0] 900a34b0 00000008 ti_enet_open_close.o (.text.EnetApp_txPktNotifyCb) 900a34b8 00000008 --HOLE-- [fill = 0] 900a34c0 00000008 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_disableAllIntr) 900a34c8 00000008 --HOLE-- [fill = 0] 900a34d0 00000008 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : portable.obj (.text.FF_BufferProceed) 900a34d8 00000008 --HOLE-- [fill = 0] 900a34e0 00000008 : portable.obj (.text.FF_DeleteEvents) 900a34e8 00000008 --HOLE-- [fill = 0] 900a34f0 00000008 : portable.obj (.text.FF_LockDirectory) 900a34f8 00000008 --HOLE-- [fill = 0] 900a3500 00000008 : portable.obj (.text.FF_LockFAT) 900a3508 00000008 --HOLE-- [fill = 0] 900a3510 00000008 : ff_file.obj (.text.FF_PRINTF) 900a3518 00000008 --HOLE-- [fill = 0] 900a3520 00000008 : ff_format.obj (.text.FF_PRINTF) 900a3528 00000008 --HOLE-- [fill = 0] 900a3530 00000008 : ff_ioman.obj (.text.FF_PRINTF) 900a3538 00000008 --HOLE-- [fill = 0] 900a3540 00000008 : ff_mmcsd.obj (.text.FF_PRINTF) 900a3548 00000008 --HOLE-- [fill = 0] 900a3550 00000008 : ff_stdio.obj (.text.FF_PRINTF) 900a3558 00000008 --HOLE-- [fill = 0] 900a3560 00000008 : ff_sys.obj (.text.FF_PRINTF) 900a3568 00000008 --HOLE-- [fill = 0] 900a3570 00000008 : portable.obj (.text.FF_PendSemaphore) 900a3578 00000008 --HOLE-- [fill = 0] 900a3580 00000008 : portable.obj (.text.FF_ReleaseSemaphore) 900a3588 00000008 --HOLE-- [fill = 0] 900a3590 00000008 : portable.obj (.text.FF_Sleep) 900a3598 00000008 --HOLE-- [fill = 0] 900a35a0 00000008 : portable.obj (.text.FF_UnlockDirectory) 900a35a8 00000008 --HOLE-- [fill = 0] 900a35b0 00000008 : portable.obj (.text.FF_UnlockFAT) 900a35b8 00000008 --HOLE-- [fill = 0] 900a35c0 00000008 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_isr) 900a35c8 00000008 --HOLE-- [fill = 0] 900a35d0 00000008 : ospi_v0.obj (.text.OSPI_isr) 900a35d8 00000008 --HOLE-- [fill = 0] 900a35e0 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_destruct) 900a35e8 00000008 --HOLE-- [fill = 0] 900a35f0 00000008 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ring_common.obj (.text.Udma_ringAssertFnPointers) 900a35f8 00000008 --HOLE-- [fill = 0] 900a3600 00000008 fs.o (.text.fs_close) 900a3608 00000008 --HOLE-- [fill = 0] 900a3610 00000006 IPC.lib : pec_crc.o (.text.cm_ini) 900a3616 0000000a --HOLE-- [fill = 0] 900a3620 00000004 cpsw_custom_phy.o (.text.EnetBoard_getId) 900a3624 0000000c --HOLE-- [fill = 0] 900a3630 00000004 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_timerRead) 900a3634 0000000c --HOLE-- [fill = 0] 900a3640 00000004 ti_enet_soc.o (.text.EnetSoc_getEnetNum) 900a3644 0000000c --HOLE-- [fill = 0] 900a3650 00000004 ti_enet_soc.o (.text.EnetSoc_init) 900a3654 0000000c --HOLE-- [fill = 0] 900a3660 00000004 eeprom.o (.text.PromCloseFunc) 900a3664 0000000c --HOLE-- [fill = 0] 900a3670 00000004 eeprom.o (.text.PromOpenFunc) 900a3674 0000000c --HOLE-- [fill = 0] 900a3680 00000004 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.text.Sciclient_rmPsGetMaxPsp) 900a3684 0000000c --HOLE-- [fill = 0] 900a3690 00000004 libclang_rt.builtins.a : aeabi_div0.c.obj (.text.__aeabi_idiv0) 900a3694 0000000c --HOLE-- [fill = 0] 900a36a0 00000004 : aeabi_div0.c.obj (.text.__aeabi_ldiv0) 900a36a4 0000000c --HOLE-- [fill = 0] 900a36b0 00000002 ti_board_config.o (.text.Board_init) 900a36b2 0000000e --HOLE-- [fill = 0] 900a36c0 00000002 drivers.am64x.r5f.ti-arm-clang.debug.lib : csl_lcdma_ringacc.obj (.text.CSL_archMemoryFence) 900a36c2 0000000e --HOLE-- [fill = 0] 900a36d0 00000002 ti_drivers_open_close.o (.text.Drivers_udmaOpen) 900a36d2 0000000e --HOLE-- [fill = 0] 900a36e0 00000002 cpsw_custom_phy.o (.text.EnetBoard_enableExternalMux) 900a36e2 0000000e --HOLE-- [fill = 0] 900a36f0 00000002 cpsw_custom_phy.o (.text.EnetBoard_setMacPort2IOExpanderCfg) 900a36f2 0000000e --HOLE-- [fill = 0] 900a3700 00000002 ti_enet_soc.o (.text.EnetSoc_deinit) 900a3702 0000000e --HOLE-- [fill = 0] 900a3710 00000002 nortos.am64x.r5f.ti-arm-clang.debug.lib : TaskP_nortos.obj (.text.TaskP_yield) 900a3712 0000000e --HOLE-- [fill = 0] 900a3720 00000002 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : mem.obj (.text.mem_init) 900a3722 0000000e --HOLE-- [fill = 0] 900a3730 00000002 : netif.obj (.text.netif_init) 900a3732 0000000e --HOLE-- [fill = 0] 900a3740 00000002 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : portable.obj (.text.vTaskSuspendAll) 900a3742 0000000e --HOLE-- [fill = 0] 900a3750 00000002 : portable.obj (.text.xTaskResumeAll) 900a3752 0000000e --HOLE-- [fill = 0] .bss 0 900a3780 00036680 UNINITIALIZED 900a3780 0000c000 ti_enet_config.o (.bss:ENET_DMA_PKT_MEMPOOL) 900af780 0000c000 (.common:eoe_packet_buffer) 900bb780 0000805f (.common:memp_memory_POOL_1792_base) 900c37df 0000409f (.common:memp_memory_POOL_4096_base) 900c787e 00003e9f (.common:memp_memory_POOL_128_base) 900cb71d 00000001 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.bss.dhcp_pcb_refcount) 900cb71e 00000002 tftpserver.o (.bss.gspin) 900cb720 000013d8 (.common:gUdmaDrvObj) 900ccaf8 0000101f (.common:memp_memory_PBUF_base) 900cdb17 0000101f (.common:memp_memory_TCP_SEG_base) 900ceb36 00000002 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4.obj (.bss.ip_id) 900ceb38 00001008 (.common:gHwiCtrl) 900cfb40 00000f00 ti_enet_config.o (.bss.gAppPktInfoMem_LargePool) 900d0a40 00000de0 ti_enet_open_close.o (.bss.gEnetAppSysCfgObj) 900d1820 00000b1f (.common:memp_memory_SYS_MBOX_base) 900d233f 00000001 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : etharp.obj (.bss.etharp_cached_entry) 900d2340 000009c0 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.bss.gOsalSemPEnetOsalPool) 900d2d00 00000890 (.common:Uart) 900d3590 0000081f (.common:memp_memory_RX_POOL_base) 900d3daf 00000001 tftpserver.o (.bss.filewrite) 900d3db0 00000780 ti_enet_config.o (.bss.gAppPktInfoMemOnly) 900d4530 00000600 (.common:eoe_stepin_buffer) 900d4b30 00000584 (.common:TermServ) 900d50b4 000004f0 (.common:gEnetSoc_dmaObj) 900d55a4 00000440 IPC.lib : terminal.o (.bss.Terminal) 900d59e4 00000440 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dns.obj (.bss.dns_table) 900d5e24 00000400 httpd.o (.bss.httpd_req_buf) 900d6224 000003df (.common:memp_memory_ARP_QUEUE_base) 900d6603 00000001 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.bss.flags) 900d6604 00000004 : tcp_in.obj (.bss.ackno) 900d6608 000003b8 ti_drivers_config.o (.bss.gMmcsdObjects) 900d69c0 0000033f (.common:memp_memory_TCP_PCB_base) 900d6cff 00000001 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : netif.obj (.bss.netif_num) 900d6d00 00000280 ti_drivers_config.o (.bss.gUartObjects) 900d6f80 00000258 ti_drivers_config.o (.bss.gOspiUdmaBlkCopyChObj) 900d71d8 00000240 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.bss.gOsalHwiPEnetOsalPool) 900d7418 0000023f (.common:memp_memory_SYS_TIMEOUT_base) 900d7657 00000001 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.bss.recv_flags) 900d7658 00000228 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.bss.gEnetPhy_phyObjs) 900d7880 00000200 ti_enet_config.o (.bss.gAppPktInfoContainerMem_LargePool) 900d7a80 00000200 (.common:gFreePbufArr) 900d7c80 00000200 (.common:gMmcsdDataBuf0) 900d7e80 000001ff (.common:memp_memory_FRAG_PBUF_base) 900d807f 00000001 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.bss.tcp_timer) 900d8080 000001ec (.common:lwip_stats) 900d826c 000001ac (.common:gEepromObject_AT24C) 900d8418 00000188 ti_drivers_config.o (.bss.gI2cObjects) 900d85a0 00000184 ti_drivers_config.o (.bss.gOspiObjects) 900d8724 0000015f (.common:memp_memory_ALTCP_PCB_base) 900d8883 0000015f (.common:memp_memory_REASSDATA_base) 900d89e2 00000002 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_frag.obj (.bss.ip_reass_pbufcount) 900d89e4 00000120 libsysbm.a : trgmsg.c.obj (.bss:_CIOBUF_) 900d8b04 0000011f (.common:memp_memory_IGMP_GROUP_base) 900d8c23 0000011f (.common:memp_memory_TCP_PCB_LISTEN_base) 900d8d42 0000011f (.common:memp_memory_UDP_PCB_base) 900d8e61 0000001f (.common:memp_memory_PBUF_POOL_base) 900d8e80 00000100 ti_drivers_config.o (.bss.gOspiUdmaBlkCopyCh0TrpdMem) 900d8f80 000000f0 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : etharp.obj (.bss.arp_table) 900d9070 000000f0 ti_enet_lwipif.o (.bss.gLwipifEnetAppObj) 900d9160 000000d8 (.common:gEnetUtilsObj) 900d9238 000000a8 (.common:gIpcNotifyCtrl) 900d92e0 000000a0 (.common:__TI_tmpnams) 900d9380 00000088 (.common:ec_netif) 900d9408 00000080 flasher.o (.bss.full_filename) 900d9488 00000080 tftpserver.o (.bss.full_filename) 900d9508 00000068 (.common:pollLinkClkObj) 900d9570 00000010 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dns.obj (.bss.dns_pcbs) 900d9580 00000080 ti_drivers_config.o (.bss.gOspiUdmaBlkCopyCh0RingMem) 900d9600 00000080 tftpserver.o (.bss.new_filename) 900d9680 0000007f (.common:memp_memory_RAW_PCB_base) 900d96ff 00000001 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.bss.tcp_timer_ctr) 900d9700 00000064 freertos_fat.am64x.r5f.ti-arm-clang.debug.lib : ff_sys.obj (.bss.file_systems) 900d9764 00000040 httpd.o (.bss.http_uri_buf) 900d97a4 00000040 (.common:NotifyQueueRxBuffer) 900d97e4 00000040 (.common:NotifyQueueTxBuffer) 900d9824 0000003c (.common:gEnetOsalObj) 900d9860 0000003c (.common:hEvent) 900d989c 00000004 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : igmp.obj (.bss.allrouters) 900d98a0 00000038 (.common:gClockCtrl) 900d98d8 00000034 enet_main.o (.bss.g_netifDhcp) 900d990c 00000030 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dns.obj (.bss.dns_requests) 900d993c 00000030 (.common:gLedObject) 900d996c 00000029 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enetphy.obj (.bss.gEnetPhyCapsBuf) 900d9995 00000001 (.common:pbuf_free_ooseq_pending) 900d9996 00000002 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.bss.recv_acked) 900d9998 00000028 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_rm_irq.obj (.bss.gPstack) 900d99c0 00000028 (.common:dhcp_rx_options_val) 900d99e8 00000028 (.common:gEmmcData0) 900d9a10 00000024 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tftp_server.obj (.bss.tftp_state) 900d9a34 0000001c (.common:gPartDetails) 900d9a50 00000018 (.common:eoe_packet_queue) 900d9a68 00000018 (.common:gFFDisks) 900d9a80 00000018 (.common:ip_data) 900d9a98 00000014 drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.bss.gLpddrPd) 900d9aac 00000014 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.bss.inseg) 900d9ac0 00000014 (.common:gFlashObject_MT35XL512) 900d9ad4 00000010 drivers.am64x.r5f.ti-arm-clang.debug.lib : ddr.obj (.bss.gLpddrCfg) 900d9ae4 00000010 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4_addr.obj (.bss.ip4addr_ntoa.str) 900d9af4 00000010 : memp.obj (.bss.memp_stats_ALTCP_PCB) 900d9b04 00000010 : memp.obj (.bss.memp_stats_ARP_QUEUE) 900d9b14 00000010 : memp.obj (.bss.memp_stats_FRAG_PBUF) 900d9b24 00000010 : memp.obj (.bss.memp_stats_IGMP_GROUP) 900d9b34 00000010 : memp.obj (.bss.memp_stats_PBUF) 900d9b44 00000010 : memp.obj (.bss.memp_stats_PBUF_POOL) 900d9b54 00000010 : memp.obj (.bss.memp_stats_POOL_128) 900d9b64 00000010 : memp.obj (.bss.memp_stats_POOL_1792) 900d9b74 00000010 : memp.obj (.bss.memp_stats_POOL_4096) 900d9b84 00000010 : memp.obj (.bss.memp_stats_RAW_PCB) 900d9b94 00000010 : memp.obj (.bss.memp_stats_REASSDATA) 900d9ba4 00000010 ti_enet_lwipif.o (.bss.memp_stats_RX_POOL) 900d9bb4 00000010 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : memp.obj (.bss.memp_stats_SYS_MBOX) 900d9bc4 00000010 : memp.obj (.bss.memp_stats_SYS_TIMEOUT) 900d9bd4 00000010 : memp.obj (.bss.memp_stats_TCP_PCB) 900d9be4 00000010 : memp.obj (.bss.memp_stats_TCP_PCB_LISTEN) 900d9bf4 00000010 : memp.obj (.bss.memp_stats_TCP_SEG) 900d9c04 00000010 : memp.obj (.bss.memp_stats_UDP_PCB) 900d9c14 00000010 (.common:virtToPhymap) 900d9c24 0000000c (.common:NotifyRxQueue) 900d9c30 0000000c (.common:NotifyTxQueue) 900d9c3c 0000000c (.common:gADMA2Desc) 900d9c48 0000000c (.common:pfreeQ) 900d9c54 0000000a (.common:dhcp_rx_options_given) 900d9c5e 00000002 : tcp_in.obj (.bss.tcp_optidx) 900d9c60 00000008 : dns.obj (.bss.dns_servers) 900d9c68 00000008 tftpserver.o (.bss.filelen) 900d9c70 00000008 tftpserver.o (.bss.filepos) 900d9c78 00000008 tftpserver.o (.bss.filesize) 900d9c80 00000008 tftpserver.o (.bss.readfilelen) 900d9c88 00000008 tftpserver.o (.bss.readlen) 900d9c90 00000008 (.common:gLedHandle) 900d9c98 00000008 (.common:parmbuf) 900d9ca0 00000004 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : igmp.obj (.bss.allsystems) 900d9ca4 00000004 : timeouts.obj (.bss.current_timeout_due_time) 900d9ca8 00000004 : dhcp.obj (.bss.dhcp_create_msg.xid) 900d9cac 00000004 : dhcp.obj (.bss.dhcp_pcb) 900d9cb0 00000004 : netif.obj (.bss.ext_callback) 900d9cb4 00000004 IPC.lib : termcom_common.o (.bss.fw_nick) 900d9cb8 00000004 drivers.am64x.r5f.ti-arm-clang.debug.lib : bootloader_xmodem.obj (.bss.gUartHandle) 900d9cbc 00000004 nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_vim.obj (.bss.gdummy) 900d9cc0 00000004 httpd.o (.bss.http_cgi_paramcount) 900d9cc4 00000004 httpd.o (.bss.httpd_cgis) 900d9cc8 00000004 httpd.o (.bss.httpd_num_cgis) 900d9ccc 00000004 httpd.o (.bss.httpd_num_tags) 900d9cd0 00000004 httpd.o (.bss.httpd_ssi_handler) 900d9cd4 00000004 httpd.o (.bss.httpd_tags) 900d9cd8 00000004 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : ip4.obj (.bss.ip4_default_multicast_netif) 900d9cdc 00000004 : lwiperf.obj (.bss.lwiperf_all_connections) 900d9ce0 00000004 : memp.obj (.bss.memp_tab_ALTCP_PCB) 900d9ce4 00000004 : memp.obj (.bss.memp_tab_ARP_QUEUE) 900d9ce8 00000004 : memp.obj (.bss.memp_tab_FRAG_PBUF) 900d9cec 00000004 : memp.obj (.bss.memp_tab_IGMP_GROUP) 900d9cf0 00000004 : memp.obj (.bss.memp_tab_PBUF) 900d9cf4 00000004 : memp.obj (.bss.memp_tab_PBUF_POOL) 900d9cf8 00000004 : memp.obj (.bss.memp_tab_POOL_128) 900d9cfc 00000004 : memp.obj (.bss.memp_tab_POOL_1792) 900d9d00 00000004 : memp.obj (.bss.memp_tab_POOL_4096) 900d9d04 00000004 : memp.obj (.bss.memp_tab_RAW_PCB) 900d9d08 00000004 : memp.obj (.bss.memp_tab_REASSDATA) 900d9d0c 00000004 ti_enet_lwipif.o (.bss.memp_tab_RX_POOL) 900d9d10 00000004 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : memp.obj (.bss.memp_tab_SYS_MBOX) 900d9d14 00000004 : memp.obj (.bss.memp_tab_SYS_TIMEOUT) 900d9d18 00000004 : memp.obj (.bss.memp_tab_TCP_PCB) 900d9d1c 00000004 : memp.obj (.bss.memp_tab_TCP_PCB_LISTEN) 900d9d20 00000004 : memp.obj (.bss.memp_tab_TCP_SEG) 900d9d24 00000004 : memp.obj (.bss.memp_tab_UDP_PCB) 900d9d28 00000004 : timeouts.obj (.bss.next_timeout) 900d9d2c 00000004 : raw.obj (.bss.raw_pcbs) 900d9d30 00000004 : ip4_frag.obj (.bss.reassdatagrams) 900d9d34 00000004 : tcp_in.obj (.bss.recv_data) 900d9d38 00000004 : tcp_in.obj (.bss.seqno) 900d9d3c 00000004 libc.a : memory.c.obj (.bss.sys_free) 900d9d40 00000004 lwip-contrib-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcpecho_raw.obj (.bss.tcpecho_raw_pcb) 900d9d44 00000004 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp_in.obj (.bss.tcphdr) 900d9d48 00000004 : tcp_in.obj (.bss.tcphdr_opt2) 900d9d4c 00000004 : timeouts.obj (.bss.tcpip_tcp_timer_active) 900d9d50 00000004 (.common:PPPtr) 900d9d54 00000004 (.common:TermCom) 900d9d58 00000004 (.common:gEepromHandle) 900d9d5c 00000004 (.common:gFlashHandle) 900d9d60 00000004 (.common:gI2cHandle) 900d9d64 00000004 (.common:gIoexpHandle) 900d9d68 00000004 (.common:gMmcsdHandle) 900d9d6c 00000004 (.common:gOspiHandle) 900d9d70 00000004 (.common:gUartHandle) 900d9d74 00000004 (.common:g_pNetif) 900d9d78 00000004 (.common:gpDisk) 900d9d7c 00000004 (.common:netif_default) 900d9d80 00000004 (.common:netif_list) 900d9d84 00000004 (.common:spinlockPdoBaseAddr) 900d9d88 00000004 (.common:tcp_active_pcbs) 900d9d8c 00000004 (.common:tcp_bound_pcbs) 900d9d90 00000004 (.common:tcp_input_pcb) 900d9d94 00000004 (.common:tcp_listen_pcbs) 900d9d98 00000004 (.common:tcp_ticks) 900d9d9c 00000004 (.common:tcp_tw_pcbs) 900d9da0 00000004 (.common:udp_pcbs) 900d9da4 00000002 : tcp_in.obj (.bss.tcphdr_opt1len) 900d9da6 00000002 : tcp_in.obj (.bss.tcphdr_optlen) 900d9da8 00000002 : tcp_in.obj (.bss.tcplen) 900d9daa 00000001 (.common:tcp_active_pcbs_changed) 900d9dab 00000001 (.common:ucAssumeFATType) 900d9dac 00000054 --HOLE-- .sysmem 0 900d9e00 0001f400 UNINITIALIZED 900d9e00 00000010 libc.a : memory.c.obj (.sysmem) 900d9e10 0001f3f0 --HOLE-- .stack 0 900f9200 0000fa00 UNINITIALIZED 900f9200 00000004 nortos.am64x.r5f.ti-arm-clang.debug.lib : boot_armv7r_asm.obj (.stack) 900f9204 0000f9fc --HOLE-- .data 0 90108c00 00006880 90108c00 000018d0 ti_enet_soc.o (.data.gEnetSoc_cpsw3g) 9010a4d0 000007ec ti_drivers_config.o (.data.DDRSS_phyReg) 9010acbc 0000069c ti_drivers_config.o (.data.DDRSS_ctlReg) 9010b358 0000061c lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : lwip2enet.obj (.data.gLwip2EnetObj) 9010b974 00000564 ti_drivers_config.o (.data.DDRSS_phyIndepReg) 9010bed8 000003f6 ti_drivers_config.o (.data.DDRSS_phyRegNum) 9010c2ce 00000002 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.data.tcp_port) 9010c2d0 00000370 ti_enet_soc.o (.data.gEnetSoc_cpsw3gMacObj) 9010c640 0000034e ti_drivers_config.o (.data.DDRSS_ctlRegNum) 9010c98e 000002b2 ti_drivers_config.o (.data.DDRSS_phyIndepRegNum) 9010cc40 00000228 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.data.gCpswAle_ioctlValidate) 9010ce68 000001c0 : cpsw_macport.obj (.data.CpswMacPortIoctlHandlerRegistry) 9010d028 00000188 : cpsw_ale.obj (.data.CpswAleIoctlHandlerRegistry) 9010d1b0 00000168 : enet.obj (.data.gEnetMacPort_ioctlValidate) 9010d318 00000150 ti_pinmux_config.o (.data.gPinMuxMainDomainCfg) 9010d468 00000132 drivers.am64x.r5f.ti-arm-clang.debug.lib : lpddr4_16bit.obj (.data.CtlIntMap) 9010d59a 00000002 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : udp.obj (.data.udp_port) 9010d59c 000000f8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_appmemutils.obj (.data.gEnetMemObj) 9010d694 000000f0 libc.a : defs.c.obj (.data._ftable) 9010d784 000000d8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_cpts.obj (.data.CpswCptsIoctlHandlerRegistry) 9010d85c 000000d8 : enet.obj (.data.gEnetMdio_ioctlValidate) 9010d934 000000cc : cpsw.obj (.data.gCpsw_ioctlValidate) 9010da00 000000cc : enet.obj (.data.gEnetHostPort_ioctlValidate) 9010dacc 000000cc : enet.obj (.data.gEnetPer_ioctlValidate) 9010db98 000000b8 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_irq_rm.obj (.data.vint_usage_count_DMASS0_INTAGGR_0) 9010dc50 000000a8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_hostport.obj (.data.CpswHostPortIoctlHandlerRegistry) 9010dcf8 000000a8 : cpsw.obj (.data.CpswIoctlHandlerRegistry) 9010dda0 000000a8 : cpsw_cpts.obj (.data.gCpswCpts_ioctlValidate) 9010de48 000000a8 : cpsw_macport.obj (.data.gCpswMacPort_privIoctlValidate) 9010def0 000000a8 : enet.obj (.data.gEnetPhy_ioctlValidate) 9010df98 000000a0 : mdio.obj (.data.MdioIoctlHandlerRegistry) 9010e038 0000009c drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.data.gI2cDrvObj) 9010e0d4 0000009c : mmcsd_v0.obj (.data.gMmcsdDrvObj) 9010e170 0000009c : ospi_v0.obj (.data.gOspiDrvObj) 9010e20c 0000009c : uart_v0.obj (.data.gUartDrvObj) 9010e2a8 00000093 : ipc_notify_v0_cfg.obj (.data.gIpcNotifyMailboxConfig) 9010e33b 00000001 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_apputils.obj (.data.EnetAppUtils_assertLocal.gCpswAssertWaitInLoop) 9010e33c 00000084 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_utils.obj (.data.gUdmaUtilsTrSizeTable) 9010e3c0 00000080 : ospi_phy.obj (.data.gOspiFlashAttackVector) 9010e440 00000080 : ospi_phy.obj (.data.gReadBuf) 9010e4c0 00000040 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_est.obj (.data.CpswEstIoctlHandlerRegistry) 9010e500 00000080 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.data.gTuningPattern8Bit) 9010e580 00000078 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_phymdio_dflt.obj (.data.EnetPhyMdioDfltIoctlHandlerRegistry) 9010e5f8 00000078 libsysbm.a : host_device.c.obj (.data._device) 9010e670 00000078 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet.obj (.data.gEnetTimeSync_ioctlValidate) 9010e6e8 00000070 ti_board_open_close.o (.data.gFlashDevCfg_MT35XL512) 9010e758 00000068 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_rm.obj (.data.EnetRmIoctlHandlerRegistry) 9010e7c0 00000060 : enet.obj (.data.gEnetTas_ioctlValidate) 9010e820 00000060 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0_cfg.obj (.data.gIpcNotifyInterruptConfig_r5fss0_1) 9010e880 00000060 : sciclient_irq_rm.obj (.data.gRmIrInstances) 9010e8e0 00000058 : udma_rmcfg.obj (.data.gUdmaRmSharedResPrms) 9010e938 00000054 ti_enet_config.o (.data.gEnetMacAddrPool) 9010e98c 00000054 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_rm.obj (.data.gEnetRm_privIoctlValidate) 9010e9e0 00000054 ti_drivers_open_close.o (.data.gUartParams) 9010ea34 00000050 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_macport_est.obj (.data.CpswMacPortEstIoctlHandlerRegistry) 9010ea84 00000050 libsysbm.a : host_device.c.obj (.data._stream) 9010ead4 00000048 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_stats.obj (.data.gCpswStats_ioctlValidate) 9010eb1c 00000048 : enet_rm.obj (.data.gEnetRm_ioctlValidate) 9010eb64 00000048 ti_drivers_config.o (.data.gOspiAttrs) 9010ebac 00000044 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.data.gEnetUdmaMemMgrObj) 9010ebf0 00000040 : cpsw_hostport.obj (.data.CpswHostPort_gSupportedVer) 9010ec30 00000040 : cpsw_macport.obj (.data.CpswMacPort_gSupportedVer) 9010ec70 00000040 : cpsw_stats.obj (.data.CpswStatsIoctlHandlerRegistry) 9010ecb0 00000040 : cpsw_stats.obj (.data.CpswStats_gSupportedVer) 9010ecf0 0000003c : cpsw_macport.obj (.data.gCpswMacPort_ioctlValidate) 9010ed2c 0000003c ti_drivers_config.o (.data.gMmcsdAttrs) 9010ed68 00000038 ti_drivers_config.o (.data.gDdrParams) 9010eda0 00000030 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.data.CpswAle_gSupportedVer) 9010edd0 00000030 : cpsw_cpts.obj (.data.CpswCpts_gSupportedVer) 9010ee00 00000030 : cpsw_cpts.obj (.data.gCpswCpts_privIoctlValidate) 9010ee30 00000030 ti_board_open_close.o (.data.gFlashAttrs_MT35XL512) 9010ee60 00000030 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio.obj (.data.gMdio_supportedVer) 9010ee90 00000030 drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_priv.obj (.data.gMonths) 9010eec0 00000030 ti_power_clock_config.o (.data.gSocModulesClockFrequency) 9010eef0 00000028 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : dp83867.obj (.data.gEnetPhyDrvDp83867) 9010ef18 00000028 : generic_phy.obj (.data.gEnetPhyDrvGeneric) 9010ef40 00000028 ti_board_open_close.o (.data.gLedParams) 9010ef68 00000028 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_phy.obj (.data.gPhyTuneWindowParamsGTE133) 9010ef90 00000028 : ospi_phy.obj (.data.gPhyTuneWindowParamsLT133) 9010efb8 00000024 board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.data.gFlashToSpiProtocolMap) 9010efdc 00000024 ti_drivers_config.o (.data.gI2cHwAttrs) 9010f000 00000024 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0_cfg.obj (.data.gIpcNotifyMailboxBaseAddr) 9010f024 00000024 ti_power_clock_config.o (.data.gSocModules) 9010f048 00000020 ti_drivers_config.o (.data.gOspiDmaRestrictRegions) 9010f068 00000020 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_irq_rm.obj (.data.gRmIaInstances) 9010f088 00000020 : sciclient_soc_priv.obj (.data.gSciclientSecProxyCfg) 9010f0a8 00000020 ti_drivers_config.o (.data.gUdmaInitPrms) 9010f0c8 00000020 httpd_cgi_sii.o (.data.ssi_functions) 9010f0e8 00000020 httpd_cgi_sii.o (.data.ssi_tags) 9010f108 0000001c board.am64x.r5f.ti-arm-clang.debug.lib : flash_nor_ospi.obj (.data.gFlashNorOspiFxns) 9010f124 0000001c ti_drivers_config.o (.data.gOspiUdma0Args) 9010f140 00000018 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_hostport.obj (.data.gCpswHostPort_ioctlValidate) 9010f158 00000018 : cpsw_hostport.obj (.data.gCpswHostPort_privIoctlValidate) 9010f170 00000018 : cpsw_stats.obj (.data.gCpswStats_privIoctlValidate) 9010f188 00000018 ti_enet_soc.o (.data.gEnetAppRmDefCfg_3G) 9010f1a0 00000018 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet.obj (.data.gEnetFdb_ioctlValidate) 9010f1b8 00000018 : enet.obj (.data.gEnetStats_ioctlValidate) 9010f1d0 00000018 : enet_phymdio_dflt.obj (.data.gEnet_PhyMdioDflt) 9010f1e8 00000018 ti_board_open_close.o (.data.gLedConfig) 9010f200 00000018 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : mdio.obj (.data.gMdio_privIoctlValidate) 9010f218 00000018 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient.obj (.data.gSciclientHandle) 9010f230 00000014 ti_dpl_config.o (.data.gClockConfig) 9010f244 00000014 board.am64x.r5f.ti-arm-clang.debug.lib : led_tpic2810.obj (.data.gLedFxns_TPIC2810) 9010f258 00000014 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient_irq_rm.obj (.data.rom_usage_DMASS0_INTAGGR_0) 9010f26c 00000014 IPCInterface.o (.data.states_str) 9010f280 00000010 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.data.Cpsw_gSpeedNames) 9010f290 00000010 board.am64x.r5f.ti-arm-clang.debug.lib : eeprom_at24c.obj (.data.gEepromFxns_AT24C) 9010f2a0 00000010 ti_board_open_close.o (.data.gFlashConfig) 9010f2b0 0000000c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.data.Cpsw_gDuplexNames) 9010f2bc 0000000c nortos.am64x.r5f.ti-arm-clang.debug.lib : AddrTranslateP.obj (.data.gAddrTranslateConfig) 9010f2c8 0000000c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.data.gCpswAle_privIoctlValidate) 9010f2d4 0000000c board.am64x.r5f.ti-arm-clang.debug.lib : eeprom_at24c.obj (.data.gEepromAttrs_AT24C) 9010f2e0 0000000c ti_board_open_close.o (.data.gEepromConfig) 9010f2ec 0000000c ti_enet_soc.o (.data.gEnetSoc_perObj) 9010f2f8 0000000c ti_drivers_open_close.o (.data.gI2cParams) 9010f304 0000000c drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_dma_udma.obj (.data.gOspiDmaUdmaFxns) 9010f310 00000008 libc.a : exit.c.obj (.data..L_MergedGlobals) 9010f318 00000008 httpd_cgi_sii.o (.data.counter) 9010f320 00000008 ti_board_open_close.o (.data.gEepromParams) 9010f328 00000008 ti_enet_soc.o (.data.gEnetSoc_dmaObjMemInfo) 9010f330 00000008 ti_drivers_open_close.o (.data.gFFMmcsdConfig) 9010f338 00000008 ti_drivers_open_close.o (.data.gFFPartitionIds) 9010f340 00000008 ti_board_open_close.o (.data.gFlashParams) 9010f348 00000008 ti_drivers_config.o (.data.gI2cConfig) 9010f350 00000008 ti_drivers_config.o (.data.gMmcsdConfig) 9010f358 00000008 ti_drivers_open_close.o (.data.gMmcsdParams) 9010f360 00000008 ti_drivers_config.o (.data.gOspiConfig) 9010f368 00000008 ti_drivers_config.o (.data.gOspiDmaConfig) 9010f370 00000008 ti_pinmux_config.o (.data.gPinMuxMcuDomainCfg) 9010f378 00000008 ti_drivers_config.o (.data.gUartAttrs) 9010f380 00000008 ti_drivers_config.o (.data.gUartConfig) 9010f388 00000008 nortos.am64x.r5f.ti-arm-clang.debug.lib : PmuP_armv7r.obj (.data.pmu) 9010f390 00000007 IPC.lib : pec_prom.o (.data.PP_Watermark) 9010f397 00000001 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f398 00000004 libc.a : defs.c.obj (.data.__TI_ft_end) 9010f39c 00000004 : aeabi_portable.c.obj (.data.__aeabi_errno) 9010f3a0 00000004 : _lock.c.obj (.data._lock) 9010f3a4 00000004 : _lock.c.obj (.data._unlock) 9010f3a8 00000004 IPC.lib : terminal.o (.data.command_promt) 9010f3ac 00000004 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : dhcp.obj (.data.dhcp_discover_request_options) 9010f3b0 00000004 httpd_cgi_sii.o (.data.err_msg) 9010f3b4 00000004 nortos.am64x.r5f.ti-arm-clang.debug.lib : DebugP_log.obj (.data.gDebugLogZone) 9010f3b8 00000004 ti_board_open_close.o (.data.gEepromConfigNum) 9010f3bc 00000004 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.data.gEnetOsalHwiAllocCnt) 9010f3c0 00000004 : enet_osal_dflt.obj (.data.gEnetOsalHwiPeak) 9010f3c4 00000004 : enet_osal_dflt.obj (.data.gEnetOsalSemAllocCnt) 9010f3c8 00000004 : enet_osal_dflt.obj (.data.gEnetOsalSemPeak) 9010f3cc 00000004 ti_board_open_close.o (.data.gFlashConfigNum) 9010f3d0 00000004 ti_dpl_config.o (.data.gHwiConfig) 9010f3d4 00000004 ti_drivers_config.o (.data.gI2cConfigNum) 9010f3d8 00000004 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0_cfg.obj (.data.gIpcNotifyInterruptConfigNum_r5fss0_1) 9010f3dc 00000004 board.am64x.r5f.ti-arm-clang.debug.lib : led_tpic2810.obj (.data.gLedAttrs_TPIC2810) 9010f3e0 00000004 ti_board_open_close.o (.data.gLedConfigNum) 9010f3e4 00000004 ti_drivers_config.o (.data.gMmcsdConfigNum) 9010f3e8 00000004 ti_drivers_config.o (.data.gOspiConfigNum) 9010f3ec 00000004 ti_drivers_config.o (.data.gOspiDmaConfigNum) 9010f3f0 00000004 ti_drivers_open_close.o (.data.gOspiParams) 9010f3f4 00000004 drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_phy.obj (.data.gPhyTuneWindowParams) 9010f3f8 00000004 ti_drivers_config.o (.data.gUartConfigNum) 9010f3fc 00000004 ti_drivers_config.o (.data.gUartDmaConfigNum) 9010f400 00000004 libc.a : rand.c.obj (.data.next) 9010f404 00000004 httpd_cgi_sii.o (.data.selected_dparam) 9010f408 00000004 lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib : tcp.obj (.data.tcp_next_iss.iss) 9010f40c 00000004 IPC.lib : pec_uart.o (.data.termd_putchar) 9010f410 00000004 : pec_uart_wrapper.o (.data.uartHandler) 9010f414 00000001 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : cpsw_ale.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f415 00000001 : cpsw_cpts.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f416 00000001 : cpsw_est.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f417 00000001 : cpsw_est_ioctl.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f418 00000001 : cpsw_hostport.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f419 00000001 : cpsw_ioctl.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f41a 00000001 : cpsw_macport.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f41b 00000001 : cpsw_macport_est.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f41c 00000001 : cpsw_macport_est_ioctl.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f41d 00000001 : cpsw_macport_ioctl.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f41e 00000001 : cpsw_stats.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f41f 00000001 : cpsw_stats_ioctl.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f420 00000001 : enet.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f421 00000001 : enet_appmemutils.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f422 00000001 : enet_hostport.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f423 00000001 : enet_osal.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f424 00000001 : enet_phymdio_dflt.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f425 00000001 : enet_queue.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f426 00000001 : enet_rm.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f427 00000001 : enet_rm_ioctl.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f428 00000001 : enet_udma.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f429 00000001 : enet_udma_priv.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f42a 00000001 : enet_utils.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f42b 00000001 : enetphy.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f42c 00000001 : mdio.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f42d 00000001 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : custom_pbuf.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f42e 00000001 : lwip2enet.obj (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop) 9010f42f 00000001 : lwip2enet.obj (.data.Lwip2Enet_assertPriv.waitInLoop) 9010f430 00000001 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_trace.obj (.data.gEnetTrace_runtimeLevel) 9010f431 00000001 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.data.gPbufQ_initialized) 9010f432 00000001 drivers.am64x.r5f.ti-arm-clang.debug.lib : sciclient.obj (.data.gSecHeaderSizeWords) 9010f433 00000001 : soc.obj (.data.isMapAvailable) 9010f434 00000001 libc.a : memory.c.obj (.data.memory_is_initialized) 9010f435 0000004b --HOLE-- [fill = 0] .init_array * 0 700f0000 00000000 UNINITIALIZED .bss.filebuf * 0 80000000 10000000 UNINITIALIZED 80000000 10000000 main.o (.bss.filebuf) .bss.ipc_shared_mem1 * 0 701df000 00000038 NOLOAD SECTION 701df000 00000038 IPC.lib : IPCInterface.o (.bss.ipc_shared_mem1) .bss.ipc_shared_mem2 * 0 701df100 000000a4 NOLOAD SECTION 701df100 000000a4 IPC.lib : IPCInterface.o (.bss.ipc_shared_mem2) .bss.ipc_shared_mem3 * 0 701df200 00000004 NOLOAD SECTION 701df200 00000004 IPC.lib : IPCInterface.o (.bss.ipc_shared_mem3) .bss.ipc_shared_mem4 * 0 701df300 00000004 NOLOAD SECTION 701df300 00000004 IPC.lib : IPCInterface.o (.bss.ipc_shared_mem4) .bss.ec_eoe_shm_mem_tx * 0 701df400 00000600 NOLOAD SECTION 701df400 00000600 enet_main.o (.bss.ec_eoe_shm_mem_tx) .bss.ec_eoe_shm_mem_rx * 0 701dfa00 00000600 NOLOAD SECTION 701dfa00 00000600 enet_main.o (.bss.ec_eoe_shm_mem_rx) .enet_dma_mem * 0 700f0000 00005a90 NOLOAD SECTION 700f0000 00004a40 ti_enet_config.o (.bss:ENET_DMA_DESC_MEMPOOL) 700f4a40 00000040 --HOLE-- 700f4a80 00001010 ti_enet_config.o (.bss:ENET_DMA_RING_MEMPOOL) .bss:ENET_DMA_OBJ_MEM * 0 700f6e80 00000c10 NOLOAD SECTION 700f6e80 00000bc8 ti_enet_config.o (.bss:ENET_DMA_OBJ_MEM) 700f7a48 00000038 --HOLE-- 700f7a80 00000010 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_udma_priv.obj (.bss:ENET_DMA_OBJ_MEM) MODULE SUMMARY Module code ro data rw data ------ ---- ------- ------- .\ main.o 750 412 268435943 termcom.o 9652 5930 0 IPCInterface.o 1960 1313 172 flasher.o 1142 473 128 xmodem.o 1730 0 0 eeprom.o 1126 193 0 mcp23008.o 254 0 4 dcs_som_ddr_soc.o 142 0 0 version.o 0 2 0 +--+-------------------------------------+--------+---------+-----------+ Total: 16756 8323 268436247 .\ddr_test\ memtest.o 774 0 0 +--+-------------------------------------+--------+---------+-----------+ Total: 774 0 0 .\enet\ enet_main.o 2160 386 54036 fs.o 154 37948 0 httpd_cgi_sii.o 2666 1564 80 termserver.o 1060 453 1412 tftpserver.o 1882 311 299 cpswconfighandler.o 918 218 0 cpsw_custom_phy.o 768 302 0 httpd_cgi_sii_const.o 0 1001 0 iperfserver.o 128 95 0 +--+-------------------------------------+--------+---------+-----------+ Total: 9736 42278 55827 .\enet\lwip_opts\ httpd.o 7494 916 1112 +--+-------------------------------------+--------+---------+-----------+ Total: 7494 916 1112 .\syscfg\ ti_enet_config.o 1326 431 81644 ti_drivers_config.o 322 96 16474 ti_enet_open_close.o 6772 1752 3552 ti_enet_soc.o 1416 321 8540 ti_enet_lwipif.o 2582 536 2955 ti_drivers_open_close.o 1222 358 716 ti_board_open_close.o 836 218 792 ti_pinmux_config.o 32 0 344 ti_power_clock_config.o 180 0 84 ti_dpl_config.o 100 100 24 ti_board_config.o 2 0 0 +--+-------------------------------------+--------+---------+-----------+ Total: 14790 3812 115125 C:\TI\ccs1230\ccs\tools\compiler\ti-cgt-armllvm_2.1.3.LTS\lib\armv7r-ti-none-eabihf/c/libc.a _printfi.c.obj 3580 34 0 strtod.c.obj 1228 200 0 strtof.c.obj 1208 88 0 memory.c.obj 1172 0 5 strtoull.c.obj 560 0 0 strtol.c.obj 520 0 0 strtoul.c.obj 472 0 0 fputs.c.obj 420 0 0 defs.c.obj 0 0 404 setvbuf.c.obj 324 0 0 s_scalbn.c.obj 320 0 0 getdevice.c.obj 308 0 0 fflush.c.obj 304 0 0 s_scalbnf.c.obj 276 0 0 aeabi_ctype.S.obj 0 257 0 snprintf.c.obj 256 0 0 aeabi_portable.c.obj 148 69 4 fseek.c.obj 184 0 0 fclose.c.obj 180 0 0 _io_perm.c.obj 156 0 0 sprintf.c.obj 152 0 0 rand.c.obj 132 0 4 exit.c.obj 108 0 8 atoi.c.obj 112 0 0 strstr.c.obj 104 0 0 autoinit.c.obj 88 0 0 fopen.c.obj 88 0 0 strncpy.c.obj 80 0 0 strncmp.c.obj 76 0 0 memccpy.c.obj 72 0 0 memcmp.c.obj 64 0 0 strchr.c.obj 40 0 0 strcmp.c.obj 36 0 0 assert.c.obj 32 0 0 wcslen.c.obj 32 0 0 strcpy.c.obj 28 0 0 strlen.c.obj 28 0 0 _lock.c.obj 4 0 8 +--+-------------------------------------+--------+---------+-----------+ Total: 12892 648 433 C:\TI\ccs1230\ccs\tools\compiler\ti-cgt-armllvm_2.1.3.LTS\lib\armv7r-ti-none-eabihf/c/libsysbm.a trgmsg.c.obj 176 0 288 hostrename.c.obj 208 0 0 host_device.c.obj 0 0 200 hostopen.c.obj 148 0 8 hostlseek.c.obj 152 0 0 close.c.obj 140 0 0 hostread.c.obj 132 0 0 hostwrite.c.obj 132 0 0 hostunlink.c.obj 108 0 0 hostclose.c.obj 96 0 0 unlink.c.obj 72 0 0 lseek.c.obj 52 0 0 write.c.obj 52 0 0 memcpy32.S.obj 28 0 0 memset32.S.obj 24 0 0 remove.c.obj 4 0 0 +--+-------------------------------------+--------+---------+-----------+ Total: 1524 0 496 C:\TI\ccs1230\ccs\tools\compiler\ti-cgt-armllvm_2.1.3.LTS\lib\clang/14.0.6/lib/armv7r-ti-none-eabihf/libclang_rt.builtins.a udivsi3.S.obj 464 0 0 udivmoddi4.S.obj 280 0 0 aeabi_uldivmod.S.obj 36 0 0 aeabi_memset.S.obj 28 0 0 aeabi_div0.c.obj 8 0 0 aeabi_memcpy.S.obj 4 0 0 +--+-------------------------------------+--------+---------+-----------+ Total: 820 0 0 D:/SVN/P220003_EFS/branches/A-20_Firmware/0010_EFS_FC/GKO_Devel/EFS_FC/IPC/Debug.R5/IPC.lib pec_prom.o 4598 0 11 terminal.o 2838 147 1092 pec_uart.o 680 0 2196 IPCTransceive.o 690 94 0 termcom_common.o 480 281 4 IPCInterface.o 0 0 228 pec_crc.o 222 0 0 pec_queue.o 180 0 0 pec_uart_wrapper.o 134 0 4 pec_ip_common.o 96 0 0 build.o 10 22 0 +--+-------------------------------------+--------+---------+-----------+ Total: 9928 544 3535 D:/SVN/SDK/trunk/ti/mcu_plus_sdk_am64x/source/board/lib/board.am64x.r5f.ti-arm-clang.debug.lib flash_nor_ospi.obj 5848 88 64 eeprom_at24c.obj 920 0 28 flash.obj 864 0 0 led_tpic2810.obj 692 0 24 led.obj 150 0 0 +--+-------------------------------------+--------+---------+-----------+ Total: 8474 88 116 D:/SVN/SDK/trunk/ti/mcu_plus_sdk_am64x/source/drivers/lib/drivers.am64x.r5f.ti-arm-clang.debug.lib mmcsd_v0.obj 12950 106 296 sciclient_rm_irq.obj 9822 0 40 uart_v0.obj 8704 313 156 udma_rm.obj 8342 0 0 i2c_v0.obj 7888 158 156 udma_ch.obj 7502 0 0 ospi_v0.obj 5852 165 156 ospi_phy.obj 4754 0 340 csl_bcdma.obj 4532 0 0 udma_event.obj 4374 0 0 lpddr4_16bit.obj 3442 0 306 soc.obj 3088 123 17 ipc_notify_v0.obj 2618 381 168 lpddr4.obj 2712 0 0 ddr.obj 1996 418 36 bootloader_uniflash.obj 2442 0 0 sciclient.obj 2278 0 25 sciclient_irq_rm.obj 0 1612 332 udma_ring_common.obj 1884 0 0 sciclient_pm.obj 1864 0 0 udma_soc.obj 1142 468 0 ospi_dma_udma.obj 1352 210 12 csl_lcdma_ringacc.obj 1506 0 0 udma_ring_lcdma.obj 1410 0 0 csl_pktdma.obj 1260 0 0 mmcsd_priv.obj 1150 55 48 bootloader_mmcsd_raw.obj 1238 0 0 udma_utils.obj 990 0 132 sciclient_rm.obj 984 0 0 udma_flow.obj 978 0 0 udma_rmcfg_common.obj 912 0 0 udma_rmcfg.obj 122 552 88 csl_intaggr.obj 678 0 0 uart_dma.obj 532 75 0 crc16.obj 82 512 0 csl_emif.obj 538 0 0 pinmux.obj 490 0 0 sciclient_fmwSecureProxyMap.obj 0 300 0 ipc_notify_v0_cfg.obj 0 0 283 sciclient_soc_priv.obj 232 0 32 ospi_dma.obj 260 0 0 udma.obj 254 0 0 spinlock.obj 222 0 0 bootloader_xmodem.obj 184 0 4 sciclient_procboot.obj 100 0 0 csl_sec_proxy.obj 28 0 0 +--+-------------------------------------+--------+---------+-----------+ Total: 113688 5448 2627 D:/SVN/SDK/trunk/ti/mcu_plus_sdk_am64x/source/fs/freertos_fat/lib/freertos_fat.am64x.r5f.ti-arm-clang.debug.lib ff_dir.obj 8696 34 0 ff_file.obj 6972 34 0 ff_ioman.obj 5906 568 1 ff_format.obj 4160 376 0 ff_fat.obj 4130 0 0 ff_stdio.obj 1704 53 0 ff_crc.obj 160 1536 0 ff_mmcsd.obj 1250 175 0 ff_string.obj 1354 0 0 ff_sys.obj 842 215 100 ff_memory.obj 224 0 0 portable.obj 134 0 0 +--+-------------------------------------+--------+---------+-----------+ Total: 35532 2991 101 D:/SVN/SDK/trunk/ti/mcu_plus_sdk_am64x/source/kernel/nortos/lib/nortos.am64x.r5f.ti-arm-clang.debug.lib printf.obj 6988 98 0 HwiP_armv7r_vim.obj 1552 0 4108 ClockP_nortos.obj 1382 90 56 TimerP.obj 814 259 0 HwiP_armv7r_handlers_nortos.obj 980 0 0 CacheP_armv7r_asm.obj 848 0 0 SemaphoreP_nortos.obj 534 107 0 MpuP_armv7r.obj 582 0 0 ClockP_nortos_r5.obj 336 176 0 EventP_nortos.obj 356 91 0 CacheP_armv7r.obj 352 8 0 DebugP_log.obj 212 45 4 boot_armv7r_asm.obj 252 0 0 AddrTranslateP.obj 234 0 12 PmuP_armv7r.obj 168 0 8 HwiP_armv7r_handlers_nortos_asm.obj 172 0 0 HwiP_armv7r_asm.obj 136 0 0 MpuP_armv7r_asm.obj 120 0 0 DebugP_nortos.obj 68 0 0 HwiP_armv7r_vectors_nortos_asm.obj 64 0 0 PmuP_armv7r_asm.obj 48 0 0 boot_armv7r.obj 48 0 0 CpuId_armv7r.obj 40 0 0 CpuId_armv7r_asm.obj 12 0 0 TaskP_nortos.obj 2 0 0 +--+-------------------------------------+--------+---------+-----------+ Total: 16300 874 4188 D:/SVN/SDK/trunk/ti/mcu_plus_sdk_am64x/source/networking/enet/lib/enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib enet_udma_priv.obj 12888 2982 85 cpsw.obj 11658 3427 401 enet_udma.obj 11342 2923 1 cpsw_ale_ioctl.obj 11738 1781 0 cpsw_ale.obj 7728 1698 1005 enetphy.obj 7332 2067 594 enet_appmemutils.obj 4924 3998 249 enet_rm.obj 6446 2129 261 cpsw_ioctl.obj 4944 3152 1 enet.obj 4648 1847 1417 csl_cpsw.obj 7854 0 0 csl_cpsw_ale_9g_tblcfg.obj 5548 1012 0 cpsw_macport.obj 3774 1437 741 cpsw_macport_ioctl.obj 1676 4180 1 enet_rm_ioctl.obj 4154 1385 1 enet_apputils.obj 910 4524 1 enet_osal_dflt.obj 1208 212 3088 enet_phymdio_dflt.obj 2914 1153 145 dp83867.obj 2842 1287 40 mdio.obj 2606 1155 233 cpsw_cpts_ioctl.obj 1268 2510 0 mdio_ioctl.obj 2272 1418 0 cpsw_stats.obj 2194 1140 225 cpsw_hostport.obj 2006 955 281 mdio_manual_ioctl.obj 2186 1053 0 enet_osal.obj 1986 1055 61 cpsw_cpts.obj 1700 894 481 cpsw_macport_est.obj 1528 850 81 enet_queue.obj 1486 594 1 cpsw_stats_ioctl.obj 1126 823 1 cpsw_macport_est_ioctl.obj 218 1598 1 cpsw_hostport_ioctl.obj 534 1251 0 cpsw_est.obj 1030 638 65 enet_utils.obj 1114 350 217 enet_apputils_k3.obj 1298 314 0 cpsw_est_ioctl.obj 872 721 1 csl_cpgmac_sl.obj 1510 0 0 csl_mdio.obj 1500 0 0 enet_hostport.obj 882 301 1 csl_cpts.obj 1124 0 0 enet_ioctlutils.obj 700 420 0 k3_soc.obj 656 216 0 enet_udmautils.obj 534 233 0 generic_phy.obj 512 167 40 cpsw_ioctl_register.obj 612 0 0 enet_rm_ioctl_register.obj 408 0 0 enet_utils_dflt.obj 178 137 0 cpsw_macport_intervlan.obj 290 0 0 cpsw_ale_ioctl_register.obj 272 0 0 cpsw_hostport_ioctl_register.obj 272 0 0 cpsw_macport_ioctl_register.obj 68 0 0 mdio_ioctl_register.obj 68 0 0 enet_trace.obj 56 0 1 +--+-------------------------------------+--------+---------+-----------+ Total: 149594 59987 9721 D:/SVN/SDK/trunk/ti/mcu_plus_sdk_am64x/source/networking/enet/lib/lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib lwip2enet.obj 7052 876 1566 lwip2lwipif.obj 1816 258 0 custom_pbuf.obj 1002 493 1 pbufQ.obj 552 123 13 +--+-------------------------------------+--------+---------+-----------+ Total: 10422 1750 1580 D:/SVN/SDK/trunk/ti/mcu_plus_sdk_am64x/source/networking/lwip/lib/lwip-contrib-nortos.am64x.r5f.ti-arm-clang.debug.lib tcpecho_raw.obj 1080 169 4 +--+-------------------------------------+--------+---------+-----------+ Total: 1080 169 4 D:/SVN/SDK/trunk/ti/mcu_plus_sdk_am64x/source/networking/lwip/lib/lwip-nortos.am64x.r5f.ti-arm-clang.debug.lib memp.obj 812 941 81507 tcp.obj 11730 2561 29 tcp_in.obj 12760 1294 56 tcp_out.obj 11298 2543 0 dhcp.obj 10216 1180 63 pbuf.obj 6094 1349 1 etharp.obj 5470 823 241 lwiperf.obj 4074 2286 4 udp.obj 4888 1004 6 ip4_frag.obj 4548 735 6 altcp_tcp.obj 4076 741 0 netif.obj 2800 1016 13 ip4.obj 3448 217 6 dns.obj 1762 228 1160 igmp.obj 1918 969 8 tftp_server.obj 1980 486 36 icmp.obj 1716 305 0 autoip.obj 1486 308 0 timeouts.obj 1020 375 12 inet_chksum.obj 1218 171 0 mem.obj 834 275 0 stats.obj 22 544 492 altcp.obj 948 0 0 raw.obj 582 261 4 ethernet.obj 612 205 0 ip4_addr.obj 420 8 16 def.obj 328 0 0 init.obj 56 0 0 ip.obj 0 0 24 sys_arch.obj 18 0 0 +--+-------------------------------------+--------+---------+-----------+ Total: 97134 20825 83684 Heap: 0 0 128000 Stack: 0 0 64000 +--+-------------------------------------+--------+---------+-----------+ Grand Total: 506938 148653 268906796 VENEERS callee name veneer name callee addr veneer addr call addr call info -------------- ----------- --------- ---------------- main $Ven$AT$L$PI$$main 9004e791 700f6dec 700f6d84 nortos.am64x.r5f.ti-arm-clang.debug.lib : boot_armv7r_asm.obj (.text.boot) _system_pre_init $Ven$AT$L$PI$$_system_pre_init 9009fe71 700f6e00 700f6d74 nortos.am64x.r5f.ti-arm-clang.debug.lib : boot_armv7r_asm.obj (.text.boot) [2 trampolines] [2 trampoline calls] FAR CALL TRAMPOLINES callee name trampoline name callee addr tramp addr call addr call info -------------- ----------- --------- ---------------- assembly $Tramp$TT$L$PI$$assembly 900a3431 700f6058 700f5a96 nortos.am64x.r5f.ti-arm-clang.debug.lib : HwiP_armv7r_vim.obj (.text.hwi) 700f5b18 : HwiP_armv7r_vim.obj (.text.hwi) 700f5bd0 : HwiP_armv7r_vim.obj (.text.hwi) exit $Tramp$AA$L$PI$$exit 90095294 700f6dd4 700f6d8c nortos.am64x.r5f.ti-arm-clang.debug.lib : boot_armv7r_asm.obj (.text.boot) __TI_auto_init_nobinit_nopinit $Tramp$AA$L$PI$$__TI_auto_init_nobinit_nopinit 900960f0 700f6df8 700f6d80 nortos.am64x.r5f.ti-arm-clang.debug.lib : boot_armv7r_asm.obj (.text.boot) CacheP_wbInv $Tramp$AA$L$PI$$CacheP_wbInv 700f6680 9002a868 9002f02e drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_transfer) 90056594 : ddr.obj (.text.DDR_inlineECCCfg) 900565e6 : ddr.obj (.text.DDR_inlineECCCfg) 90056638 : ddr.obj (.text.DDR_inlineECCCfg) 9005b68e : ospi_dma_udma.obj (.text.OspiDma_udmaUpdateSubmitTR) 9007ae3e : mmcsd_v0.obj (.text.MMCSD_setupADMA2) 900a1d3e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_cacheWbInv) HwiP_disable $Tramp$AA$L$PI$$HwiP_disable 700f64e0 9002ba84 9003a6d8 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_init) 900441de : sciclient.obj (.text.Sciclient_service) 9004fc76 : udma_event.obj (.text.Udma_eventAllocResource) 900540ca : uart_v0.obj (.text.UART_write) 90055888 : i2c_v0.obj (.text.I2C_transfer) 900561d2 : uart_v0.obj (.text.UART_read) 90065692 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_registerIntr) 9006a69c IPC.lib : IPCTransceive.o (.text.IPC_vTransceiver) 9006a6f4 : IPCTransceive.o (.text.IPC_vTransceiver) 9006a756 : IPCTransceive.o (.text.IPC_vTransceiver) 9006ebec nortos.am64x.r5f.ti-arm-clang.debug.lib : EventP_nortos.obj (.text.EventP_waitBits) 9006ec42 : EventP_nortos.obj (.text.EventP_waitBits) 900705c6 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_createMutex) 900716ca nortos.am64x.r5f.ti-arm-clang.debug.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_pend) 9007171a : SemaphoreP_nortos.obj (.text.SemaphoreP_pend) 90072d46 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_sendMsg) 90072d6a : ipc_notify_v0.obj (.text.IpcNotify_sendMsg) 90073a08 : udma_event.obj (.text.Udma_eventFreeResource) 9007c16a nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_stop) 9007c5a2 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_waitSync) 9007f56a : uart_v0.obj (.text.UART_readCancelNoCB) 9008047a nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_destruct) 90083916 drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ring_common.obj (.text.Udma_ringQueueRaw) 90084bc4 : udma_ring_common.obj (.text.Udma_ringDequeueRaw) 90085afa : uart_v0.obj (.text.UART_writeCancelNoCB) 9008853e lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.text.pbufQ_enQ) 9008902e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_deleteMutex) 90089d8c : enet_osal_dflt.obj (.text.EnetOsalDflt_unregisterIntr) 9008aade IPC.lib : IPCTransceive.o (.text.IPC_vNotify_recvCallback) 9008ba18 nortos.am64x.r5f.ti-arm-clang.debug.lib : DebugP_log.obj (.text._DebugP_assert) 9008f73c drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_registerClient) 9008fe9c lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.text.pbufQ_deQ) 900912ba IPC.lib : IPCTransceive.o (.text.IPC_s32NotifySend) 90092bda nortos.am64x.r5f.ti-arm-clang.debug.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_post) 90099148 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_unregisterClient) 9009955a nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_start) 9009de46 : DebugP_log.obj (.text.DebugP_logZoneEnable) 9009ee6c : EventP_nortos.obj (.text.EventP_setBits) 9009ff06 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.text.pbufQ_init) 900a34c2 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_disableAllIntr) HwiP_Params_init $Tramp$TT$L$PI$$HwiP_Params_init 700f5be1 9002cb58 9003a77a drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_init) 9003f35a : i2c_v0.obj (.text.I2C_open) 9003ff54 : udma_event.obj (.text.Udma_eventConfig) 90049c7c : uart_v0.obj (.text.UART_open) 9004baea : mmcsd_v0.obj (.text.MMCSD_open) 90054e62 : ospi_v0.obj (.text.OSPI_open) 9006572c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_registerIntr) 900668c0 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos_r5.obj (.text.ClockP_init) HwiP_construct $Tramp$TT$L$PI$$HwiP_construct 700f5c11 9002e108 9003a7a6 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_init) 9003f382 : i2c_v0.obj (.text.I2C_open) 9003ff78 : udma_event.obj (.text.Udma_eventConfig) 90049ca6 : uart_v0.obj (.text.UART_open) 9004bb0a : mmcsd_v0.obj (.text.MMCSD_open) 90054e8a : ospi_v0.obj (.text.OSPI_open) 9006576c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_registerIntr) 900668e0 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos_r5.obj (.text.ClockP_init) HwiP_restore $Tramp$AA$L$PI$$HwiP_restore 700f6520 9002e7c4 9003a7be drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_init) 90044320 : sciclient.obj (.text.Sciclient_service) 9004fcb6 : udma_event.obj (.text.Udma_eventAllocResource) 90054110 : uart_v0.obj (.text.UART_write) 900558ac : i2c_v0.obj (.text.I2C_transfer) 900558ce : i2c_v0.obj (.text.I2C_transfer) 90056218 : uart_v0.obj (.text.UART_read) 9006570c enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_registerIntr) 9006a6cc IPC.lib : IPCTransceive.o (.text.IPC_vTransceiver) 9006a6f0 : IPCTransceive.o (.text.IPC_vTransceiver) 9006a738 : IPCTransceive.o (.text.IPC_vTransceiver) 9006a7a6 : IPCTransceive.o (.text.IPC_vTransceiver) 9006ec3e nortos.am64x.r5f.ti-arm-clang.debug.lib : EventP_nortos.obj (.text.EventP_waitBits) 9006ec94 : EventP_nortos.obj (.text.EventP_waitBits) 90070640 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_createMutex) 90071716 nortos.am64x.r5f.ti-arm-clang.debug.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_pend) 90071776 : SemaphoreP_nortos.obj (.text.SemaphoreP_pend) 90072d66 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_sendMsg) 90072dc0 : ipc_notify_v0.obj (.text.IpcNotify_sendMsg) 90073a34 : udma_event.obj (.text.Udma_eventFreeResource) 9007c184 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_stop) 9007c1b6 : ClockP_nortos.obj (.text.ClockP_stop) 9007c20e : ClockP_nortos.obj (.text.ClockP_stop) 9007c5c2 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_waitSync) 9007f5f0 : uart_v0.obj (.text.UART_readCancelNoCB) 90080490 nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_destruct) 9008050e : ClockP_nortos.obj (.text.ClockP_destruct) 9008392e drivers.am64x.r5f.ti-arm-clang.debug.lib : udma_ring_common.obj (.text.Udma_ringQueueRaw) 90084bda : udma_ring_common.obj (.text.Udma_ringDequeueRaw) 90085b66 : uart_v0.obj (.text.UART_writeCancelNoCB) 900885b0 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.text.pbufQ_enQ) 9008905a enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_deleteMutex) 90089db8 : enet_osal_dflt.obj (.text.EnetOsalDflt_unregisterIntr) 9008ab20 IPC.lib : IPCTransceive.o (.text.IPC_vNotify_recvCallback) 9008f780 drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_registerClient) 9008fef0 lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.text.pbufQ_deQ) 900912fa IPC.lib : IPCTransceive.o (.text.IPC_s32NotifySend) 90092c26 nortos.am64x.r5f.ti-arm-clang.debug.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_post) 9009917a drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_unregisterClient) 9009958a nortos.am64x.r5f.ti-arm-clang.debug.lib : ClockP_nortos.obj (.text.ClockP_start) 9009de62 : DebugP_log.obj (.text.DebugP_logZoneEnable) 9009ee7e : EventP_nortos.obj (.text.EventP_setBits) 9009ff1c lwipif-cpsw-nortos.am64x.r5f.ti-arm-clang.debug.lib : pbufQ.obj (.text.pbufQ_init) 900a2dc8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_restoreAllIntr) CacheP_wb $Tramp$AA$L$PI$$CacheP_wb 700f6644 9002f454 9004ff2c drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_dma_udma.obj (.text.OspiDma_udmaOpen) 9005b684 : ospi_dma_udma.obj (.text.OspiDma_udmaUpdateSubmitTR) 900992a4 : udma_ring_lcdma.obj (.text.Udma_lcdmaRingaccMemOps) 900a1d1e enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_cacheWb) HwiP_disableInt $Tramp$TT$L$PI$$HwiP_disableInt 700f5ad1 9002fa64 90055910 drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_transfer) 90079d02 : udma_event.obj (.text.Udma_eventUnRegister) 900a2da8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_disableIntr) HwiP_enableInt $Tramp$TT$L$PI$$HwiP_enableInt 700f5a91 90030064 9005592e drivers.am64x.r5f.ti-arm-clang.debug.lib : i2c_v0.obj (.text.I2C_transfer) 900a2db8 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_enableIntr) HwiP_destruct $Tramp$TT$L$PI$$HwiP_destruct 700f5e11 90030664 9005a8e6 drivers.am64x.r5f.ti-arm-clang.debug.lib : uart_v0.obj (.text.UART_close) 90073a44 : udma_event.obj (.text.Udma_eventFreeResource) 90077af4 : i2c_v0.obj (.text.I2C_close) 9007db34 : ospi_v0.obj (.text.OSPI_close) 90089d88 enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_unregisterIntr) 9008dfbc drivers.am64x.r5f.ti-arm-clang.debug.lib : mmcsd_v0.obj (.text.MMCSD_close) CacheP_inv $Tramp$TT$L$PI$$CacheP_inv 700f69b1 900311c4 9005b6be drivers.am64x.r5f.ti-arm-clang.debug.lib : ospi_dma_udma.obj (.text.OspiDma_udmaUpdateSubmitTR) 900992b8 : udma_ring_lcdma.obj (.text.Udma_lcdmaRingaccMemOps) 900a1cfe enet-cpsw.am64x.r5f.ti-arm-clang.debug.lib : enet_osal_dflt.obj (.text.EnetOsalDflt_cacheInv) _DebugP_assertNoLog $Tramp$TT$L$PI$$_DebugP_assertNoLog 700f6db1 90031744 9006c740 ti_drivers_config.o (.text.System_init) 900731ac nortos.am64x.r5f.ti-arm-clang.debug.lib : AddrTranslateP.obj (.text.AddrTranslateP_getLocalAddr) 90078c8a drivers.am64x.r5f.ti-arm-clang.debug.lib : ipc_notify_v0.obj (.text.IpcNotify_isr) 9008aace IPC.lib : IPCTransceive.o (.text.IPC_vNotify_recvCallback) 9008ab26 : IPCTransceive.o (.text.IPC_vNotify_recvCallback) 9009327c ti_power_clock_config.o (.text.Module_clockSetFrequency) 9009699c ti_power_clock_config.o (.text.Module_clockEnable) HwiP_init $Tramp$TT$L$PI$$HwiP_init 700f5e81 90032738 90097f24 ti_dpl_config.o (.text.Dpl_init) HwiP_enable $Tramp$AA$L$PI$$HwiP_enable 700f6500 90032c88 90097f5c ti_dpl_config.o (.text.Dpl_init) HwiP_inISR $Tramp$TT$L$PI$$HwiP_inISR 700f6031 90034108 900992de nortos.am64x.r5f.ti-arm-clang.debug.lib : DebugP_nortos.obj (.text._DebugP_logZone) abort $Tramp$AA$L$PI$$abort 700f6e10 90034fc4 900952d8 libc.a : exit.c.obj (.text.exit) 900a07d8 : assert.c.obj (.text._abort_msg) [18 trampolines] [142 trampoline calls] GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name address name ------- ---- 90073191 AddrTranslateP_getLocalAddr 9009b6d1 Board_driversOpen 90095bf1 Board_eepromClose 90080311 Board_eepromOpen 90095c41 Board_flashClose 9007b1a1 Board_flashOpen 900a36b1 Board_init 90095411 Board_ledClose 9007df41 Board_ledOpen 9004de91 Bootloader_MmcsdRaw_readFromOffset 900469b1 Bootloader_MmcsdRaw_writeToOffset 900437b1 Bootloader_uniflashProcessFlashCommands 90092331 Bootloader_xmodemReceive 90093ad1 Bootloader_xmodemTransmit 700f6e10 C$$EXIT 900944c4 C$$IO$$ 9002e7d1 CFU_vprintStatus 90024002 CMP_EVENT_INTROUTER0_outp_0_15_to_GICSS0_spi_48_63 9002400a CMP_EVENT_INTROUTER0_outp_16_23_to_R5FSS0_CORE0_intr_48_55 90024012 CMP_EVENT_INTROUTER0_outp_16_23_to_R5FSS0_CORE1_intr_48_55 9002401a CMP_EVENT_INTROUTER0_outp_24_31_to_R5FSS1_CORE0_intr_48_55 90024022 CMP_EVENT_INTROUTER0_outp_24_31_to_R5FSS1_CORE1_intr_48_55 9002402a CMP_EVENT_INTROUTER0_outp_32_39_to_DMASS0_INTAGGR_0_intaggr_levi_pend_0_7 90024032 CPSW0_cpts_comp_0_0_to_CMP_EVENT_INTROUTER0_in_80_80 9002403a CPSW0_cpts_genf0_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_21_21 90024042 CPSW0_cpts_genf1_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_22_22 9002404a CPSW0_cpts_sync_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_34_34 900a3101 CPS_UncachedRead32 900a2b31 CPS_UncachedWrite32 90024052 CPTS0_cpts_comp_0_0_to_CMP_EVENT_INTROUTER0_in_82_82 9002405a CPTS0_cpts_genf0_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_16_16 90024062 CPTS0_cpts_genf1_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_17_17 9002406a CPTS0_cpts_genf2_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_18_18 90024072 CPTS0_cpts_genf3_4_4_to_TIMESYNC_EVENT_INTROUTER0_in_19_19 9002407a CPTS0_cpts_genf4_5_5_to_TIMESYNC_EVENT_INTROUTER0_in_20_20 90024082 CPTS0_cpts_genf5_6_6_to_TIMESYNC_EVENT_INTROUTER0_in_24_24 9002408a CPTS0_cpts_sync_7_7_to_TIMESYNC_EVENT_INTROUTER0_in_35_35 9009d091 CSL_CPGMAC_SL_disableCastagnoliCRC 9009d0c1 CSL_CPGMAC_SL_disableLoopback 9009d0f1 CSL_CPGMAC_SL_enableCastagnoliCRC 9009f0f1 CSL_CPGMAC_SL_enableIdleMode 9009f121 CSL_CPGMAC_SL_enableLoopback 90061ec1 CSL_CPGMAC_SL_getInterVLANCfg 900a1441 CSL_CPGMAC_SL_getMacControlReg 90081dc1 CSL_CPGMAC_SL_getMacStatusReg 900a0b41 CSL_CPGMAC_SL_isGMIIEnabled 9009db71 CSL_CPGMAC_SL_isMACResetDone 9009f151 CSL_CPGMAC_SL_resetMac 9004c7c1 CSL_CPGMAC_SL_setInterVLANCfg 900a0b61 CSL_CPGMAC_SL_setMacControlReg 9009c381 CSL_CPGMAC_SL_setRxMaxLen 9009dba1 CSL_CPSW_clearAleEntry 900a2211 CSL_CPSW_clearAleTable 9009f181 CSL_CPSW_disableAlePolicerThread 900a2231 CSL_CPSW_disableAleVlanAware 900a05c1 CSL_CPSW_disableCutThru 900a2251 CSL_CPSW_disableP0TxCastagnoliCRC 900a2271 CSL_CPSW_disablePort0 90085541 CSL_CPSW_disablePortPassPriTag 900a2291 CSL_CPSW_disableVlanAware 900a22b1 CSL_CPSW_enableAleVlanAware 900a05e1 CSL_CPSW_enableCutThru 900a22d1 CSL_CPSW_enableP0TxCastagnoliCRC 900a22f1 CSL_CPSW_enablePort0 900855e1 CSL_CPSW_enablePortPassPriTag 900a2311 CSL_CPSW_enableVlanAware 900970e1 CSL_CPSW_extractVid 900897a1 CSL_CPSW_getALEAddressType 90093b31 CSL_CPSW_getALEEntryType 90088e31 CSL_CPSW_getALEPolicerEntryType 900a3111 CSL_CPSW_getAleControlReg 90092991 CSL_CPSW_getAleEthertypeEntry 900885c1 CSL_CPSW_getAleIPv4Entry 90062be1 CSL_CPSW_getAleIPv6Entry 900a0b81 CSL_CPSW_getAleIPv6HighEntryIndex 90097131 CSL_CPSW_getAleIPv6HighEntryOffset 900a3121 CSL_CPSW_getAleIPv6LowEntryIndex 9008e221 CSL_CPSW_getAleOUIAddrEntry 90078df1 CSL_CPSW_getAleOutVlanEntry 900947c1 CSL_CPSW_getAlePolicerControlReg 90048651 CSL_CPSW_getAlePolicerEntry 9009f1b1 CSL_CPSW_getAlePolicerGlobConfig 90074811 CSL_CPSW_getAlePortControlReg 9009ebf1 CSL_CPSW_getAleStatusNumAleEntries 90090f91 CSL_CPSW_getAleStatusNumPolicers 90097de1 CSL_CPSW_getAleStatusRamDepth 900a0001 CSL_CPSW_getAleStatusVlanMask 90099b91 CSL_CPSW_getAleTableEntry 900777c1 CSL_CPSW_getAleUnicastAddrEntry 90096c81 CSL_CPSW_getAleUnkownVlanReg 9009b711 CSL_CPSW_getAleVersionInfo 90077b41 CSL_CPSW_getAleVlanEntry 900754c1 CSL_CPSW_getAleVlanUnicastAddrEntry 9008ed11 CSL_CPSW_getCppiP0Control 90073551 CSL_CPSW_getCpswControlReg 9009b751 CSL_CPSW_getCpswVersionInfo 90099bd1 CSL_CPSW_getEthertypeMax 9009a451 CSL_CPSW_getIpv4IgnBitsMax 9009a491 CSL_CPSW_getIpv6IgnBitsMax 90089831 CSL_CPSW_getPTypeReg 900a2331 CSL_CPSW_getPort0FlowIdOffset 900a2351 CSL_CPSW_getPort0RxMaxLen 90075d81 CSL_CPSW_getPortControlReg 9007d7e1 CSL_CPSW_getPortEstConfig 90091931 CSL_CPSW_getPortStats 90084291 CSL_CPSW_getTxMaxLenPerPriority 900a2b41 CSL_CPSW_isAleVlanAwareEnabled 9008b431 CSL_CPSW_mapMacAddr2TableWord 9008ed81 CSL_CPSW_mapTableWord2MacAddr 900898c1 CSL_CPSW_setAleAgingTimerReg 900a2b51 CSL_CPSW_setAleControlReg 9009b211 CSL_CPSW_setAleCtrl2IPPktFilterConfig 9009b251 CSL_CPSW_setAleCtrl2MalformedFrameConfig 90088651 CSL_CPSW_setAleEthertypeEntry 9008edf1 CSL_CPSW_setAleIPNxtHdrWhitelist 90065a11 CSL_CPSW_setAleIPv4Entry 90044e81 CSL_CPSW_setAleIPv6Entry 900686a1 CSL_CPSW_setAleMcastAddrEntry 9007d8a1 CSL_CPSW_setAleOUIAddrEntry 9006b771 CSL_CPSW_setAleOutVlanEntry 90089951 CSL_CPSW_setAlePolicerControlReg 90047c11 CSL_CPSW_setAlePolicerEntry 9009cc11 CSL_CPSW_setAlePolicerGlobConfig 90092391 CSL_CPSW_setAlePolicerTestControlReg 9005f161 CSL_CPSW_setAlePortControlReg 9009e411 CSL_CPSW_setAlePortState 900a1461 CSL_CPSW_setAlePrescaleReg 90066691 CSL_CPSW_setAleUnicastAddrEntry 900a0ba1 CSL_CPSW_setAleUnknwnVlanMemberReg 900a0bc1 CSL_CPSW_setAleUnknwnVlanRegMcastReg 900a0be1 CSL_CPSW_setAleUnknwnVlanUnregMcastReg 900a0c01 CSL_CPSW_setAleUnknwnVlanUntagReg 9006ae71 CSL_CPSW_setAleVlanEntry 90066551 CSL_CPSW_setAleVlanMcastAddrEntry 90064c51 CSL_CPSW_setAleVlanUnicastAddrEntry 90086381 CSL_CPSW_setCppiP0Control 900673a1 CSL_CPSW_setCpswControlReg 900a1481 CSL_CPSW_setCpswFrequency 9007f811 CSL_CPSW_setPTypeReg 900a0c21 CSL_CPSW_setPort0FlowIdOffset 900a0c41 CSL_CPSW_setPort0RxMaxLen 9009ab91 CSL_CPSW_setPort0VlanReg 90078911 CSL_CPSW_setPortControlReg 9006e981 CSL_CPSW_setPortEstConfig 900434c1 CSL_CPSW_setPortRxDscpMap 90083301 CSL_CPSW_setPortStatsEnableReg 90080e01 CSL_CPSW_setPortVlanReg 9007a981 CSL_CPSW_setTxMaxLenPerPriority 9009d5a1 CSL_CPSW_setVlanLTypeReg 900a14a1 CSL_CPSW_setVlanType 90096141 CSL_CPSW_writeEstFetchCmd 900a14c1 CSL_CPTS_disableCpts 900a14e1 CSL_CPTS_disableInterrupt 900a1501 CSL_CPTS_enableCpts 900a1521 CSL_CPTS_enableInterrupt 9009b7d1 CSL_CPTS_getCptsVersionInfo 900994b1 CSL_CPTS_getESTFnLength 9008d9a1 CSL_CPTS_getEventInfo 90099c11 CSL_CPTS_getGENFnLength 900a1a91 CSL_CPTS_isRawInterruptStatusBitSet 900a1541 CSL_CPTS_popEvent 90071191 CSL_CPTS_setCntlReg 900a0ee1 CSL_CPTS_setRFTCLKSelectReg 9009a4d1 CSL_CPTS_setTSAddVal 90074271 CSL_CPTS_setupESTFn 900a2b61 CSL_MDIO_clearPollEnableMask 900a0f01 CSL_MDIO_clearUnmaskedLinkStatusChangeInt 900a08e1 CSL_MDIO_disableLinkStatusChangeInterrupt 900a2371 CSL_MDIO_disableStateChangeMode 900a2391 CSL_MDIO_disableStateMachine 900a23b1 CSL_MDIO_disableStatusChangeModeInterrupt 900a0601 CSL_MDIO_enableLinkStatusChangeInterrupt 900a0621 CSL_MDIO_enableManualMode 900a23d1 CSL_MDIO_enableStateChangeMode 900a23f1 CSL_MDIO_enableStateMachine 900a2411 CSL_MDIO_enableStatusChangeModeInterrupt 900a3131 CSL_MDIO_getClause45EnableMask 900a0f21 CSL_MDIO_getLinkStatusChangePhyAddr 900a3141 CSL_MDIO_getPollEnableMask 90095c91 CSL_MDIO_getVersionInfo 900a1ab1 CSL_MDIO_isPhyAlive 900a1ad1 CSL_MDIO_isPhyLinked 9009e441 CSL_MDIO_isPhyRegAccessComplete 900a2b71 CSL_MDIO_isStateChangeModeEnabled 900a1af1 CSL_MDIO_isUnmaskedLinkStatusChangeIntSet 90090051 CSL_MDIO_phyGetRegReadVal 90082f41 CSL_MDIO_phyInitiateRegReadC45 9007e841 CSL_MDIO_phyInitiateRegWriteC45 9007d061 CSL_MDIO_phyRegRead2 90087731 CSL_MDIO_phyRegWrite2 900a2b81 CSL_MDIO_readMdi 900a2b91 CSL_MDIO_setClause45EnableMask 900a0641 CSL_MDIO_setClkDivVal 900a2431 CSL_MDIO_setMdclkHigh 900a2451 CSL_MDIO_setMdclkLow 900a2471 CSL_MDIO_setMdoHigh 900a2491 CSL_MDIO_setMdoInputEnable 900a24b1 CSL_MDIO_setMdoLow 900a24d1 CSL_MDIO_setMdoOutputEnable 900a24f1 CSL_MDIO_setPollEnableMask 900a0901 CSL_MDIO_setPollIPG 9009ec21 CSL_armR5GetCpuID 90028a14 CSL_armR5ReadMpidrReg 9005e191 CSL_bcdmaChanOp 90087c41 CSL_bcdmaGetCfg 90097e31 CSL_bcdmaGetChanPeerReg 9009dbd1 CSL_bcdmaGetRxRT 9009dc01 CSL_bcdmaGetTxRT 9009abd1 CSL_bcdmaSetChanPeerReg 9009dc31 CSL_bcdmaSetRxRT 9009dc61 CSL_bcdmaSetTxRT 90097931 CSL_bcdmaTeardownRxChan 90097981 CSL_bcdmaTeardownTxChan 9009dc91 CSL_emifClearECCInterruptStatus 9009d181 CSL_emifConfig 9009a511 CSL_emifDisableECC 9009a551 CSL_emifEnableECC 9009dcc1 CSL_emifEnableECCInterrupts 9008e291 CSL_intaggrClrIntr 90094881 CSL_intaggrGetCfg 90081641 CSL_intaggrIsIntrPending 90075ae1 CSL_intaggrSetIntrEnable 90062011 CSL_lcdma_ringaccDequeue 9009dd21 CSL_lcdma_ringaccGetForwardRingOcc 9009d1b1 CSL_lcdma_ringaccGetReverseRingOcc 900a0031 CSL_lcdma_ringaccInitRingObj 90099c51 CSL_lcdma_ringaccIsTeardownComplete 9009ec51 CSL_lcdma_ringaccPop64 9009d1e1 CSL_lcdma_ringaccPush64 9008b4b1 CSL_pktdmaGetCfg 9009d211 CSL_pktdmaGetChanPeerReg 90096cd1 CSL_pktdmaGetRxRT 90096d21 CSL_pktdmaGetTxRT 9009d241 CSL_pktdmaSetChanPeerReg 9009ac51 CSL_pktdmaSetRxRT 9009ac91 CSL_pktdmaSetTxRT 9009c3c1 CSL_pktdmaTeardownRxChan 9009c401 CSL_pktdmaTeardownTxChan 900a0c81 CSL_secProxyGetDataAddr 700f6860 CacheP_configForceWrThru 700f6921 CacheP_disable 700f6550 CacheP_disableL1d 700f6578 CacheP_disableL1p 700f6971 CacheP_enable 700f6590 CacheP_enableL1d 700f65a8 CacheP_enableL1p 700f6854 CacheP_getCacheLevelInfo 700f681c CacheP_getEnabled 700f6891 CacheP_init 700f69b1 CacheP_inv 700f65c0 CacheP_invL1d 700f6634 CacheP_invL1dAll 700f65f8 CacheP_invL1p 700f663c CacheP_invL1pAll 700f6880 CacheP_setDLFO 700f6644 CacheP_wb 700f66bc CacheP_wbAll 700f6680 CacheP_wbInv 700f6764 CacheP_wbInvAll 700f677c CacheP_wbInvAllAsm 900a0941 ClockP_Params_init 9008e301 ClockP_construct 90080471 ClockP_destruct 900a3281 ClockP_getTicks 90087cd1 ClockP_getTimeUsec 900a2cf1 ClockP_getTimerCount 900667c1 ClockP_init 900a0661 ClockP_isActive 900a2551 ClockP_setTimeout 9009cc51 ClockP_sleep 90099551 ClockP_start 9007c161 ClockP_stop 900a1561 ClockP_ticksToUsec 900a2d01 ClockP_timerClearOverflowInt 9007b921 ClockP_timerTickIsr 900a0681 ClockP_usecToTicks 9008db21 ClockP_usleep 900461a1 CpswAle_addVlan 9009fa21 CpswAle_clearSelectedPolicerStats 9009bec1 CpswAle_clearTableEntry 90094c41 CpswAle_close 900948e1 CpswAle_delAllEntries 900572b1 CpswAle_delPolicerEntry 90048b71 CpswAle_findVlan 9008dc21 CpswAle_getFreeEntry 900a2571 CpswAle_getMaxAleEntries 900a2591 CpswAle_getMaxPolicers 900a0961 CpswAle_getVlanMcastPortMask 900608c1 CpswAle_initCfg 9006cef1 CpswAle_ioctl 90085681 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_ADD_MCAST 90077361 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_ADD_UCAST 9009e4a1 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_DEL_POLICER 9009f1e1 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_GET_DEFAULT_THREADCFG 9009b991 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_GET_POLICER 90092f31 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_REMOVE_ADDR 9009d271 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_REMOVE_LEARNED_ENTRIES 90096321 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_SET_DEFAULT_THREADCFG 900934d1 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_SET_POLICER 9009ecb1 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_SET_PORT_STATE 9009e4d1 CpswAle_mapBw2IdlIncVal 90033bf1 CpswAle_open 900a2d21 CpswAle_rejoin 900a0981 CpswAle_setAlePortState 900833a1 CpswAle_setPolicerControl 9008c7a1 CpswAle_setPolicerDefaultThreadCfg 9008f4f1 CpswAle_setVlanMcastPortMask 900a1c51 CpswCpts_close 900a0061 CpswCpts_initCfg 9006d001 CpswCpts_ioctl 900a0fe1 CpswCpts_ioctl_handler_CPSW_CPTS_IOCTL_DISABLE_INTR 900a1001 CpswCpts_ioctl_handler_CPSW_CPTS_IOCTL_ENABLE_INTR 90096371 CpswCpts_ioctl_handler_CPSW_CPTS_IOCTL_HANDLE_INTR 9006f421 CpswCpts_ioctl_handler_CPSW_CPTS_IOCTL_SET_ESTF 90056a01 CpswCpts_open 900a2d41 CpswCpts_rejoin 9004ab91 CpswEst_ioctl_handler_ENET_TAS_IOCTL_SET_STATE 9005c531 CpswEst_setState 90091001 CpswHostPort_close 90095ce1 CpswHostPort_initCfg 9005f2c1 CpswHostPort_ioctl 9009fa51 CpswHostPort_ioctl_handler_CPSW_HOSTPORT_GET_FLOW_ID_OFFSET 9009fa81 CpswHostPort_ioctl_handler_CPSW_HOSTPORT_SET_FLOW_ID_OFFSET 900a1021 CpswHostPort_ioctl_handler_ENET_HOSTPORT_IOCTL_DISABLE 900a1041 CpswHostPort_ioctl_handler_ENET_HOSTPORT_IOCTL_ENABLE 900a0091 CpswHostPort_ioctl_handler_ENET_HOSTPORT_IOCTL_GET_MAXLEN 90094d01 CpswHostPort_ioctl_handler_ENET_HOSTPORT_IOCTL_SET_INGRESS_DSCP_PRI_MAP 9009b9d1 CpswHostPort_ioctl_handler_ENET_HOSTPORT_IS_CSUM_OFFLOAD_ENABLED 90051031 CpswHostPort_open 9009fab1 CpswHostPort_rejoin 900845b1 CpswMacPortEst_ioctl_handler_ENET_TAS_IOCTL_SET_STATE 90099cd1 CpswMacPort_clearRouteId 9009ad11 CpswMacPort_close 90091a11 CpswMacPort_disablePort 9009ccd1 CpswMacPort_initCfg 90067d21 CpswMacPort_ioctl 900857c1 CpswMacPort_ioctlEst 9009cd11 CpswMacPort_ioctl_handler_CPSW_MACPORT_IOCTL_DISABLE 9007b3e1 CpswMacPort_ioctl_handler_CPSW_MACPORT_IOCTL_ENABLE 90075f41 CpswMacPort_ioctl_handler_ENET_MACPORT_IOCTL_SET_INGRESS_DSCP_PRI_MAP 90089b91 CpswMacPort_ioctl_handler_ENET_TAS_IOCTL_SET_STATE 90093c51 CpswMacPort_isRouteIdFree 90039391 CpswMacPort_open 90088f51 CpswMacPort_openEst 9009ece1 CpswMacPort_openInterVlan 9009fae1 CpswMacPort_rejoin 900a3481 CpswStats_close 9005f421 CpswStats_ioctl 90097e81 CpswStats_ioctl_handler_CPSW_STATS_IOCTL_SYNC 90054ee1 CpswStats_open 9009a5d1 CpswStats_rejoin 90087df1 CpswStats_resetHostStats 90070191 CpswStats_resetMacStats 9006ddd1 Cpsw_close 9009f211 Cpsw_disableEst 90090ac1 Cpsw_enableEst 9010f2b0 Cpsw_gDuplexNames 9010f280 Cpsw_gSpeedNames 9003eb01 Cpsw_handleLinkDown 90067991 Cpsw_initCfg 9005da61 Cpsw_internalIoctl_handler_ENET_IOCTL_REGISTER_DSTMAC_RX_FLOW 9008e3e1 Cpsw_internalIoctl_handler_ENET_IOCTL_REGISTER_RX_DEFAULT_FLOW 90053661 Cpsw_internalIoctl_handler_ENET_IOCTL_UNREGISTER_DSTMAC_RX_FLOW 9008eed1 Cpsw_internalIoctl_handler_ENET_IOCTL_UNREGISTER_RX_DEFAULT_FLOW 90071391 Cpsw_internalIoctl_handler_ENET_PER_IOCTL_ATTACH_CORE 9009ed11 Cpsw_internalIoctl_handler_ENET_PER_IOCTL_CLOSE_PORT_LINK 9007d1e1 Cpsw_internalIoctl_handler_ENET_PER_IOCTL_DETACH_CORE 9007d2a1 Cpsw_internalIoctl_handler_ENET_PER_IOCTL_IS_PORT_LINK_UP 90072b01 Cpsw_internalIoctl_handler_ENET_PER_IOCTL_OPEN_PORT_LINK 900488e1 Cpsw_ioctl 90089c21 Cpsw_ioctlEst 900a1081 Cpsw_isPortLinkUp 90038271 Cpsw_open 90044331 Cpsw_periodicTick 9009d2d1 Cpsw_poll 90084791 Cpsw_rejoin 9005fdc1 Cpsw_setDfltThreadCfg 9009d570 CycleCounterP_getCount32 90080ca1 CycleCounterP_init 90080d11 CycleCounterP_nsToTicks 90080cc1 CycleCounterP_reset 9010acbc DDRSS_ctlReg 9010c640 DDRSS_ctlRegNum 9010b974 DDRSS_phyIndepReg 9010c98e DDRSS_phyIndepRegNum 9010a4d0 DDRSS_phyReg 9010bed8 DDRSS_phyRegNum 9009e5f1 DDR_enableInlineECC 90081e71 DDR_init 9008ef41 DDR_socEnableVttRegulator 90024092 DMASS0_INTAGGR_0_intaggr_vintr_pend_0_39_to_GICSS0_spi_64_103 9002409a DMASS0_INTAGGR_0_intaggr_vintr_pend_120_127_to_R5FSS1_CORE0_intr_8_15 900240a2 DMASS0_INTAGGR_0_intaggr_vintr_pend_128_135_to_R5FSS1_CORE1_intr_8_15 900240aa DMASS0_INTAGGR_0_intaggr_vintr_pend_152_159_to_PRU_ICSSG0_pr1_slv_intr_16_23 900240b2 DMASS0_INTAGGR_0_intaggr_vintr_pend_160_167_to_PRU_ICSSG1_pr1_slv_intr_16_23 900240ba DMASS0_INTAGGR_0_intaggr_vintr_pend_168_183_to_MCU_M4FSS0_CORE0_nvic_32_47 900240c2 DMASS0_INTAGGR_0_intaggr_vintr_pend_40_71_to_R5FSS0_CORE0_intr_64_95 900240ca DMASS0_INTAGGR_0_intaggr_vintr_pend_40_71_to_R5FSS0_CORE1_intr_64_95 900240d2 DMASS0_INTAGGR_0_intaggr_vintr_pend_72_79_to_R5FSS0_CORE0_intr_8_15 900240da DMASS0_INTAGGR_0_intaggr_vintr_pend_80_87_to_R5FSS0_CORE1_intr_8_15 900240e2 DMASS0_INTAGGR_0_intaggr_vintr_pend_88_119_to_R5FSS1_CORE0_intr_64_95 900240ea DMASS0_INTAGGR_0_intaggr_vintr_pend_88_119_to_R5FSS1_CORE1_intr_64_95 9009de41 DebugP_logZoneEnable 90097f21 Dpl_init 9009c541 Drivers_ffClose 90084e71 Drivers_ffOpen 90095d81 Drivers_i2cClose 9007fc31 Drivers_i2cOpen 90095dd1 Drivers_mmcsdClose 90080521 Drivers_mmcsdOpen 900a0ce1 Drivers_open 90095e21 Drivers_ospiClose 90080f61 Drivers_ospiOpen 90095e71 Drivers_uartClose 900a3491 Drivers_uartInit 900805d1 Drivers_uartOpen 900a36d1 Drivers_udmaOpen 9009ad91 EEPROM_AT24C_close 9008a6b1 EEPROM_AT24C_open 90060a21 EEPROM_AT24C_read 9005c081 EEPROM_AT24C_write 9009d331 EEPROM_close 90090b31 EEPROM_open 90097221 EEPROM_read 90097271 EEPROM_write 900240f2 EPWM0_epwm_synco_o_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_39_39 900240fa EPWM3_epwm_synco_o_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_40_40 90024102 EPWM6_epwm_synco_o_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_41_41 9009de71 EnetAppRm_getIoctlPermissionInfo 9009dea1 EnetAppRm_getResPartInfo 900910e1 EnetAppSoc_getMacAddrList 90097f71 EnetAppSoc_releaseMacAddrList 9007e181 EnetAppUtils_addHostPortEntry 9008d1a1 EnetAppUtils_allocMac 90097fc1 EnetAppUtils_assertLocal 900a3051 EnetAppUtils_clkRateSet 900864a1 EnetAppUtils_delAddrEntry 9006f531 EnetAppUtils_enableClocks 9008c821 EnetAppUtils_freeMac 90073641 EnetAppUtils_initResourceConfig 9008b531 EnetAppUtils_isPortLinkUp 900a3291 EnetAppUtils_isPrintSupported 90069741 EnetAppUtils_mainMmrCtrl 900900c1 EnetAppUtils_print 90099d11 EnetAppUtils_printMacAddr 9008bbb1 EnetAppUtils_regDfltRxFlowForChIdx 900886e1 EnetAppUtils_regDstMacRxFlow 9006c961 EnetAppUtils_setDeviceState 9008bc31 EnetAppUtils_unregDfltRxFlowForChIdx 90088771 EnetAppUtils_unregDstMacRxFlow 9009d661 EnetApp_acquireHandleInfo 90078ab1 EnetApp_addMCastEntry 90063121 EnetApp_closeRxDma 90085861 EnetApp_closeTxDma 9007f291 EnetApp_coreAttach 90088801 EnetApp_coreDetach 900668f1 EnetApp_driverClose 900a06a1 EnetApp_driverInit 900601e1 EnetApp_driverOpen 9007d361 EnetApp_getEnetInstInfo 900a00c1 EnetApp_getEnetInstMacInfo 90081f21 EnetApp_getMacAddress 9005c6c1 EnetApp_getRxDmaHandle 90075061 EnetApp_getTxDmaHandle 900a1c71 EnetApp_getUdmaInstanceHandle 900595a1 EnetApp_initLinkArgs 90086da1 EnetApp_initPhyStateHandlerTask 90096871 EnetApp_isPortLinked 900a2871 EnetApp_phyStateHandler 900a15c1 EnetApp_releaseHandleInfo 9009d361 EnetApp_updateCpswInitCfg 900a3621 EnetBoard_getId 9007ca61 EnetBoard_getMacAddrList 900a15e1 EnetBoard_getMiiConfig 9009ed41 EnetBoard_getPhyCfg 9006f641 EnetBoard_setupPorts 90045ef1 EnetDma_closeRxCh 90047431 EnetDma_closeTxCh 9009c581 EnetDma_disableRxEvent 9009c5c1 EnetDma_disableTxEvent 9009c601 EnetDma_enableRxEvent 9009c641 EnetDma_enableTxEvent 90087e81 EnetDma_initPktInfo 90073731 EnetDma_initRxChParams 9007c461 EnetDma_initTxChParams 9002d331 EnetDma_openRxCh 9002ba91 EnetDma_openTxCh 9009ded1 EnetDma_registerRxEventCb 9009df01 EnetDma_registerTxEventCb 9005e751 EnetDma_retrieveRxPktQ 9005e8c1 EnetDma_retrieveTxPktQ 900559e1 EnetDma_submitRxPktQ 90055bb1 EnetDma_submitTxPktQ 9006d771 EnetHostPortDma_close 900a0121 EnetHostPortDma_closeRsvdFlow 9009f2a1 EnetHostPortDma_getDmaResInfo 9006d551 EnetHostPortDma_open 9009bf41 EnetHostPortDma_openRsvdFlow 9008dd21 EnetMem_allocDmaDesc 900505b1 EnetMem_allocEthPkt 90085f01 EnetMem_allocEthPktInfoMem 90084f11 EnetMem_allocRingMem 90040cf1 EnetMem_deInit 90097a21 EnetMem_freeDmaDesc 9009a711 EnetMem_freeRingMem 900a33c1 EnetMem_getCfg 900a25d1 EnetMem_init 90048e01 EnetMem_initMemObjs 90080681 EnetMod_close 90072291 EnetMod_ioctl 9009d391 EnetMod_ioctlFromIsr 90066a21 EnetMod_open 9007bda1 EnetOsalDflt_initCfg 9009ba51 EnetOsal_cacheInv 9009ba91 EnetOsal_cacheWb 9009bad1 EnetOsal_cacheWbInv 900a2dd1 EnetOsal_createMutex 900a2891 EnetOsal_deinit 900a1601 EnetOsal_deleteMutex 900a2de1 EnetOsal_disableAllIntr 90030671 EnetOsal_init 900a1621 EnetOsal_lockMutex 9009c681 EnetOsal_registerIntr 900a1641 EnetOsal_restoreAllIntr 900a09a1 EnetOsal_timerGetDiff 900a2df1 EnetOsal_timerRead 900a1661 EnetOsal_unlockMutex 900a1681 EnetOsal_unregisterIntr 900a33d1 EnetPhyMdioDflt_getPhyMdio 9008bd31 EnetPhyMdioDflt_ioctl 90065c91 EnetPhyMdioDflt_isAlive 90065dd1 EnetPhyMdioDflt_isLinked 90062d31 EnetPhyMdioDflt_readC22 9005f9a1 EnetPhyMdioDflt_readC45 90061261 EnetPhyMdioDflt_writeC22 9005ea31 EnetPhyMdioDflt_writeC45 9009e7d1 EnetPhy_close 9006fc91 EnetPhy_getId 9008e531 EnetPhy_getLinkCfg 90091b61 EnetPhy_initCfg 90073dc1 EnetPhy_isAlive 90098011 EnetPhy_isLinked 900581e1 EnetPhy_open 9009a791 EnetPhy_readExtReg 90089dd1 EnetPhy_readReg 9006d881 EnetPhy_rmwReg 90070f91 EnetPhy_tick 90088921 EnetPhy_writeReg 9006af91 EnetQueue_append 900825e1 EnetQueue_copyQ 9007e8f1 EnetQueue_deq 90071491 EnetQueue_enq 90082131 EnetQueue_enqHead 9008dea1 EnetQueue_getQCount 900a0151 EnetQueue_initQ 90072091 EnetQueue_verifyQCount 9003ca41 EnetRm_close 90038f51 EnetRm_detachCore 90089e61 EnetRm_findResource 90077441 EnetRm_freeResource 9006fd91 EnetRm_ioctl 9009df91 EnetRm_ioctl_handler_ENET_RM_IOCTL_ALLOC_MAC_ADDR 9009bb51 EnetRm_ioctl_handler_ENET_RM_IOCTL_ALLOC_RX_FLOW 9009dfc1 EnetRm_ioctl_handler_ENET_RM_IOCTL_ALLOC_TX_CH_PEERID 9009dff1 EnetRm_ioctl_handler_ENET_RM_IOCTL_ATTACH 9009fb71 EnetRm_ioctl_handler_ENET_RM_IOCTL_DETACH 9009f301 EnetRm_ioctl_handler_ENET_RM_IOCTL_FREE_MAC_ADDR 9009eda1 EnetRm_ioctl_handler_ENET_RM_IOCTL_FREE_RX_FLOW 9009f331 EnetRm_ioctl_handler_ENET_RM_IOCTL_FREE_TX_CH_PEERID 9005fb01 EnetRm_ioctl_handler_ENET_RM_IOCTL_INTERNAL_ALLOC_RX_FLOW 9007a161 EnetRm_ioctl_handler_ENET_RM_IOCTL_INTERNAL_FREE_RX_FLOW 9009edd1 EnetRm_ioctl_handler_ENET_RM_IOCTL_VALIDATE_RX_FLOW 9008b631 EnetRm_isCoreAttached 9005eba1 EnetRm_open 900a28d1 EnetRm_rejoin 90097361 EnetRm_validateCoreKey 9008b131 EnetSocJ7x_getIntrNum 900810c1 EnetSocJ7x_releaseIntrCfg 90081171 EnetSocJ7x_setupIntrCfg 900a3701 EnetSoc_deinit 90097a71 EnetSoc_getClkFreq 900a32b1 EnetSoc_getCoreId 9009c701 EnetSoc_getDmaHandle 90090131 EnetSoc_getEFusedMacAddrs 9009cdd1 EnetSoc_getEnetHandle 9009e831 EnetSoc_getEnetHandleByIdx 900a3641 EnetSoc_getEnetNum 90093651 EnetSoc_getIntrNum 900a2e21 EnetSoc_getIntrTriggerType 9009c741 EnetSoc_getMacPortCaps 9009e861 EnetSoc_getMacPortMax 9008a831 EnetSoc_getMacPortMii 9009bfc1 EnetSoc_getRxChPeerId 9009c781 EnetSoc_getRxFlowCount 9009c7c1 EnetSoc_getTxChCount 9009a7d1 EnetSoc_getTxChPeerId 900a3651 EnetSoc_init 9008a8b1 EnetSoc_releaseIntrCfg 9008a931 EnetSoc_setupIntrCfg 9009bb91 EnetTrace_trace 900a33e1 EnetUdmaMem_getCfg 90070a91 EnetUdmaStats_updateNotifyStats 900336d1 EnetUdma_allocRing 90085f91 EnetUdma_buffDescInit 900a2e31 EnetUdma_checkRxFlowSanity 900a2e41 EnetUdma_checkTxChSanity 900877c1 EnetUdma_close 9006f751 EnetUdma_closeRxCh 90051661 EnetUdma_closeRxRsvdFlow 9009c001 EnetUdma_deInitRxFreeDescQ 9009c041 EnetUdma_deInitTxFreeDescQ 90087851 EnetUdma_dmaDescCheck 90093051 EnetUdma_dmaDescDeque 9007f4a1 EnetUdma_dmaDescEnque 9009ee01 EnetUdma_dmaDescInit 900a32d1 EnetUdma_dmaDescQCount 900a1d71 EnetUdma_dmaDescQInit 9006d991 EnetUdma_flushRxFlowRing 9006daa1 EnetUdma_flushTxChRing 9009bbd1 EnetUdma_freeRing 9009ae51 EnetUdma_getMappedRxChStartIdx 9009f391 EnetUdma_getRxChFlowStartIdx 900a2e51 EnetUdma_getRxFlowCnt 9009e021 EnetUdma_getRxFlowUdmaInfo 9009c081 EnetUdma_getTxChUdmaInfo 9005d001 EnetUdma_initRxFreeDescQ 9004e551 EnetUdma_initTxFreeDescQ 90086fe1 EnetUdma_memMgrAllocRxFlowObj 90087071 EnetUdma_memMgrAllocTxChObj 9009ee31 EnetUdma_memMgrDeInit 90087101 EnetUdma_memMgrFreeRxFlowObj 90087191 EnetUdma_memMgrFreeTxChObj 90075141 EnetUdma_memMgrInit 90058f21 EnetUdma_open 90039bd1 EnetUdma_openRxCh 900311d1 EnetUdma_openRxRsvdFlow 900613c1 EnetUdma_registerEvent 90053281 EnetUdma_retrievePkts 9005a5e1 EnetUdma_ringDequeue 9005c851 EnetUdma_ringEnqueue 900778a1 EnetUdma_rxCqIsr 9002cb61 EnetUdma_submitPkts 90077981 EnetUdma_txCqIsr 900a16a1 EnetUdma_unregisterEvent 9009e051 EnetUtilsDflt_initCfg 900a06c1 EnetUtils_deinit 9006b0b1 EnetUtils_delayNs 90081221 EnetUtils_init 900674d1 EnetUtils_macToPhyMii 900a0181 EnetUtils_min 900a06e1 EnetUtils_physToVirt 90092a51 EnetUtils_printf 900a0d41 EnetUtils_virtToPhys 90096411 EnetUtils_vprintf 9007fd91 Enet_close 900956b1 Enet_deinit 90079ae1 Enet_getDmaHandle 900911c1 Enet_getHandle 9008fb11 Enet_getHandleInfo 9007e301 Enet_init 9008b6b1 Enet_initCfg 900a2e81 Enet_initOsalCfg 900a2e91 Enet_initUtilsCfg 90065291 Enet_ioctl 90098921 Enet_ioctl_register_CPSW_ALE_IOCTL_ADD_MCAST 90098971 Enet_ioctl_register_CPSW_ALE_IOCTL_ADD_UCAST 900989c1 Enet_ioctl_register_CPSW_ALE_IOCTL_REMOVE_ADDR 90098a11 Enet_ioctl_register_CPSW_ALE_IOCTL_SET_PORT_STATE 90098a61 Enet_ioctl_register_ENET_HOSTPORT_IOCTL_DISABLE 90098ab1 Enet_ioctl_register_ENET_HOSTPORT_IOCTL_ENABLE 90098b01 Enet_ioctl_register_ENET_HOSTPORT_IOCTL_SET_INGRESS_DSCP_PRI_MAP 90098b51 Enet_ioctl_register_ENET_HOSTPORT_IS_CSUM_OFFLOAD_ENABLED 90098ba1 Enet_ioctl_register_ENET_IOCTL_REGISTER_DSTMAC_RX_FLOW 90098bf1 Enet_ioctl_register_ENET_IOCTL_REGISTER_RX_DEFAULT_FLOW 90098c41 Enet_ioctl_register_ENET_IOCTL_UNREGISTER_DSTMAC_RX_FLOW 90098c91 Enet_ioctl_register_ENET_IOCTL_UNREGISTER_RX_DEFAULT_FLOW 90098ce1 Enet_ioctl_register_ENET_MACPORT_IOCTL_SET_INGRESS_DSCP_PRI_MAP 90098d31 Enet_ioctl_register_ENET_MDIO_IOCTL_IS_ALIVE 90098d81 Enet_ioctl_register_ENET_PER_IOCTL_ATTACH_CORE 90098dd1 Enet_ioctl_register_ENET_PER_IOCTL_CLOSE_PORT_LINK 90098e21 Enet_ioctl_register_ENET_PER_IOCTL_DETACH_CORE 90098e71 Enet_ioctl_register_ENET_PER_IOCTL_IS_PORT_LINK_UP 90098ec1 Enet_ioctl_register_ENET_PER_IOCTL_OPEN_PORT_LINK 90098f11 Enet_ioctl_register_ENET_RM_IOCTL_ALLOC_MAC_ADDR 90098f61 Enet_ioctl_register_ENET_RM_IOCTL_ALLOC_RX_FLOW 90098fb1 Enet_ioctl_register_ENET_RM_IOCTL_ALLOC_TX_CH_PEERID 90099001 Enet_ioctl_register_ENET_RM_IOCTL_FREE_MAC_ADDR 90099051 Enet_ioctl_register_ENET_RM_IOCTL_FREE_RX_FLOW 900990a1 Enet_ioctl_register_ENET_RM_IOCTL_FREE_TX_CH_PEERID 90071b91 Enet_open 900817a1 Enet_periodicTick 900562f1 Enet_validateGenericIoctl 90054771 Enet_validateIoctl 9009bc11 EventP_construct 9009ee61 EventP_setBits 9006eba1 EventP_waitBits 900a33f1 FF_Assert_Lock 9007ab21 FF_BlockRead 9007abf1 FF_BlockWrite 900a34d1 FF_BufferProceed 900a32f1 FF_BufferWait 90089ef1 FF_CheckValid 9009d721 FF_CleanupEntryFetch 90077601 FF_ClearCluster 9004ca11 FF_Close 90099d51 FF_Cluster2LBA 9004f8f1 FF_CountFreeClusters 90099641 FF_CreateClusterChain 900550c1 FF_CreateDirent 900a3401 FF_CreateEvents 90076c61 FF_CreateFile 90055471 FF_CreateIOManger 9004ee21 FF_CreateShortName 9006f861 FF_DecreaseFreeClusters 900a34e1 FF_DeleteEvents 900930b1 FF_DeleteIOManager 90069281 FF_ExtendDirectory 90058be1 FF_FS_Add 900a3301 FF_FS_Count 90070691 FF_FS_Find 90095ec1 FF_FS_Get 9009fba1 FF_FS_Init 90063901 FF_FetchEntryWithContext 9006b1d1 FF_FindDir 9009a811 FF_FindEndOfChain 90035e01 FF_FindEntryInDir 9007e3c1 FF_FindFirst 900476d1 FF_FindFreeCluster 900541d1 FF_FindNext 90051c81 FF_FindShortName 9005ff21 FF_FlushCache 9009e8c1 FF_Format 90049591 FF_FormatDisk 9004b051 FF_GetBuffer 90093111 FF_GetCRC16 900990f1 FF_GetCRC32 9008a9b1 FF_GetChainLength 90074541 FF_GetEntry 90095f11 FF_GetFileSize 9008e5a1 FF_GetFreeSize 9006cdd1 FF_GetModeBits 9009ee91 FF_GetUtf16SequenceLen 900a3311 FF_Has_Lock 90092451 FF_IOMAN_InitBufferDescriptors 90067601 FF_IncreaseFreeClusters 90087f11 FF_InitEntryFetch 900a34f1 FF_LockDirectory 900a3501 FF_LockFAT 9008f5d1 FF_MMCSDCreateAndFormatPartition 9009c0c1 FF_MMCSDDiskDelete 90061101 FF_MMCSDDiskInit 90073371 FF_MMCSDGetPartitionDetails 9008c9a1 FF_MMCSDMountPartition 9003e3e1 FF_Mount 9003e781 FF_Open 90046701 FF_Partition 90040651 FF_PartitionSearch 900a3571 FF_PendSemaphore 90047ea1 FF_PopulateLongDirent 90082a41 FF_PopulateShortDirent 90064d91 FF_PushEntryWithContext 90078b81 FF_PutEntry 9003b761 FF_Read 9008f641 FF_ReadParts 9008fb81 FF_ReleaseBuffer 900901a1 FF_ReleaseFATBuffers 900a3581 FF_ReleaseSemaphore 90064611 FF_Seek 900a3591 FF_Sleep 90079611 FF_TraverseFAT 90063271 FF_UnlinkClusterChain 900a35a1 FF_UnlockDirectory 900a35b1 FF_UnlockFAT 9005b721 FF_Utf16ctoUtf8c 90066c81 FF_Utf8ctoUtf16c 90039fd1 FF_Write 900a2ea1 FF_getChar 9009e8f1 FF_getClusterChainNumber 9009ce11 FF_getClusterPosition 900586f1 FF_getFATEntry 9009c801 FF_getLong 90099691 FF_getMajorBlockNumber 90092ab1 FF_getMinorBlockEntry 900936b1 FF_getMinorBlockNumber 9009f3c1 FF_getShort 9008bdb1 FF_isEndOfChain 900a2691 FF_putChar 900507d1 FF_putFATEntry 9009bc51 FF_putLong 9009e921 FF_putShort 9007acc1 FF_strmatch 90061aa1 FF_strtok 90094f41 FF_tolower 9009d3c1 Flash_close 9009a851 Flash_eraseBlk 9009b351 Flash_getAttrs 9009ce51 Flash_getHandle 9009f3f1 Flash_getPhyTuningOffset 9007d421 Flash_offsetToBlkPage 9007cb21 Flash_offsetToSectorPage 90091c41 Flash_open 9008fbf1 Flash_quirkSpansionUNHYSADisable 90097401 Flash_read 90097451 Flash_write 9002410a GPIO0_gpio_0_89_to_MAIN_GPIOMUX_INTROUTER0_in_0_89 90024112 GPIO0_gpio_bank_90_98_to_MAIN_GPIOMUX_INTROUTER0_in_190_198 9002411a GPIO1_gpio_0_89_to_MAIN_GPIOMUX_INTROUTER0_in_90_179 90024122 GPIO1_gpio_bank_90_98_to_MAIN_GPIOMUX_INTROUTER0_in_180_188 9002412a GPMC0_gpmc_sdmareq_0_0_to_DMASS0_INTAGGR_0_intaggr_levi_pend_29_29 90024132 GTC0_gtc_push_event_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_36_36 9009b391 GenericPhy_isResetComplete 90097ac1 GenericPhy_printRegs 90080731 GenericPhy_readExtReg 900a16c1 GenericPhy_reset 900812d1 GenericPhy_writeExtReg 900924b0 HOSTclose 90083d98 HOSTlseek 90084fa4 HOSTopen 900890f4 HOSTread 90082680 HOSTrename 9008f6ac HOSTunlink 90089178 HOSTwrite 700f5be1 HwiP_Params_init 700f5b61 HwiP_clearInt 700f5c11 HwiP_construct 700f64a8 HwiP_data_abort_handler 700f6401 HwiP_data_abort_handler_c 700f5e11 HwiP_destruct 700f64e0 HwiP_disable 700f64f0 HwiP_disableFIQ 700f5ad1 HwiP_disableInt 700f6538 HwiP_disableVIC 700f6500 HwiP_enable 700f6510 HwiP_enableFIQ 700f5a91 HwiP_enableInt 700f6528 HwiP_enableVIC 700f61a1 HwiP_fiq_handler 700f6548 HwiP_getCPSR 700f6031 HwiP_inISR 700f5e81 HwiP_init 700f6434 HwiP_irq_handler 700f6061 HwiP_irq_handler_c 700f5ba1 HwiP_post 700f63c1 HwiP_prefetch_abort_handler 700f6301 HwiP_reserved_handler 700f6520 HwiP_restore 700f5b31 HwiP_restoreInt 700f6381 HwiP_svc_handler 700f6341 HwiP_undefined_handler 900a16e1 I2CAutoIdleDisable 90092511 I2CBufferStatus 900a1e71 I2CConfig 9009e081 I2CControllerBusBusy 900a1121 I2CControllerControl 900a1141 I2CControllerDataGet 900a1161 I2CControllerDataPut 900a1181 I2CControllerDisable 900a11a1 I2CControllerEnable 900a11c1 I2CControllerEnableFreeRun 900a1e91 I2CControllerGetSysTest 90071591 I2CControllerInitExpClk 900a1eb1 I2CControllerIntClearEx 900a1ed1 I2CControllerIntDisableEx 9009eef1 I2CControllerIntEnableEx 900a2931 I2CControllerIntRawStatus 900a1701 I2CControllerIntRawStatusEx 900a2951 I2CControllerIntStatus 900a1ef1 I2CControllerSetSysTest 900a1721 I2CControllerStart 900a1741 I2CControllerStop 900a1f11 I2CControllerTargetAddrSet 900a2971 I2CDataCountGet 9009c101 I2CFIFOClear 90095711 I2COwnAddressSet 900a1f31 I2CSetDataCount 900a1761 I2CSoftReset 900a1f51 I2CSyscInit 900a1f71 I2CSystemStatusGet 900a11e1 I2CTargetDataGet 900a1f91 I2CTargetIntClearEx 900a1fb1 I2CTargetIntDisableEx 9009ef21 I2CTargetIntEnableEx 900a2991 I2CTargetIntRawStatus 900a1201 I2C_Params_init 9009fbd1 I2C_Transaction_init 9009bc91 I2C_checkTimeout 90077a61 I2C_close 90086021 I2C_completeCurrTransfer 9005f6e1 I2C_ctrlInit 90023ae8 I2C_defaultTransaction 900949a1 I2C_getHandle 90099d91 I2C_hwiFxn 9003abc1 I2C_hwiFxnController 90040301 I2C_hwiFxnTarget 9008d3a1 I2C_init 9003f201 I2C_open 9002e111 I2C_primeTransfer 90066db1 I2C_recoverBus 900968c1 I2C_resetCtrl 90055811 I2C_transfer 9009fc01 I2C_transferCallback 900a0d61 I2C_udelay 90087fa1 I2C_waitForPin 90023723 IPCClientIDOffset 701df100 IPCMtrTermCFU 701df200 IPCMtrTermEnc 90023d1c IPCNuberOfMsgIDs 90062e81 IPCRxHandler 701df000 IPCTermMtrCFUParamaters 701df300 IPCTermMtrData 900912a1 IPC_s32NotifySend 90085041 IPC_vInit 900a3091 IPC_vNotifyInitQueue 900a3331 IPC_vSyncAll 9006a691 IPC_vTransceiver 9009b3d1 IpcNotify_Params_init 9009fc31 IpcNotify_getConfig 900a3341 IpcNotify_getSelfCoreId 9003a3d1 IpcNotify_init 90078c51 IpcNotify_isr 9008f721 IpcNotify_registerClient 90072ce1 IpcNotify_sendMsg 900a1fd1 IpcNotify_sendSync 9007fe41 IpcNotify_syncAll 9009cf11 IpcNotify_syncCallback 90099141 IpcNotify_unregisterClient 9007c521 IpcNotify_waitSync 9009d3f1 LED_close 90090c81 LED_open 9009d7b1 LED_tpic2810Close 90074ae1 LED_tpic2810Off 90074bd1 LED_tpic2810On 9008fc61 LED_tpic2810Open 90093fb1 LED_tpic2810SetMask 900653d1 LPDDR4_AckCtlInterrupt 90095771 LPDDR4_AckPhyIndepInterrupt 900a1241 LPDDR4_AddOffset 9006bd11 LPDDR4_CheckCtlInterrupt 90093171 LPDDR4_CheckPhyIndepInterrupt 9008efb1 LPDDR4_EnablePIInitiator 900974a1 LPDDR4_Init 900878e1 LPDDR4_PollCtlIrq 9009f421 LPDDR4_Probe 9007b621 LPDDR4_ReadReg 9009d421 LPDDR4_Start 9008fcd1 LPDDR4_WriteCtlConfig 9008fd41 LPDDR4_WritePhyConfig 9008fdb1 LPDDR4_WritePhyIndepConfig 9007cbe1 LPDDR4_WriteReg 9006ecb1 LWIPIF_LWIP_UdpLiteValidateChkSum 9004f051 LWIPIF_LWIP_getChkSumInfo 9009fc61 LWIPIF_LWIP_getIpPktStart 90091cb1 LWIPIF_LWIP_init 9008ca21 LWIPIF_LWIP_input 90090281 LWIPIF_LWIP_periodic_polling 9009b451 LWIPIF_LWIP_rxPktHandler 9008e681 LWIPIF_LWIP_send 9008f791 LWIPIF_LWIP_setNotifyCallbacks 9009a891 LWIPIF_LWIP_start 9009b491 LWIPIF_LWIP_txPktHandler 90099e11 Lwip2Enet_assertPriv 90064751 Lwip2Enet_close 9009fc91 Lwip2Enet_decrementRxRefCount 9009fcc1 Lwip2Enet_decrementTxRefCount 9009e0b1 Lwip2Enet_findMacPortFromEnet 90096d71 Lwip2Enet_getInterfaceObj 90036761 Lwip2Enet_open 900543b1 Lwip2Enet_periodicFxn 9008be31 Lwip2Enet_retrieveTxPkts 90088031 Lwip2Enet_rxPktHandler 90070791 Lwip2Enet_sendTxPackets 900a12a1 Lwip2Enet_setRxNotifyCallback 900a12c1 Lwip2Enet_setTxNotifyCallback 900a2f61 Lwip2Enet_txPktHandler 90070891 LwipifEnetAppCb_getEnetLwipIfInstInfo 90053091 LwipifEnetAppCb_getRxHandleInfo 900a0741 LwipifEnetAppCb_getRxMode 900821e1 LwipifEnetAppCb_getTxHandleInfo 9008b831 LwipifEnetAppCb_releaseRxHandle 9008b8b1 LwipifEnetAppCb_releaseTxHandle 900a3421 LwipifEnetApp_getHandle 90094fa1 LwipifEnetApp_getNetifFromId 90061521 LwipifEnetApp_getRxChIDs 90067ac1 LwipifEnetApp_getTxChIDs 9006edc1 LwipifEnetApp_netifOpen 900807e1 LwipifEnetApp_startSchedule 9002413a MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_GICSS0_spi_32_47 90024142 MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_R5FSS0_CORE0_intr_32_47 9002414a MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_R5FSS0_CORE1_intr_32_47 90024152 MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_R5FSS1_CORE0_intr_32_47 9002415a MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_R5FSS1_CORE1_intr_32_47 90024162 MAIN_GPIOMUX_INTROUTER0_outp_16_17_to_DMASS0_INTAGGR_0_intaggr_levi_pend_24_25 9002416a MAIN_GPIOMUX_INTROUTER0_outp_18_23_to_PRU_ICSSG0_pr1_iep0_cap_intr_req_4_9 90024172 MAIN_GPIOMUX_INTROUTER0_outp_18_23_to_PRU_ICSSG1_pr1_iep0_cap_intr_req_4_9 9002417a MAIN_GPIOMUX_INTROUTER0_outp_24_29_to_PRU_ICSSG0_pr1_iep1_cap_intr_req_10_15 90024182 MAIN_GPIOMUX_INTROUTER0_outp_24_29_to_PRU_ICSSG1_pr1_iep1_cap_intr_req_10_15 9002418a MAIN_GPIOMUX_INTROUTER0_outp_30_37_to_DMASS0_INTAGGR_0_intaggr_levi_pend_16_23 90024192 MAIN_GPIOMUX_INTROUTER0_outp_38_45_to_PRU_ICSSG0_pr1_slv_intr_46_53 9002419a MAIN_GPIOMUX_INTROUTER0_outp_46_53_to_PRU_ICSSG1_pr1_slv_intr_46_53 900241a2 MCU_GPIO0_gpio_0_29_to_MCU_MCU_GPIOMUX_INTROUTER0_in_0_29 900241aa MCU_GPIO0_gpio_bank_30_31_to_MCU_MCU_GPIOMUX_INTROUTER0_in_30_31 900241b2 MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_GICSS0_spi_104_107 900241ba MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_R5FSS0_CORE0_intr_104_107 900241c2 MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_R5FSS0_CORE1_intr_104_107 900241ca MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_R5FSS1_CORE0_intr_104_107 900241d2 MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_R5FSS1_CORE1_intr_104_107 900241da MCU_MCU_GPIOMUX_INTROUTER0_outp_4_7_to_MCU_M4FSS0_CORE0_nvic_0_3 900241e2 MCU_MCU_GPIOMUX_INTROUTER0_outp_8_11_to_MCU_ESM0_esm_pls_event0_88_91 900241ea MCU_MCU_GPIOMUX_INTROUTER0_outp_8_11_to_MCU_ESM0_esm_pls_event1_92_95 900241f2 MCU_MCU_GPIOMUX_INTROUTER0_outp_8_11_to_MCU_ESM0_esm_pls_event2_96_99 9008dfa1 MMCSD_close 900785d1 MMCSD_enableBootPartition 9009cf51 MMCSD_getBlockCount 9009cf91 MMCSD_getBlockSize 90096501 MMCSD_getHandle 900850e1 MMCSD_init 9004b9d1 MMCSD_open 90070d91 MMCSD_parseCIDEmmc 900786a1 MMCSD_parseCIDSd 9008caa1 MMCSD_parseCSDEmmc 9006e431 MMCSD_parseCSDSd 90072381 MMCSD_parseECSDEmmc 90096dc1 MMCSD_parseSCRSd 90067bf1 MMCSD_read 9006a7b1 MMCSD_write 9007ee71 Mdio_close 9009c141 Mdio_initCfg 90063511 Mdio_ioctl 90099e51 Mdio_ioctl_handler_ENET_MDIO_IOCTL_C22_READ 90099e91 Mdio_ioctl_handler_ENET_MDIO_IOCTL_C22_WRITE 90099ed1 Mdio_ioctl_handler_ENET_MDIO_IOCTL_C45_READ 90099f11 Mdio_ioctl_handler_ENET_MDIO_IOCTL_C45_WRITE 90099f51 Mdio_ioctl_handler_ENET_MDIO_IOCTL_IS_ALIVE 90099f91 Mdio_ioctl_handler_ENET_MDIO_IOCTL_IS_LINKED 900a02a1 Mdio_ioctl_handler_MDIO_IOCTL_HANDLE_INTR 9008beb1 Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_C22_READ 9009efb1 Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_C22_WRITE 9007d5a1 Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_C45_READ 9007cca1 Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_C45_WRITE 9009b4d1 Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_IS_ALIVE 900965a1 Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_IS_LINKED 90075221 Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_C22_READ 90084831 Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_C22_WRITE 9007a231 Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_C45_READ 9007b6e1 Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_C45_WRITE 9009c881 Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_IS_ALIVE 9009c8c1 Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_IS_LINKED 9003ffa1 Mdio_open 900a2f91 Mdio_rejoin 90096961 Module_clockEnable 90093231 Module_clockSetFrequency 700f69f1 MpuP_RegionAttrs_init 700f6b21 MpuP_disable 700f6c38 MpuP_disableAsm 700f6c50 MpuP_disableBRAsm 700f6b61 MpuP_enable 700f6c60 MpuP_enableAsm 700f6c78 MpuP_enableBRAsm 700f6ba1 MpuP_init 700f6b11 MpuP_isEnable 700f6c88 MpuP_isEnableAsm 700f6a21 MpuP_setRegion 700f6c9c MpuP_setRegionAsm 900d97a4 NotifyQueueRxBuffer 900d97e4 NotifyQueueTxBuffer 900d9c24 NotifyRxQueue 900d9c30 NotifyTxQueue 9009e951 OSPI_ReadCmdParams_init 9009fdb1 OSPI_Transaction_init 9009f451 OSPI_WriteCmdParams_init 9007dae1 OSPI_close 9008bf31 OSPI_disablePhy 9009b511 OSPI_disablePhyPipeline 90097ca1 OSPI_dmaClose 90095831 OSPI_dmaCopy 9008f801 OSPI_dmaOpen 9009b551 OSPI_enableDDR 90099191 OSPI_enableDacMode 9009ae91 OSPI_enableDdrRdCmds 9009d841 OSPI_enableModeBitsCmd 9009d871 OSPI_enableModeBitsRead 90088b61 OSPI_enablePhy 900a0301 OSPI_getFlashDataBaseAddr 900969b1 OSPI_getHandle 90085181 OSPI_init 900a12e1 OSPI_isPhyEnable 90054d01 OSPI_open 9002c331 OSPI_phyFindOTP1 90031751 OSPI_phyFindOTP2 9008a0a1 OSPI_phyFindRxHigh 9008a131 OSPI_phyFindRxLow 9008a1c1 OSPI_phyFindTxHigh 9008a251 OSPI_phyFindTxLow 900a0d81 OSPI_phyGetTuningData 9008cba1 OSPI_phyReadAttackVector 900793a1 OSPI_phyResyncDLL 90087a01 OSPI_phySetRdDelayTxRxDLL 9007d661 OSPI_phyTuneDDR 9005cd01 OSPI_readCmd 9005dbd1 OSPI_readDirect 9009a911 OSPI_setCmdDummyCycles 900a0761 OSPI_setCmdExtType 900965f1 OSPI_setDeviceSize 9009d8a1 OSPI_setDualOpCodeMode 9009d451 OSPI_setModeBits 90095061 OSPI_setNumAddrBytes 900a0781 OSPI_setPhyEnableSuccess 9006e541 OSPI_setProtocol 90097631 OSPI_setRdDataCaptureDelay 9009a951 OSPI_setReadDummyCycles 90081431 OSPI_setXferOpCodes 900622b1 OSPI_writeCmd 900627f1 OSPI_writeIndirect 900241fa PCIE0_pcie_cpts_comp_0_0_to_CMP_EVENT_INTROUTER0_in_81_81 90024202 PCIE0_pcie_cpts_genf0_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_23_23 9002420a PCIE0_pcie_cpts_hw1_push_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_37_37 90024212 PCIE0_pcie_cpts_sync_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_33_33 9002421a PCIE0_pcie_ptm_valid_pulse_4_4_to_TIMESYNC_EVENT_INTROUTER0_in_38_38 900d9d50 PPPtr 90097681 PP_Exec 9007e481 PP_Initialise 9003d901 PP_Read 9009a011 PP_Read_FWPage 9003e041 PP_Refresh 90099911 PP_Register 90065f11 PP_Upgrade 90059a81 PP_Validate 900761e1 PP_Verify_FWID_PageCRC 90072651 PP_Verify_ID_CRC 9010f390 PP_Watermark 90072471 PP_Write_FWID_PageCRC 90071c91 PP_Write_FWPage 90089321 PP_Write_HWID_9NC 900893b1 PP_Write_HWID_Serial 9006dbb1 PP_Write_ID_CRC 9007cd61 PP_Write_TestID 90024222 PRU_ICSSG0_pr1_edc0_sync0_out_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_25_25 9002422a PRU_ICSSG0_pr1_edc0_sync1_out_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_26_26 90024232 PRU_ICSSG0_pr1_edc1_sync0_out_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_27_27 9002423a PRU_ICSSG0_pr1_edc1_sync1_out_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_28_28 90024242 PRU_ICSSG0_pr1_host_intr_req_4_11_to_CMP_EVENT_INTROUTER0_in_0_7 9002424a PRU_ICSSG0_pr1_iep0_cmp_intr_req_12_27_to_CMP_EVENT_INTROUTER0_in_16_31 90024252 PRU_ICSSG0_pr1_iep1_cmp_intr_req_28_43_to_CMP_EVENT_INTROUTER0_in_32_47 9002425a PRU_ICSSG1_pr1_edc0_sync0_out_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_29_29 90024262 PRU_ICSSG1_pr1_edc0_sync1_out_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_30_30 9002426a PRU_ICSSG1_pr1_edc1_sync0_out_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_31_31 90024272 PRU_ICSSG1_pr1_edc1_sync1_out_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_32_32 9002427a PRU_ICSSG1_pr1_host_intr_req_4_11_to_CMP_EVENT_INTROUTER0_in_8_15 90024282 PRU_ICSSG1_pr1_iep0_cmp_intr_req_12_27_to_CMP_EVENT_INTROUTER0_in_48_63 9002428a PRU_ICSSG1_pr1_iep1_cmp_intr_req_28_43_to_CMP_EVENT_INTROUTER0_in_64_79 90083121 Pinmux_config 900a07a1 Pinmux_init 9009d598 PmuP_clearOverflowStatus 9009d588 PmuP_disableCounters 9009d580 PmuP_enableCounters 9009d590 PmuP_getOverflowStatus 9009d578 PmuP_setup 900a3351 PowerClock_init 900a3661 PromCloseFunc 9006dee1 PromErase 900a3671 PromOpenFunc 90057971 PromPrint 9009a051 PromReadFunc 900991e1 PromWriteFunc 90095891 SOC_controlModuleLockMMR 90083581 SOC_controlModuleUnlockMMR 9009c901 SOC_generateSwPORResetMainDomain 9009c941 SOC_generateSwWarmResetMainDomain 90099231 SOC_generateSwWarmResetMcuDomain 9009fde1 SOC_getSelfCpuClk 90079bb1 SOC_isR5FDualCoreMode 900859a1 SOC_moduleClockEnable 90056f31 SOC_moduleSetClockFrequency 9003b381 SOC_phyToVirt 90041361 SOC_virtToPhy 90082cc1 Sciclient_getContext 9007e541 Sciclient_getCurrentContext 90096e11 Sciclient_getDevId 900a3361 Sciclient_getSelfDevIdCore 90084971 Sciclient_init 90083621 Sciclient_pmGetModuleClkFreq 900814e1 Sciclient_pmGetModuleClkNumParent 900836c1 Sciclient_pmGetModuleClkParent 900873d1 Sciclient_pmGetModuleState 90087461 Sciclient_pmModuleClkRequest 90083f71 Sciclient_pmModuleGetClkStatus 90067731 Sciclient_pmQueryModuleClkFreq 9006d331 Sciclient_pmSetModuleClkFreq 90083761 Sciclient_pmSetModuleClkParent 90092b71 Sciclient_pmSetModuleRst 900874f1 Sciclient_pmSetModuleState 900913f1 Sciclient_procBootGetProcessorState 90059c21 Sciclient_rmClearInterruptRoute 9008e761 Sciclient_rmGetResourceRange 90083801 Sciclient_rmIrOutpIsFree 900a2051 Sciclient_rmIrqRelease 90094a01 Sciclient_rmIrqReleaseRaw 900a17a1 Sciclient_rmIrqSet 900940d1 Sciclient_rmIrqSetRaw 9009efe1 Sciclient_rmIrqTranslateIaOutput 9005ba41 Sciclient_rmProgramInterruptRoute 90094a61 Sciclient_rmPsilPair 90094ac1 Sciclient_rmPsilUnpair 90094191 Sciclient_rmRingCfg 90071d91 Sciclient_rmTranslateIntOutput 900941f1 Sciclient_rmUdmapFlowCfg 90094251 Sciclient_rmUdmapFlowSizeThreshCfg 900942b1 Sciclient_rmUdmapRxChCfg 90094311 Sciclient_rmUdmapTxChCfg 90044051 Sciclient_service 900a17e1 SemaphoreP_Params_init 900958f1 SemaphoreP_construct 9009e171 SemaphoreP_constructBinary 9009fe11 SemaphoreP_constructMutex 900a35e1 SemaphoreP_destruct 90071691 SemaphoreP_pend 90092bd1 SemaphoreP_post 9009f481 Spinlock_getNumLocks 9009a191 Spinlock_lock 9009bd11 Spinlock_unlock 9006c721 System_init 900a30c1 TERMCOM_vBlank 9006eed1 TERMCOM_vDebug 90093831 TERMCOM_vHelp 900a1301 TERMCOM_vInit 9008cca1 TERMCOM_vPrintComma 90093891 TERMCOM_vVersion 90053e11 TERMINAL_u16FindOptionFromString 9002b1d1 TERMINAL_vCommandConsole 900a3381 TERMINAL_vInit 900a0da1 TERMINAL_vPrintCommandPrompt 900a1321 TERMINAL_vPrintInvalidCommand 900a1341 TERMINAL_vPrintInvalidCommandOption 9009f4b1 TERMINAL_vResetCommandConsole 90024292 TIMER0_timer_pwm_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_0_0 9002429a TIMER1_timer_pwm_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_1_1 900242a2 TIMER2_timer_pwm_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_2_2 900242aa TIMER3_timer_pwm_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_3_3 900242b2 TIMESYNC_EVENT_INTROUTER0_outl_0_7_to_DMASS0_INTAGGR_0_intaggr_levi_pend_8_15 900242ba TIMESYNC_EVENT_INTROUTER0_outl_10_10_to_PRU_ICSSG0_pr1_edc1_latch0_in_2_2 900242c2 TIMESYNC_EVENT_INTROUTER0_outl_11_11_to_PRU_ICSSG0_pr1_edc1_latch1_in_3_3 900242ca TIMESYNC_EVENT_INTROUTER0_outl_12_12_to_PRU_ICSSG1_pr1_edc0_latch0_in_0_0 900242d2 TIMESYNC_EVENT_INTROUTER0_outl_13_13_to_PRU_ICSSG1_pr1_edc0_latch1_in_1_1 900242da TIMESYNC_EVENT_INTROUTER0_outl_14_14_to_PRU_ICSSG1_pr1_edc1_latch0_in_2_2 900242e2 TIMESYNC_EVENT_INTROUTER0_outl_15_15_to_PRU_ICSSG1_pr1_edc1_latch1_in_3_3 900242ea TIMESYNC_EVENT_INTROUTER0_outl_16_16_to_CPTS0_cpts_hw1_push_0_0 900242f2 TIMESYNC_EVENT_INTROUTER0_outl_17_17_to_CPTS0_cpts_hw2_push_1_1 900242fa TIMESYNC_EVENT_INTROUTER0_outl_18_18_to_CPTS0_cpts_hw3_push_2_2 90024302 TIMESYNC_EVENT_INTROUTER0_outl_19_19_to_CPTS0_cpts_hw4_push_3_3 9002430a TIMESYNC_EVENT_INTROUTER0_outl_20_20_to_CPTS0_cpts_hw5_push_4_4 90024312 TIMESYNC_EVENT_INTROUTER0_outl_21_21_to_CPTS0_cpts_hw6_push_5_5 9002431a TIMESYNC_EVENT_INTROUTER0_outl_22_22_to_CPTS0_cpts_hw7_push_6_6 90024322 TIMESYNC_EVENT_INTROUTER0_outl_23_23_to_CPTS0_cpts_hw8_push_7_7 9002432a TIMESYNC_EVENT_INTROUTER0_outl_29_29_to_PCIE0_pcie_cpts_hw2_push_0_0 90024332 TIMESYNC_EVENT_INTROUTER0_outl_30_30_to_CPSW0_cpts_hw1_push_0_0 9002433a TIMESYNC_EVENT_INTROUTER0_outl_31_31_to_CPSW0_cpts_hw2_push_1_1 90024342 TIMESYNC_EVENT_INTROUTER0_outl_32_32_to_CPSW0_cpts_hw3_push_2_2 9002434a TIMESYNC_EVENT_INTROUTER0_outl_33_33_to_CPSW0_cpts_hw4_push_3_3 90024352 TIMESYNC_EVENT_INTROUTER0_outl_34_34_to_CPSW0_cpts_hw5_push_4_4 9002435a TIMESYNC_EVENT_INTROUTER0_outl_35_35_to_CPSW0_cpts_hw6_push_5_5 90024362 TIMESYNC_EVENT_INTROUTER0_outl_36_36_to_CPSW0_cpts_hw7_push_6_6 9002436a TIMESYNC_EVENT_INTROUTER0_outl_37_37_to_CPSW0_cpts_hw8_push_7_7 90024372 TIMESYNC_EVENT_INTROUTER0_outl_8_8_to_PRU_ICSSG0_pr1_edc0_latch0_in_0_0 9002437a TIMESYNC_EVENT_INTROUTER0_outl_9_9_to_PRU_ICSSG0_pr1_edc0_latch1_in_1_1 900a0e88 TI_memcpy_small 900a1a58 TI_memset_small 900a3711 TaskP_yield 900d9d54 TermCom 900d4b30 TermServ 90019628 TerminalCommandTable 9009c981 TimerP_Params_init 9009e1a1 TimerP_clearOverflowInt 900a29b1 TimerP_getCount 900a29d1 TimerP_getReloadCount 90049811 TimerP_setup 900a1801 TimerP_start 900a1821 TimerP_stop 900a2091 UARTWRAP_u16Init 9009bd51 UARTWRAP_u16ReadCharNonBlocking 9009bd91 UARTWRAP_u16WriteCharNonBlocking 9005a781 UART_close 9008b931 UART_dmaClose 9008ab31 UART_dmaDisableChannel 9008e7d1 UART_dmaOpen 9007a4a1 UART_flushTxFifo 90096641 UART_getHandle 9007ea51 UART_init 90049a91 UART_open 90056121 UART_read 90095121 UART_readInterruptDma 90081a61 UART_u16Flush 9009a211 UART_u16ReadCharNonBlocking 90088c81 UART_u16Transceive 9006efe1 UART_u16WriteCharNonBlocking 9009d4b1 UART_vInit 90053ff1 UART_write 90095181 UART_writeInterruptDma 900d2d00 Uart 9008f871 UdmaChPrms_init 9007f601 UdmaChRxPrms_init 9007f6b1 UdmaChTxPrms_init 90091d21 UdmaEventPrms_init 90084ab1 UdmaFlowPrms_init 900951e1 UdmaRingPrms_init 9003ee81 UdmaRmInitPrms_init 90099a01 UdmaUtils_getRingMemSize 90094371 UdmaUtils_getTrSizeEncoded 9008e021 UdmaUtils_makeTrpd 90096691 UdmaUtils_makeTrpdTr15 9007af31 Udma_chClose 9004a471 Udma_chConfigRx 90059f61 Udma_chConfigTx 9007f761 Udma_chDisable 9008d4a1 Udma_chEnable 9008cda1 Udma_chGetCqRingHandle 9009d4e1 Udma_chGetCqRingNum 9008ce21 Udma_chGetFqRingHandle 90086531 Udma_chGetNum 9005e471 Udma_chOpen 900a2711 Udma_defaultPhyToVirtFxn 900a2fa1 Udma_defaultVirtToPhyFxn 900914d1 Udma_eventDisable 90091541 Udma_eventEnable 90094b21 Udma_eventGetGlobalHandle 90096b41 Udma_eventGetId 9004f281 Udma_eventRegister 90079c81 Udma_eventUnRegister 90081b11 Udma_flowAttachMapped 90054951 Udma_flowConfig 9008e8b1 Udma_flowDetach 9007ef21 Udma_getMappedChRingAttributes 90070391 Udma_init 9003c2c1 Udma_initDrvHandle 900a3391 Udma_isCacheCoherent 90099281 Udma_lcdmaRingaccMemOps 90092631 Udma_phyToVirtFxn 90051241 Udma_ringAlloc 90084b51 Udma_ringDequeueRaw 9009b591 Udma_ringDequeueRawLcdma 90087a91 Udma_ringFlushRaw 900831c1 Udma_ringFlushRawLcdma 900797b1 Udma_ringFree 9009f4e1 Udma_ringGetElementCnt 9009d961 Udma_ringGetElementCntLcdma 9009f511 Udma_ringGetForwardRingOcc 9009a251 Udma_ringGetForwardRingOccLcdma 9009f541 Udma_ringGetMemPtr 9009d991 Udma_ringGetMemPtrLcdma 900a0361 Udma_ringGetMode 9009d9c1 Udma_ringGetModeLcdma 9009b5d1 Udma_ringGetNum 9009f571 Udma_ringGetRdIdx 9009d9f1 Udma_ringGetRdIdxLcdma 9009f5a1 Udma_ringGetReverseRingOcc 9009a291 Udma_ringGetReverseRingOccLcdma 9009f5d1 Udma_ringGetWrIdx 9009da21 Udma_ringGetWrIdxLcdma 900a29f1 Udma_ringHandleClearRegsLcdma 9009f601 Udma_ringPrime 900959b1 Udma_ringPrimeLcdma 900a0391 Udma_ringPrimeRead 90090671 Udma_ringPrimeReadLcdma 900838a1 Udma_ringQueueRaw 9009c1c1 Udma_ringQueueRawLcdma 9006bf51 Udma_ringSetCfgLcdma 900a03c1 Udma_ringSetDoorBell 90080aa1 Udma_ringSetDoorBellLcdma 900699a1 Udma_rmAllocBlkCopyCh 90069ad1 Udma_rmAllocBlkCopyHcCh 90069c01 Udma_rmAllocBlkCopyUhcCh 90082721 Udma_rmAllocEvent 900a2731 Udma_rmAllocFreeRing 90067141 Udma_rmAllocIrIntr 900649d1 Udma_rmAllocMappedRing 90060341 Udma_rmAllocMappedRxCh 900604a1 Udma_rmAllocMappedTxCh 90069d31 Udma_rmAllocRxCh 90069e61 Udma_rmAllocRxHcCh 90069f91 Udma_rmAllocRxUhcCh 9006a0c1 Udma_rmAllocTxCh 9006a1f1 Udma_rmAllocTxHcCh 9006a321 Udma_rmAllocTxUhcCh 900827c1 Udma_rmAllocVintr 90078d21 Udma_rmAllocVintrBit 90091d91 Udma_rmFreeBlkCopyCh 90091e01 Udma_rmFreeBlkCopyHcCh 90091e71 Udma_rmFreeBlkCopyUhcCh 900915b1 Udma_rmFreeEvent 900a33a1 Udma_rmFreeFreeRing 90091621 Udma_rmFreeIrIntr 900865c1 Udma_rmFreeMappedRing 9008e921 Udma_rmFreeMappedRxCh 9008e991 Udma_rmFreeMappedTxCh 90091ee1 Udma_rmFreeRxCh 90091f51 Udma_rmFreeRxHcCh 90091fc1 Udma_rmFreeRxUhcCh 90092031 Udma_rmFreeTxCh 900920a1 Udma_rmFreeTxHcCh 90092111 Udma_rmFreeTxUhcCh 90091691 Udma_rmFreeVintr 900880c1 Udma_rmFreeVintrBit 9009eb01 Udma_rmGetDefBoardCfgPrms 90076481 Udma_rmGetSciclientDefaultBoardCfgRmRange 90096001 Udma_rmGetSharedResPrms 90031ca1 Udma_rmInit 90050391 Udma_rmSetSharedResRmInitPrms 900a03f1 Udma_rmTranslateCoreIntrInput 900a0421 Udma_rmTranslateIrOutput 90092691 Udma_virtToPhyFxn 9001a69e VersionFW 900d89e4 _CIOBUF_ 9008b9b1 _DebugP_assert 700f6db1 _DebugP_assertNoLog 900992d1 _DebugP_logZone 700f8d90 __ABORT_STACK_END 00000100 __ABORT_STACK_SIZE 700f8c90 __ABORT_STACK_START 900d9e00 __BSS_END 900a3780 __BSS_START 900d89e4 __CIOBUF_ 700f7c90 __FIQ_STACK_END 00000100 __FIQ_STACK_SIZE 700f7b90 __FIQ_STACK_START 700f7b90 __IRQ_STACK_END 00000100 __IRQ_STACK_SIZE 700f7a90 __IRQ_STACK_START 90108c00 __STACK_END 0000fa00 __STACK_SIZE 700f8c90 __SVC_STACK_END 00001000 __SVC_STACK_SIZE 700f7c90 __SVC_STACK_START 0001f400 __SYSMEM_SIZE UNDEFED __TI_CINIT_Base UNDEFED __TI_CINIT_Limit UNDEFED __TI_Handler_Table_Base UNDEFED __TI_Handler_Table_Limit 900960f0 __TI_auto_init_nobinit_nopinit 900943c8 __TI_cleanup 9010f310 __TI_cleanup_ptr 9007db94 __TI_closefile 90088148 __TI_doflush 9010f314 __TI_dtors_ptr 9010f398 __TI_ft_end ffffffff __TI_pprof_out_hndl 900264c8 __TI_printfi_nofloat ffffffff __TI_prof_data_size ffffffff __TI_prof_data_start 90094420 __TI_readmsg 00000000 __TI_static_base__ 900d92e0 __TI_tmpnams 90094478 __TI_writemsg 9008325c __TI_wrt_ok 700f8e90 __UNDEFINED_STACK_END 00000100 __UNDEFINED_STACK_SIZE 700f8d90 __UNDEFINED_STACK_START 9008f8dc __aeabi_assert 90021830 __aeabi_ctype_table_ 90021830 __aeabi_ctype_table_C 9010f39c __aeabi_errno 900256b4 __aeabi_errno_addr 900a3690 __aeabi_idiv0 900a36a0 __aeabi_ldiv0 900a0eb4 __aeabi_memclr 900a0eb4 __aeabi_memclr4 900a0eb4 __aeabi_memclr8 90029ef8 __aeabi_memcpy 90029ef8 __aeabi_memcpy4 90029ef8 __aeabi_memcpy8 900a0ea4 __aeabi_memset 900a0ea4 __aeabi_memset4 900a0ea4 __aeabi_memset8 90055294 __aeabi_uidiv 9009ffd4 __aeabi_uldivmod ffffffff __binit__ 700f6de1 __mpu_init 900f9200 __stack 9006c188 __udivmoddi4 90055294 __udivsi3 900a07c0 _abort_msg 700f6cd4 _c_int00 700f6cb0 _c_int00_sbl 9010e5f8 _device 9010d694 _ftable 9010f3a0 _lock 900272a8 _nop 9010ea84 _stream 900d9e00 _sys_memory UNDEFED _system_post_cinit 9009fe71 _system_pre_init 9010f3a4 _unlock 00000000 _vectors 700f6e10 abort 90056bb8 aligned_alloc 9009e231 altcp_abort 900a18c1 altcp_accept 900a0451 altcp_alloc 900a18e1 altcp_arg 900976d1 altcp_bind 9009afd1 altcp_close 900a1901 altcp_err 9009c201 altcp_free 90099a51 altcp_listen_with_backlog_and_err 9009b011 altcp_mss 9009b051 altcp_output 90097721 altcp_poll 900a1921 altcp_recv 9009ca01 altcp_recved 900a1941 altcp_sent 9009ca41 altcp_setprio 9009b091 altcp_sndbuf 9009b0d1 altcp_sndqueuelen 9002357c altcp_tcp_functions 90097771 altcp_tcp_new_ip_type 90095a11 altcp_write 9008eae0 atoi 9009ca81 autoip_accept_packet 9007c5e1 autoip_arp_reply 9009f691 autoip_network_changed 90072741 autoip_start 90099aa1 autoip_stop 9005d181 autoip_tmr ffffffff binit 9008769c close 90096f01 cm_crc 900a3611 cm_ini 90086651 cm_nxt 90095a71 crc16_ccitt 9001a6a0 crc32_table 9005d781 custom_pbuf_free 90092181 dcs_inbyte 90099af1 dcs_outbyte 90023f74 device_name 9001dff8 device_params 9002448c device_params_length 90087b21 dhcp_arp_reply 9007c6a1 dhcp_coarse_tmr 900906e1 dhcp_fine_tmr 9007dc51 dhcp_network_changed 90065511 dhcp_release_and_stop 90060601 dhcp_renew 900d9c54 dhcp_rx_options_given 900d99c0 dhcp_rx_options_val 90073af1 dhcp_set_struct 9005a911 dhcp_start 900926f1 dhcp_supplied_address 900a30d1 dns_init 90096051 dns_setserver 900a33b1 dns_tmr 701dfa00 ecEOEBufferRx 701df400 ecEOEBufferTx 900d9380 ec_netif 9007e601 emmc_init 9009c281 enet_loop 90062941 enet_start 9005b0e1 eoe_handle 900af780 eoe_packet_buffer 900d9a50 eoe_packet_queue 900d4530 eoe_stepin_buffer 9010f3b0 err_msg 90059261 etharp_input 90042bf1 etharp_output 90037e21 etharp_query 900a07e1 etharp_request 90060b81 etharp_tmr 90024479 ethbroadcast 9005b271 ethernet_input 90076f01 ethernet_output 9002447f ethzero 90095294 exit 90099b41 fctprintf 9009c2c1 ff_fclose 9009b151 ff_filelength 9007b001 ff_findfirst 90050171 ff_findnext 900952f1 ff_fopen 9009a2d1 ff_fread 9009a311 ff_fwrite 90080b48 fflush 90023d30 file__404_shtml 90023d44 file__error_shtml 90023d58 file__favicon_ico 90023d6c file__index_shtml 90023d80 file__index_shtml_bak 90023d94 file__ok_shtml 90023da8 file__params_shtml 90023dbc file__pecnv_jpg 90023dd0 file__tidy_css 9008f9bc finddevice 9005ac31 flasher_console 9008e0a1 flasher_img 9008d7a1 flasher_sbl 9008d821 flasher_xip 90058894 fputs 90056d70 free 900a2fc1 fs_bytes_left 900a3601 fs_close 9008a401 fs_open 900272ac fseek 9007ddc4 fseeko 900d9c3c gADMA2Desc 9010f2bc gAddrTranslateConfig 900233a4 gCacheConfig 90024490 gCacheL1dCacheLineSize 90024494 gCacheL1pCacheLineSize 9010f230 gClockConfig 900d98a0 gClockCtrl 9010f3b4 gDebugLogZone 9010f2d4 gEepromAttrs_AT24C 9010f2e0 gEepromConfig 9010f3b8 gEepromConfigNum 9010f290 gEepromFxns_AT24C 900d9d58 gEepromHandle 900d826c gEepromObject_AT24C 9010f320 gEepromParams 900d99e8 gEmmcData0 9010e938 gEnetMacAddrPool 9010f3bc gEnetOsalHwiAllocCnt 9010f3c0 gEnetOsalHwiPeak 900d9824 gEnetOsalObj 9010f3c4 gEnetOsalSemAllocCnt 9010f3c8 gEnetOsalSemPeak 9010eef0 gEnetPhyDrvDp83867 9010ef18 gEnetPhyDrvGeneric 90024394 gEnetPhyDrvTbl 90108c00 gEnetSoc_cpsw3g 9010c2d0 gEnetSoc_cpsw3gMacObj 90023728 gEnetSoc_cpsw3gSocCfg 900d50b4 gEnetSoc_dmaObj 9010f328 gEnetSoc_dmaObjMemInfo 9010f2ec gEnetSoc_perObj 9010f430 gEnetTrace_runtimeLevel 900d9160 gEnetUtilsObj 900d9a68 gFFDisks 9010f330 gFFMmcsdConfig 9010f338 gFFPartitionIds 9010ee30 gFlashAttrs_MT35XL512 9010f2a0 gFlashConfig 9010f3cc gFlashConfigNum 9010e6e8 gFlashDevCfg_MT35XL512 900d9d5c gFlashHandle 9010f108 gFlashNorOspiFxns 900d9ac0 gFlashObject_MT35XL512 9010f340 gFlashParams 9010efb8 gFlashToSpiProtocolMap 900d7a80 gFreePbufArr 9010f3d0 gHwiConfig 900ceb38 gHwiCtrl 9010f348 gI2cConfig 9010f3d4 gI2cConfigNum 900d9d60 gI2cHandle 9010f2f8 gI2cParams 900d9d64 gIoexpHandle 900d9238 gIpcNotifyCtrl 9010f3d8 gIpcNotifyInterruptConfigNum_r5fss0_1 9010e820 gIpcNotifyInterruptConfig_r5fss0_1 9010f000 gIpcNotifyMailboxBaseAddr 9010e2a8 gIpcNotifyMailboxConfig 9010f3dc gLedAttrs_TPIC2810 9010f1e8 gLedConfig 9010f3e0 gLedConfigNum 9010f244 gLedFxns_TPIC2810 900d9c90 gLedHandle 900d993c gLedObject 9010ef40 gLedParams 9010f350 gMmcsdConfig 9010f3e4 gMmcsdConfigNum 900d7c80 gMmcsdDataBuf0 900d9d68 gMmcsdHandle 9010f358 gMmcsdParams 900233ac gMpuConfig 900233b8 gMpuRegionConfig 9010f360 gOspiConfig 9010f3e8 gOspiConfigNum 9010f368 gOspiDmaConfig 9010f3ec gOspiDmaConfigNum 9010f304 gOspiDmaUdmaFxns 900d9d6c gOspiHandle 9010f3f0 gOspiParams 9010f124 gOspiUdma0Args 701c0100 gPPBase 701c0000 gPPSom 900d9a34 gPartDetails 701c0200 gPdo 9010f3f4 gPhyTuneWindowParams 9010ef68 gPhyTuneWindowParamsGTE133 9010ef90 gPhyTuneWindowParamsLT133 9010f068 gRmIaInstances 9010e880 gRmIrInstances 900235d4 gRmIrqTree 90024498 gRmIrqTreeCount 90021098 gSciclientMap 9010f088 gSciclientSecProxyCfg 9010f024 gSocModules 9010eec0 gSocModulesClockFrequency 9010e500 gTuningPattern8Bit 9010f380 gUartConfig 9010f3f8 gUartConfigNum 90108c00 gUartDmaConfig 9010f3fc gUartDmaConfigNum 900d9d70 gUartHandle 9010e9e0 gUartParams 900cb720 gUdmaDrvObj 90022e9c gUdmaRmDefBoardCfg_Bcdma 9001f904 gUdmaRmDefBoardCfg_Pktdma 9010e8e0 gUdmaRmSharedResPrms 90022bc8 gUdmaRxMappedChRingAttributes 90020a94 gUdmaTxMappedChRingAttributes 80000000 gUniflashFileBuf 88000000 gUniflashVerifyBuf 900d9d74 g_pNetif 900a3441 get_build_datetime 90079878 getdevice 900d9d78 gpDisk 900d9860 hEvent 9007efd1 http_set_cgi_handlers 9006f201 http_set_ssi_handler 90023fac http_ssi_tag_desc 9009e261 httpd_cgi_handler 90082e01 httpd_cgi_ssi_init 90092751 httpd_init 9009e291 icmp_dest_unreach 90034111 icmp_input 9009e2c1 icmp_time_exceeded 9009f6f1 igmp_init 9004b771 igmp_input 9009b191 igmp_lookfor_group 9009b651 igmp_report_groups 9008ebc1 igmp_start 900921f1 igmp_tmr 900a0b01 inet_chksum 9008c031 inet_chksum_pbuf 9008f251 inet_chksum_pseudo 9008ad31 inet_chksum_pseudo_partial 900882f1 ip4_addr_isbroadcast_u32 9003d1a1 ip4_frag 900321f1 ip4_input 90094531 ip4_output_if 90088411 ip4_output_if_opt 90041691 ip4_output_if_opt_src 90094591 ip4_output_if_src 90037091 ip4_reass 9005deb1 ip4_route 900a13a1 ip4addr_ntoa 9006f971 ip4addr_ntoa_r 9002449c ip_addr_any 900244a0 ip_addr_broadcast 9009d051 ip_chksum_pseudo 9009a391 ip_chksum_pseudo_partial 900d9a80 ip_data 900933b1 ip_reass_tmr 9010f433 isMapAvailable 90064b10 ldexp 9006ccb4 ldexpf 90064b10 ldexpl 9009cb28 lseek 90023948 lwip_cyclic_timers 900a0821 lwip_htonl 900a2fd1 lwip_htons 9009be11 lwip_init 900801b1 lwip_standard_chksum 900d8080 lwip_stats 90086261 lwip_stricmp 900884a1 lwip_strnstr 900a2a51 lwiperf_init 900966e1 lwiperf_start_tcp_server 900a0841 lwiperf_start_tcp_server_default 9004e791 main 90027ee4 malloc 90093411 mcp23008_getgpio 9009f721 mcp23008_init 9009aad1 mcp23008_setdir 9009ab11 mcp23008_setgpio 90066411 memStessTest 9007a641 memTestBus 9006d661 memTestData 90095b31 mem_calloc 90058d81 mem_free 900a3721 mem_init 900644c1 mem_malloc 900a30e1 mem_trim 90056bb8 memalign 900977b8 memccpy 9009a3d0 memcmp 9009eb31 mempQ_free 900a0861 mempQ_malloc 90023df8 memp_ALTCP_PCB 90023e0c memp_ARP_QUEUE 90023e20 memp_FRAG_PBUF 90023e34 memp_IGMP_GROUP 90023e48 memp_PBUF 90023e5c memp_PBUF_POOL 90023e70 memp_POOL_128 90023e84 memp_POOL_1792 90023e98 memp_POOL_4096 90023eac memp_RAW_PCB 90023ec0 memp_REASSDATA 90023ed4 memp_RX_POOL 90023ee8 memp_SYS_MBOX 90023efc memp_SYS_TIMEOUT 90023f10 memp_TCP_PCB 90023f24 memp_TCP_PCB_LISTEN 90023f38 memp_TCP_SEG 90023f4c memp_UDP_PCB 9008d021 memp_free 90093a11 memp_init 90092261 memp_init_pool 9008d0a1 memp_malloc 90090eb1 memp_malloc_pool 900d8724 memp_memory_ALTCP_PCB_base 900d6224 memp_memory_ARP_QUEUE_base 900d7e80 memp_memory_FRAG_PBUF_base 900d8b04 memp_memory_IGMP_GROUP_base 900d8e61 memp_memory_PBUF_POOL_base 900ccaf8 memp_memory_PBUF_base 900c787e memp_memory_POOL_128_base 900bb780 memp_memory_POOL_1792_base 900c37df memp_memory_POOL_4096_base 900d9680 memp_memory_RAW_PCB_base 900d8883 memp_memory_REASSDATA_base 900d3590 memp_memory_RX_POOL_base 900d1820 memp_memory_SYS_MBOX_base 900d7418 memp_memory_SYS_TIMEOUT_base 900d8c23 memp_memory_TCP_PCB_LISTEN_base 900d69c0 memp_memory_TCP_PCB_base 900cdb17 memp_memory_TCP_SEG_base 900d8d42 memp_memory_UDP_PCB_base 90023844 memp_pools 90042ee1 netif_add 900d9d7c netif_default 90095351 netif_get_by_index 900a3731 netif_init 9007bc21 netif_input 9008b3b1 netif_invoke_ext_callback 900d9d80 netif_list 900681e1 netif_set_addr 900a0481 netif_set_default 900a19a1 netif_set_link_callback 900854a1 netif_set_link_down 90080bf1 netif_set_link_up 900a19c1 netif_set_status_callback 9007ec61 netif_set_up 900d9c98 parmbuf 9008fe91 pbufQ_deQ 90088531 pbufQ_enQ 9009ff01 pbufQ_init 90083a81 pbufQ_init_freeQ 900a2131 pbuf_add_header 900425f1 pbuf_alloc 90081bc1 pbuf_alloc_reference 900840b1 pbuf_alloced_custom 9006ad51 pbuf_cat 900a0b21 pbuf_chain 9009e2f1 pbuf_clen 90087bb1 pbuf_clone 900456c1 pbuf_copy 9005bbd1 pbuf_copy_partial 90052e91 pbuf_free 90096ff1 pbuf_free_ooseq 900d9995 pbuf_free_ooseq_pending 9009c301 pbuf_get_at 900a1401 pbuf_header_force 9006e761 pbuf_memcmp 90085c21 pbuf_memfind 90097d91 pbuf_put_at 90059dc1 pbuf_realloc 90090f21 pbuf_ref 9006e871 pbuf_remove_header 900a0881 pbuf_skip 900509f1 pbuf_take 90068311 pbuf_take_at 90097851 pbuf_try_get_at 90099411 pec_dequeue 9009a411 pec_enqueue 900a0dc1 pec_get_queue_len 900a2781 pec_init_queue 900d9c48 pfreeQ 900d9508 pollLinkClkObj 90093a71 print_spin 9009b1d1 printf_ 900a3461 prvABSPath 9004dc51 prvFFErrorToErrno 9007bfe1 prvGetFromFATBuffers 900a3471 putchar 900a27a1 putchar_ 90096b8c rand 90060e41 raw_input 90092db1 raw_netif_ip_addr_changed 90029ef4 remove 900a19e1 saf_fwpage_save 90064b10 scalbn 9006ccb4 scalbnf 90064b10 scalbnl 90063ce4 setvbuf 9008c528 snprintf 9009b691 snprintf_ 900d9d84 spinlockPdoBaseAddr 90094648 sprintf 9009be88 srand 90092811 ssi_ip_to_str 900953b1 ssi_mac_to_str 9010f0e8 ssi_tags 900a04b1 ssi_u16_to_str 900a04e1 ssi_u32_to_str 900a2151 stats_init 90092871 str_to_ip 9008d921 strcasecmp 9009f068 strchr 9009ff84 strcmp 900a0dfc strcpy 900a0e50 strlen 90096bd8 strncmp 900960a0 strncpy 90090748 strstr 90034af8 strtod 90035494 strtof 90051868 strtol 90034af8 strtold 90054b28 strtoul 9004e9c0 strtoull 900823f1 sys_check_timeouts 900a2ab1 sys_now 9008ffe1 sys_timeout 9009ab51 sys_timeouts_init 90088da1 sys_untimeout 90050e21 tcp_abandon 900a2ad1 tcp_abort 9009f751 tcp_accept 900d9d88 tcp_active_pcbs 900d9daa tcp_active_pcbs_changed 9005cb71 tcp_alloc 900a1a01 tcp_arg 90079ef1 tcp_backlog_accepted 90056681 tcp_bind 900d9d8c tcp_bound_pcbs 90089681 tcp_close 90041ff1 tcp_connect 90076aa1 tcp_eff_send_mss_netif 900419c1 tcp_enqueue_flags 900917e1 tcp_err 90074181 tcp_fasttmr 900946a1 tcp_free 900a0511 tcp_free_ooseq 900a2171 tcp_init 900272b1 tcp_input 900d9d90 tcp_input_pcb 90079fc1 tcp_keepalive 900d9d94 tcp_listen_pcbs 900a1421 tcp_listen_with_backlog 9004e0d1 tcp_listen_with_backlog_and_err 9008a491 tcp_netif_ip_addr_changed 900a2191 tcp_new_ip_type 900907b1 tcp_next_iss 90034621 tcp_output 90023fbc tcp_pcb_lists 90072fb1 tcp_pcb_purge 90051451 tcp_pcb_remove 9007f131 tcp_poll 90065011 tcp_process_refused_data 90091851 tcp_recv 90084dd1 tcp_recv_null 9006dff1 tcp_recved 90068571 tcp_rexmit 90072831 tcp_rexmit_fast 900928d1 tcp_rexmit_rto 9008f411 tcp_rexmit_rto_commit 9006b651 tcp_rexmit_rto_prepare 900658d1 tcp_rst 9008bb31 tcp_seg_copy 9009e381 tcp_seg_free 9009ffb1 tcp_segs_free 90070491 tcp_send_empty_ack 9007a8b1 tcp_send_fin 900918c1 tcp_sent 90093471 tcp_setprio 900730a1 tcp_shutdown 9002a871 tcp_slowtmr 9003cdf1 tcp_split_unsent_seg 9008e121 tcp_tcp_get_tcp_addrinfo 900d9d98 tcp_ticks 90096c31 tcp_timer_needed 900a0541 tcp_tmr 900a2af1 tcp_trigger_input_pcb_close 900d9d9c tcp_tw_pcbs 9006c071 tcp_update_rcv_ann_wnd 90027ef1 tcp_write 9005a441 tcp_zero_window_probe 9008e1a1 tcpecho_raw_init 9008adb1 termd_getchar 900771a1 termd_init 9007e781 termd_putchar 90080261 termd_send 9008a521 tftp_init 900a2ff1 tftp_init_server 90023cec tisci_if_CMP_EVENT_INTROUTER0 90023fdc tisci_if_CPSW0 90023c34 tisci_if_CPTS0 90023a60 tisci_if_DMASS0_INTAGGR_0 900244a4 tisci_if_EPWM0 900244a8 tisci_if_EPWM3 900244ac tisci_if_EPWM6 900243a4 tisci_if_GPIO0 900243ac tisci_if_GPIO1 900244b0 tisci_if_GPMC0 900244b4 tisci_if_GTC0 90023a2c tisci_if_MAIN_GPIOMUX_INTROUTER0 900243b4 tisci_if_MCU_GPIO0 90023b0c tisci_if_MCU_MCU_GPIOMUX_INTROUTER0 90023f60 tisci_if_PCIE0 90023c54 tisci_if_PRU_ICSSG0 90023c70 tisci_if_PRU_ICSSG1 900244b8 tisci_if_TIMER0 900244bc tisci_if_TIMER1 900244c0 tisci_if_TIMER2 900244c4 tisci_if_TIMER3 900232d4 tisci_if_TIMESYNC_EVENT_INTROUTER0 9010f410 uartHandler 900d9dab ucAssumeFATType 90059401 udp_bind 900617e1 udp_connect 900a21b1 udp_init 900362b1 udp_input 90092e71 udp_netif_ip_addr_changed 9009e3b1 udp_new 900a27d1 udp_new_ip_type 900d9da0 udp_pcbs 90092931 udp_recv 9007cee1 udp_remove 90056841 udp_sendto 90058541 udp_sendto_if 900379a1 udp_sendto_if_src 900978e8 unlink 900a30f1 vTaskSetThreadLocalStoragePointer 900a3741 vTaskSuspendAll 9010db98 vint_usage_count_DMASS0_INTAGGR_0 900d9c14 virtToPhymap 9009f091 vprintf_ 9009eb91 vsnprintf_ 900a08c0 wcslen 9009cb94 write 900a3751 xTaskResumeAll 9004a931 xmodemReceive 900431d1 xmodemTransmit GLOBAL SYMBOLS: SORTED BY Symbol Address address name ------- ---- 00000000 __TI_static_base__ 00000000 _vectors 00000100 __ABORT_STACK_SIZE 00000100 __FIQ_STACK_SIZE 00000100 __IRQ_STACK_SIZE 00000100 __UNDEFINED_STACK_SIZE 00001000 __SVC_STACK_SIZE 0000fa00 __STACK_SIZE 0001f400 __SYSMEM_SIZE 700f5a91 HwiP_enableInt 700f5ad1 HwiP_disableInt 700f5b31 HwiP_restoreInt 700f5b61 HwiP_clearInt 700f5ba1 HwiP_post 700f5be1 HwiP_Params_init 700f5c11 HwiP_construct 700f5e11 HwiP_destruct 700f5e81 HwiP_init 700f6031 HwiP_inISR 700f6061 HwiP_irq_handler_c 700f61a1 HwiP_fiq_handler 700f6301 HwiP_reserved_handler 700f6341 HwiP_undefined_handler 700f6381 HwiP_svc_handler 700f63c1 HwiP_prefetch_abort_handler 700f6401 HwiP_data_abort_handler_c 700f6434 HwiP_irq_handler 700f64a8 HwiP_data_abort_handler 700f64e0 HwiP_disable 700f64f0 HwiP_disableFIQ 700f6500 HwiP_enable 700f6510 HwiP_enableFIQ 700f6520 HwiP_restore 700f6528 HwiP_enableVIC 700f6538 HwiP_disableVIC 700f6548 HwiP_getCPSR 700f6550 CacheP_disableL1d 700f6578 CacheP_disableL1p 700f6590 CacheP_enableL1d 700f65a8 CacheP_enableL1p 700f65c0 CacheP_invL1d 700f65f8 CacheP_invL1p 700f6634 CacheP_invL1dAll 700f663c CacheP_invL1pAll 700f6644 CacheP_wb 700f6680 CacheP_wbInv 700f66bc CacheP_wbAll 700f6764 CacheP_wbInvAll 700f677c CacheP_wbInvAllAsm 700f681c CacheP_getEnabled 700f6854 CacheP_getCacheLevelInfo 700f6860 CacheP_configForceWrThru 700f6880 CacheP_setDLFO 700f6891 CacheP_init 700f6921 CacheP_disable 700f6971 CacheP_enable 700f69b1 CacheP_inv 700f69f1 MpuP_RegionAttrs_init 700f6a21 MpuP_setRegion 700f6b11 MpuP_isEnable 700f6b21 MpuP_disable 700f6b61 MpuP_enable 700f6ba1 MpuP_init 700f6c38 MpuP_disableAsm 700f6c50 MpuP_disableBRAsm 700f6c60 MpuP_enableAsm 700f6c78 MpuP_enableBRAsm 700f6c88 MpuP_isEnableAsm 700f6c9c MpuP_setRegionAsm 700f6cb0 _c_int00_sbl 700f6cd4 _c_int00 700f6db1 _DebugP_assertNoLog 700f6de1 __mpu_init 700f6e10 C$$EXIT 700f6e10 abort 700f7a90 __IRQ_STACK_START 700f7b90 __FIQ_STACK_START 700f7b90 __IRQ_STACK_END 700f7c90 __FIQ_STACK_END 700f7c90 __SVC_STACK_START 700f8c90 __ABORT_STACK_START 700f8c90 __SVC_STACK_END 700f8d90 __ABORT_STACK_END 700f8d90 __UNDEFINED_STACK_START 700f8e90 __UNDEFINED_STACK_END 701c0000 gPPSom 701c0100 gPPBase 701c0200 gPdo 701df000 IPCTermMtrCFUParamaters 701df100 IPCMtrTermCFU 701df200 IPCMtrTermEnc 701df300 IPCTermMtrData 701df400 ecEOEBufferTx 701dfa00 ecEOEBufferRx 80000000 gUniflashFileBuf 88000000 gUniflashVerifyBuf 90019628 TerminalCommandTable 9001a69e VersionFW 9001a6a0 crc32_table 9001dff8 device_params 9001f904 gUdmaRmDefBoardCfg_Pktdma 90020a94 gUdmaTxMappedChRingAttributes 90021098 gSciclientMap 90021830 __aeabi_ctype_table_ 90021830 __aeabi_ctype_table_C 90022bc8 gUdmaRxMappedChRingAttributes 90022e9c gUdmaRmDefBoardCfg_Bcdma 900232d4 tisci_if_TIMESYNC_EVENT_INTROUTER0 900233a4 gCacheConfig 900233ac gMpuConfig 900233b8 gMpuRegionConfig 9002357c altcp_tcp_functions 900235d4 gRmIrqTree 90023723 IPCClientIDOffset 90023728 gEnetSoc_cpsw3gSocCfg 90023844 memp_pools 90023948 lwip_cyclic_timers 90023a2c tisci_if_MAIN_GPIOMUX_INTROUTER0 90023a60 tisci_if_DMASS0_INTAGGR_0 90023ae8 I2C_defaultTransaction 90023b0c tisci_if_MCU_MCU_GPIOMUX_INTROUTER0 90023c34 tisci_if_CPTS0 90023c54 tisci_if_PRU_ICSSG0 90023c70 tisci_if_PRU_ICSSG1 90023cec tisci_if_CMP_EVENT_INTROUTER0 90023d1c IPCNuberOfMsgIDs 90023d30 file__404_shtml 90023d44 file__error_shtml 90023d58 file__favicon_ico 90023d6c file__index_shtml 90023d80 file__index_shtml_bak 90023d94 file__ok_shtml 90023da8 file__params_shtml 90023dbc file__pecnv_jpg 90023dd0 file__tidy_css 90023df8 memp_ALTCP_PCB 90023e0c memp_ARP_QUEUE 90023e20 memp_FRAG_PBUF 90023e34 memp_IGMP_GROUP 90023e48 memp_PBUF 90023e5c memp_PBUF_POOL 90023e70 memp_POOL_128 90023e84 memp_POOL_1792 90023e98 memp_POOL_4096 90023eac memp_RAW_PCB 90023ec0 memp_REASSDATA 90023ed4 memp_RX_POOL 90023ee8 memp_SYS_MBOX 90023efc memp_SYS_TIMEOUT 90023f10 memp_TCP_PCB 90023f24 memp_TCP_PCB_LISTEN 90023f38 memp_TCP_SEG 90023f4c memp_UDP_PCB 90023f60 tisci_if_PCIE0 90023f74 device_name 90023fac http_ssi_tag_desc 90023fbc tcp_pcb_lists 90023fdc tisci_if_CPSW0 90024002 CMP_EVENT_INTROUTER0_outp_0_15_to_GICSS0_spi_48_63 9002400a CMP_EVENT_INTROUTER0_outp_16_23_to_R5FSS0_CORE0_intr_48_55 90024012 CMP_EVENT_INTROUTER0_outp_16_23_to_R5FSS0_CORE1_intr_48_55 9002401a CMP_EVENT_INTROUTER0_outp_24_31_to_R5FSS1_CORE0_intr_48_55 90024022 CMP_EVENT_INTROUTER0_outp_24_31_to_R5FSS1_CORE1_intr_48_55 9002402a CMP_EVENT_INTROUTER0_outp_32_39_to_DMASS0_INTAGGR_0_intaggr_levi_pend_0_7 90024032 CPSW0_cpts_comp_0_0_to_CMP_EVENT_INTROUTER0_in_80_80 9002403a CPSW0_cpts_genf0_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_21_21 90024042 CPSW0_cpts_genf1_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_22_22 9002404a CPSW0_cpts_sync_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_34_34 90024052 CPTS0_cpts_comp_0_0_to_CMP_EVENT_INTROUTER0_in_82_82 9002405a CPTS0_cpts_genf0_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_16_16 90024062 CPTS0_cpts_genf1_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_17_17 9002406a CPTS0_cpts_genf2_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_18_18 90024072 CPTS0_cpts_genf3_4_4_to_TIMESYNC_EVENT_INTROUTER0_in_19_19 9002407a CPTS0_cpts_genf4_5_5_to_TIMESYNC_EVENT_INTROUTER0_in_20_20 90024082 CPTS0_cpts_genf5_6_6_to_TIMESYNC_EVENT_INTROUTER0_in_24_24 9002408a CPTS0_cpts_sync_7_7_to_TIMESYNC_EVENT_INTROUTER0_in_35_35 90024092 DMASS0_INTAGGR_0_intaggr_vintr_pend_0_39_to_GICSS0_spi_64_103 9002409a DMASS0_INTAGGR_0_intaggr_vintr_pend_120_127_to_R5FSS1_CORE0_intr_8_15 900240a2 DMASS0_INTAGGR_0_intaggr_vintr_pend_128_135_to_R5FSS1_CORE1_intr_8_15 900240aa DMASS0_INTAGGR_0_intaggr_vintr_pend_152_159_to_PRU_ICSSG0_pr1_slv_intr_16_23 900240b2 DMASS0_INTAGGR_0_intaggr_vintr_pend_160_167_to_PRU_ICSSG1_pr1_slv_intr_16_23 900240ba DMASS0_INTAGGR_0_intaggr_vintr_pend_168_183_to_MCU_M4FSS0_CORE0_nvic_32_47 900240c2 DMASS0_INTAGGR_0_intaggr_vintr_pend_40_71_to_R5FSS0_CORE0_intr_64_95 900240ca DMASS0_INTAGGR_0_intaggr_vintr_pend_40_71_to_R5FSS0_CORE1_intr_64_95 900240d2 DMASS0_INTAGGR_0_intaggr_vintr_pend_72_79_to_R5FSS0_CORE0_intr_8_15 900240da DMASS0_INTAGGR_0_intaggr_vintr_pend_80_87_to_R5FSS0_CORE1_intr_8_15 900240e2 DMASS0_INTAGGR_0_intaggr_vintr_pend_88_119_to_R5FSS1_CORE0_intr_64_95 900240ea DMASS0_INTAGGR_0_intaggr_vintr_pend_88_119_to_R5FSS1_CORE1_intr_64_95 900240f2 EPWM0_epwm_synco_o_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_39_39 900240fa EPWM3_epwm_synco_o_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_40_40 90024102 EPWM6_epwm_synco_o_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_41_41 9002410a GPIO0_gpio_0_89_to_MAIN_GPIOMUX_INTROUTER0_in_0_89 90024112 GPIO0_gpio_bank_90_98_to_MAIN_GPIOMUX_INTROUTER0_in_190_198 9002411a GPIO1_gpio_0_89_to_MAIN_GPIOMUX_INTROUTER0_in_90_179 90024122 GPIO1_gpio_bank_90_98_to_MAIN_GPIOMUX_INTROUTER0_in_180_188 9002412a GPMC0_gpmc_sdmareq_0_0_to_DMASS0_INTAGGR_0_intaggr_levi_pend_29_29 90024132 GTC0_gtc_push_event_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_36_36 9002413a MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_GICSS0_spi_32_47 90024142 MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_R5FSS0_CORE0_intr_32_47 9002414a MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_R5FSS0_CORE1_intr_32_47 90024152 MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_R5FSS1_CORE0_intr_32_47 9002415a MAIN_GPIOMUX_INTROUTER0_outp_0_15_to_R5FSS1_CORE1_intr_32_47 90024162 MAIN_GPIOMUX_INTROUTER0_outp_16_17_to_DMASS0_INTAGGR_0_intaggr_levi_pend_24_25 9002416a MAIN_GPIOMUX_INTROUTER0_outp_18_23_to_PRU_ICSSG0_pr1_iep0_cap_intr_req_4_9 90024172 MAIN_GPIOMUX_INTROUTER0_outp_18_23_to_PRU_ICSSG1_pr1_iep0_cap_intr_req_4_9 9002417a MAIN_GPIOMUX_INTROUTER0_outp_24_29_to_PRU_ICSSG0_pr1_iep1_cap_intr_req_10_15 90024182 MAIN_GPIOMUX_INTROUTER0_outp_24_29_to_PRU_ICSSG1_pr1_iep1_cap_intr_req_10_15 9002418a MAIN_GPIOMUX_INTROUTER0_outp_30_37_to_DMASS0_INTAGGR_0_intaggr_levi_pend_16_23 90024192 MAIN_GPIOMUX_INTROUTER0_outp_38_45_to_PRU_ICSSG0_pr1_slv_intr_46_53 9002419a MAIN_GPIOMUX_INTROUTER0_outp_46_53_to_PRU_ICSSG1_pr1_slv_intr_46_53 900241a2 MCU_GPIO0_gpio_0_29_to_MCU_MCU_GPIOMUX_INTROUTER0_in_0_29 900241aa MCU_GPIO0_gpio_bank_30_31_to_MCU_MCU_GPIOMUX_INTROUTER0_in_30_31 900241b2 MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_GICSS0_spi_104_107 900241ba MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_R5FSS0_CORE0_intr_104_107 900241c2 MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_R5FSS0_CORE1_intr_104_107 900241ca MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_R5FSS1_CORE0_intr_104_107 900241d2 MCU_MCU_GPIOMUX_INTROUTER0_outp_0_3_to_R5FSS1_CORE1_intr_104_107 900241da MCU_MCU_GPIOMUX_INTROUTER0_outp_4_7_to_MCU_M4FSS0_CORE0_nvic_0_3 900241e2 MCU_MCU_GPIOMUX_INTROUTER0_outp_8_11_to_MCU_ESM0_esm_pls_event0_88_91 900241ea MCU_MCU_GPIOMUX_INTROUTER0_outp_8_11_to_MCU_ESM0_esm_pls_event1_92_95 900241f2 MCU_MCU_GPIOMUX_INTROUTER0_outp_8_11_to_MCU_ESM0_esm_pls_event2_96_99 900241fa PCIE0_pcie_cpts_comp_0_0_to_CMP_EVENT_INTROUTER0_in_81_81 90024202 PCIE0_pcie_cpts_genf0_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_23_23 9002420a PCIE0_pcie_cpts_hw1_push_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_37_37 90024212 PCIE0_pcie_cpts_sync_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_33_33 9002421a PCIE0_pcie_ptm_valid_pulse_4_4_to_TIMESYNC_EVENT_INTROUTER0_in_38_38 90024222 PRU_ICSSG0_pr1_edc0_sync0_out_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_25_25 9002422a PRU_ICSSG0_pr1_edc0_sync1_out_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_26_26 90024232 PRU_ICSSG0_pr1_edc1_sync0_out_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_27_27 9002423a PRU_ICSSG0_pr1_edc1_sync1_out_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_28_28 90024242 PRU_ICSSG0_pr1_host_intr_req_4_11_to_CMP_EVENT_INTROUTER0_in_0_7 9002424a PRU_ICSSG0_pr1_iep0_cmp_intr_req_12_27_to_CMP_EVENT_INTROUTER0_in_16_31 90024252 PRU_ICSSG0_pr1_iep1_cmp_intr_req_28_43_to_CMP_EVENT_INTROUTER0_in_32_47 9002425a PRU_ICSSG1_pr1_edc0_sync0_out_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_29_29 90024262 PRU_ICSSG1_pr1_edc0_sync1_out_1_1_to_TIMESYNC_EVENT_INTROUTER0_in_30_30 9002426a PRU_ICSSG1_pr1_edc1_sync0_out_2_2_to_TIMESYNC_EVENT_INTROUTER0_in_31_31 90024272 PRU_ICSSG1_pr1_edc1_sync1_out_3_3_to_TIMESYNC_EVENT_INTROUTER0_in_32_32 9002427a PRU_ICSSG1_pr1_host_intr_req_4_11_to_CMP_EVENT_INTROUTER0_in_8_15 90024282 PRU_ICSSG1_pr1_iep0_cmp_intr_req_12_27_to_CMP_EVENT_INTROUTER0_in_48_63 9002428a PRU_ICSSG1_pr1_iep1_cmp_intr_req_28_43_to_CMP_EVENT_INTROUTER0_in_64_79 90024292 TIMER0_timer_pwm_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_0_0 9002429a TIMER1_timer_pwm_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_1_1 900242a2 TIMER2_timer_pwm_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_2_2 900242aa TIMER3_timer_pwm_0_0_to_TIMESYNC_EVENT_INTROUTER0_in_3_3 900242b2 TIMESYNC_EVENT_INTROUTER0_outl_0_7_to_DMASS0_INTAGGR_0_intaggr_levi_pend_8_15 900242ba TIMESYNC_EVENT_INTROUTER0_outl_10_10_to_PRU_ICSSG0_pr1_edc1_latch0_in_2_2 900242c2 TIMESYNC_EVENT_INTROUTER0_outl_11_11_to_PRU_ICSSG0_pr1_edc1_latch1_in_3_3 900242ca TIMESYNC_EVENT_INTROUTER0_outl_12_12_to_PRU_ICSSG1_pr1_edc0_latch0_in_0_0 900242d2 TIMESYNC_EVENT_INTROUTER0_outl_13_13_to_PRU_ICSSG1_pr1_edc0_latch1_in_1_1 900242da TIMESYNC_EVENT_INTROUTER0_outl_14_14_to_PRU_ICSSG1_pr1_edc1_latch0_in_2_2 900242e2 TIMESYNC_EVENT_INTROUTER0_outl_15_15_to_PRU_ICSSG1_pr1_edc1_latch1_in_3_3 900242ea TIMESYNC_EVENT_INTROUTER0_outl_16_16_to_CPTS0_cpts_hw1_push_0_0 900242f2 TIMESYNC_EVENT_INTROUTER0_outl_17_17_to_CPTS0_cpts_hw2_push_1_1 900242fa TIMESYNC_EVENT_INTROUTER0_outl_18_18_to_CPTS0_cpts_hw3_push_2_2 90024302 TIMESYNC_EVENT_INTROUTER0_outl_19_19_to_CPTS0_cpts_hw4_push_3_3 9002430a TIMESYNC_EVENT_INTROUTER0_outl_20_20_to_CPTS0_cpts_hw5_push_4_4 90024312 TIMESYNC_EVENT_INTROUTER0_outl_21_21_to_CPTS0_cpts_hw6_push_5_5 9002431a TIMESYNC_EVENT_INTROUTER0_outl_22_22_to_CPTS0_cpts_hw7_push_6_6 90024322 TIMESYNC_EVENT_INTROUTER0_outl_23_23_to_CPTS0_cpts_hw8_push_7_7 9002432a TIMESYNC_EVENT_INTROUTER0_outl_29_29_to_PCIE0_pcie_cpts_hw2_push_0_0 90024332 TIMESYNC_EVENT_INTROUTER0_outl_30_30_to_CPSW0_cpts_hw1_push_0_0 9002433a TIMESYNC_EVENT_INTROUTER0_outl_31_31_to_CPSW0_cpts_hw2_push_1_1 90024342 TIMESYNC_EVENT_INTROUTER0_outl_32_32_to_CPSW0_cpts_hw3_push_2_2 9002434a TIMESYNC_EVENT_INTROUTER0_outl_33_33_to_CPSW0_cpts_hw4_push_3_3 90024352 TIMESYNC_EVENT_INTROUTER0_outl_34_34_to_CPSW0_cpts_hw5_push_4_4 9002435a TIMESYNC_EVENT_INTROUTER0_outl_35_35_to_CPSW0_cpts_hw6_push_5_5 90024362 TIMESYNC_EVENT_INTROUTER0_outl_36_36_to_CPSW0_cpts_hw7_push_6_6 9002436a TIMESYNC_EVENT_INTROUTER0_outl_37_37_to_CPSW0_cpts_hw8_push_7_7 90024372 TIMESYNC_EVENT_INTROUTER0_outl_8_8_to_PRU_ICSSG0_pr1_edc0_latch0_in_0_0 9002437a TIMESYNC_EVENT_INTROUTER0_outl_9_9_to_PRU_ICSSG0_pr1_edc0_latch1_in_1_1 90024394 gEnetPhyDrvTbl 900243a4 tisci_if_GPIO0 900243ac tisci_if_GPIO1 900243b4 tisci_if_MCU_GPIO0 90024479 ethbroadcast 9002447f ethzero 9002448c device_params_length 90024490 gCacheL1dCacheLineSize 90024494 gCacheL1pCacheLineSize 90024498 gRmIrqTreeCount 9002449c ip_addr_any 900244a0 ip_addr_broadcast 900244a4 tisci_if_EPWM0 900244a8 tisci_if_EPWM3 900244ac tisci_if_EPWM6 900244b0 tisci_if_GPMC0 900244b4 tisci_if_GTC0 900244b8 tisci_if_TIMER0 900244bc tisci_if_TIMER1 900244c0 tisci_if_TIMER2 900244c4 tisci_if_TIMER3 900256b4 __aeabi_errno_addr 900264c8 __TI_printfi_nofloat 900272a8 _nop 900272ac fseek 900272b1 tcp_input 90027ee4 malloc 90027ef1 tcp_write 90028a14 CSL_armR5ReadMpidrReg 90029ef4 remove 90029ef8 __aeabi_memcpy 90029ef8 __aeabi_memcpy4 90029ef8 __aeabi_memcpy8 9002a871 tcp_slowtmr 9002b1d1 TERMINAL_vCommandConsole 9002ba91 EnetDma_openTxCh 9002c331 OSPI_phyFindOTP1 9002cb61 EnetUdma_submitPkts 9002d331 EnetDma_openRxCh 9002e111 I2C_primeTransfer 9002e7d1 CFU_vprintStatus 90030671 EnetOsal_init 900311d1 EnetUdma_openRxRsvdFlow 90031751 OSPI_phyFindOTP2 90031ca1 Udma_rmInit 900321f1 ip4_input 900336d1 EnetUdma_allocRing 90033bf1 CpswAle_open 90034111 icmp_input 90034621 tcp_output 90034af8 strtod 90034af8 strtold 90035494 strtof 90035e01 FF_FindEntryInDir 900362b1 udp_input 90036761 Lwip2Enet_open 90037091 ip4_reass 900379a1 udp_sendto_if_src 90037e21 etharp_query 90038271 Cpsw_open 90038f51 EnetRm_detachCore 90039391 CpswMacPort_open 90039bd1 EnetUdma_openRxCh 90039fd1 FF_Write 9003a3d1 IpcNotify_init 9003abc1 I2C_hwiFxnController 9003b381 SOC_phyToVirt 9003b761 FF_Read 9003c2c1 Udma_initDrvHandle 9003ca41 EnetRm_close 9003cdf1 tcp_split_unsent_seg 9003d1a1 ip4_frag 9003d901 PP_Read 9003e041 PP_Refresh 9003e3e1 FF_Mount 9003e781 FF_Open 9003eb01 Cpsw_handleLinkDown 9003ee81 UdmaRmInitPrms_init 9003f201 I2C_open 9003ffa1 Mdio_open 90040301 I2C_hwiFxnTarget 90040651 FF_PartitionSearch 90040cf1 EnetMem_deInit 90041361 SOC_virtToPhy 90041691 ip4_output_if_opt_src 900419c1 tcp_enqueue_flags 90041ff1 tcp_connect 900425f1 pbuf_alloc 90042bf1 etharp_output 90042ee1 netif_add 900431d1 xmodemTransmit 900434c1 CSL_CPSW_setPortRxDscpMap 900437b1 Bootloader_uniflashProcessFlashCommands 90044051 Sciclient_service 90044331 Cpsw_periodicTick 90044e81 CSL_CPSW_setAleIPv6Entry 900456c1 pbuf_copy 90045ef1 EnetDma_closeRxCh 900461a1 CpswAle_addVlan 90046701 FF_Partition 900469b1 Bootloader_MmcsdRaw_writeToOffset 90047431 EnetDma_closeTxCh 900476d1 FF_FindFreeCluster 90047c11 CSL_CPSW_setAlePolicerEntry 90047ea1 FF_PopulateLongDirent 90048651 CSL_CPSW_getAlePolicerEntry 900488e1 Cpsw_ioctl 90048b71 CpswAle_findVlan 90048e01 EnetMem_initMemObjs 90049591 FF_FormatDisk 90049811 TimerP_setup 90049a91 UART_open 9004a471 Udma_chConfigRx 9004a931 xmodemReceive 9004ab91 CpswEst_ioctl_handler_ENET_TAS_IOCTL_SET_STATE 9004b051 FF_GetBuffer 9004b771 igmp_input 9004b9d1 MMCSD_open 9004c7c1 CSL_CPGMAC_SL_setInterVLANCfg 9004ca11 FF_Close 9004dc51 prvFFErrorToErrno 9004de91 Bootloader_MmcsdRaw_readFromOffset 9004e0d1 tcp_listen_with_backlog_and_err 9004e551 EnetUdma_initTxFreeDescQ 9004e791 main 9004e9c0 strtoull 9004ee21 FF_CreateShortName 9004f051 LWIPIF_LWIP_getChkSumInfo 9004f281 Udma_eventRegister 9004f8f1 FF_CountFreeClusters 90050171 ff_findnext 90050391 Udma_rmSetSharedResRmInitPrms 900505b1 EnetMem_allocEthPkt 900507d1 FF_putFATEntry 900509f1 pbuf_take 90050e21 tcp_abandon 90051031 CpswHostPort_open 90051241 Udma_ringAlloc 90051451 tcp_pcb_remove 90051661 EnetUdma_closeRxRsvdFlow 90051868 strtol 90051c81 FF_FindShortName 90052e91 pbuf_free 90053091 LwipifEnetAppCb_getRxHandleInfo 90053281 EnetUdma_retrievePkts 90053661 Cpsw_internalIoctl_handler_ENET_IOCTL_UNREGISTER_DSTMAC_RX_FLOW 90053e11 TERMINAL_u16FindOptionFromString 90053ff1 UART_write 900541d1 FF_FindNext 900543b1 Lwip2Enet_periodicFxn 90054771 Enet_validateIoctl 90054951 Udma_flowConfig 90054b28 strtoul 90054d01 OSPI_open 90054ee1 CpswStats_open 900550c1 FF_CreateDirent 90055294 __aeabi_uidiv 90055294 __udivsi3 90055471 FF_CreateIOManger 90055811 I2C_transfer 900559e1 EnetDma_submitRxPktQ 90055bb1 EnetDma_submitTxPktQ 90056121 UART_read 900562f1 Enet_validateGenericIoctl 90056681 tcp_bind 90056841 udp_sendto 90056a01 CpswCpts_open 90056bb8 aligned_alloc 90056bb8 memalign 90056d70 free 90056f31 SOC_moduleSetClockFrequency 900572b1 CpswAle_delPolicerEntry 90057971 PromPrint 900581e1 EnetPhy_open 90058541 udp_sendto_if 900586f1 FF_getFATEntry 90058894 fputs 90058be1 FF_FS_Add 90058d81 mem_free 90058f21 EnetUdma_open 90059261 etharp_input 90059401 udp_bind 900595a1 EnetApp_initLinkArgs 90059a81 PP_Validate 90059c21 Sciclient_rmClearInterruptRoute 90059dc1 pbuf_realloc 90059f61 Udma_chConfigTx 9005a441 tcp_zero_window_probe 9005a5e1 EnetUdma_ringDequeue 9005a781 UART_close 9005a911 dhcp_start 9005ac31 flasher_console 9005b0e1 eoe_handle 9005b271 ethernet_input 9005b721 FF_Utf16ctoUtf8c 9005ba41 Sciclient_rmProgramInterruptRoute 9005bbd1 pbuf_copy_partial 9005c081 EEPROM_AT24C_write 9005c531 CpswEst_setState 9005c6c1 EnetApp_getRxDmaHandle 9005c851 EnetUdma_ringEnqueue 9005cb71 tcp_alloc 9005cd01 OSPI_readCmd 9005d001 EnetUdma_initRxFreeDescQ 9005d181 autoip_tmr 9005d781 custom_pbuf_free 9005da61 Cpsw_internalIoctl_handler_ENET_IOCTL_REGISTER_DSTMAC_RX_FLOW 9005dbd1 OSPI_readDirect 9005deb1 ip4_route 9005e191 CSL_bcdmaChanOp 9005e471 Udma_chOpen 9005e751 EnetDma_retrieveRxPktQ 9005e8c1 EnetDma_retrieveTxPktQ 9005ea31 EnetPhyMdioDflt_writeC45 9005eba1 EnetRm_open 9005f161 CSL_CPSW_setAlePortControlReg 9005f2c1 CpswHostPort_ioctl 9005f421 CpswStats_ioctl 9005f6e1 I2C_ctrlInit 9005f9a1 EnetPhyMdioDflt_readC45 9005fb01 EnetRm_ioctl_handler_ENET_RM_IOCTL_INTERNAL_ALLOC_RX_FLOW 9005fdc1 Cpsw_setDfltThreadCfg 9005ff21 FF_FlushCache 900601e1 EnetApp_driverOpen 90060341 Udma_rmAllocMappedRxCh 900604a1 Udma_rmAllocMappedTxCh 90060601 dhcp_renew 900608c1 CpswAle_initCfg 90060a21 EEPROM_AT24C_read 90060b81 etharp_tmr 90060e41 raw_input 90061101 FF_MMCSDDiskInit 90061261 EnetPhyMdioDflt_writeC22 900613c1 EnetUdma_registerEvent 90061521 LwipifEnetApp_getRxChIDs 900617e1 udp_connect 90061aa1 FF_strtok 90061ec1 CSL_CPGMAC_SL_getInterVLANCfg 90062011 CSL_lcdma_ringaccDequeue 900622b1 OSPI_writeCmd 900627f1 OSPI_writeIndirect 90062941 enet_start 90062be1 CSL_CPSW_getAleIPv6Entry 90062d31 EnetPhyMdioDflt_readC22 90062e81 IPCRxHandler 90063121 EnetApp_closeRxDma 90063271 FF_UnlinkClusterChain 90063511 Mdio_ioctl 90063901 FF_FetchEntryWithContext 90063ce4 setvbuf 900644c1 mem_malloc 90064611 FF_Seek 90064751 Lwip2Enet_close 900649d1 Udma_rmAllocMappedRing 90064b10 ldexp 90064b10 ldexpl 90064b10 scalbn 90064b10 scalbnl 90064c51 CSL_CPSW_setAleVlanUnicastAddrEntry 90064d91 FF_PushEntryWithContext 90065011 tcp_process_refused_data 90065291 Enet_ioctl 900653d1 LPDDR4_AckCtlInterrupt 90065511 dhcp_release_and_stop 900658d1 tcp_rst 90065a11 CSL_CPSW_setAleIPv4Entry 90065c91 EnetPhyMdioDflt_isAlive 90065dd1 EnetPhyMdioDflt_isLinked 90065f11 PP_Upgrade 90066411 memStessTest 90066551 CSL_CPSW_setAleVlanMcastAddrEntry 90066691 CSL_CPSW_setAleUnicastAddrEntry 900667c1 ClockP_init 900668f1 EnetApp_driverClose 90066a21 EnetMod_open 90066c81 FF_Utf8ctoUtf16c 90066db1 I2C_recoverBus 90067141 Udma_rmAllocIrIntr 900673a1 CSL_CPSW_setCpswControlReg 900674d1 EnetUtils_macToPhyMii 90067601 FF_IncreaseFreeClusters 90067731 Sciclient_pmQueryModuleClkFreq 90067991 Cpsw_initCfg 90067ac1 LwipifEnetApp_getTxChIDs 90067bf1 MMCSD_read 90067d21 CpswMacPort_ioctl 900681e1 netif_set_addr 90068311 pbuf_take_at 90068571 tcp_rexmit 900686a1 CSL_CPSW_setAleMcastAddrEntry 90069281 FF_ExtendDirectory 90069741 EnetAppUtils_mainMmrCtrl 900699a1 Udma_rmAllocBlkCopyCh 90069ad1 Udma_rmAllocBlkCopyHcCh 90069c01 Udma_rmAllocBlkCopyUhcCh 90069d31 Udma_rmAllocRxCh 90069e61 Udma_rmAllocRxHcCh 90069f91 Udma_rmAllocRxUhcCh 9006a0c1 Udma_rmAllocTxCh 9006a1f1 Udma_rmAllocTxHcCh 9006a321 Udma_rmAllocTxUhcCh 9006a691 IPC_vTransceiver 9006a7b1 MMCSD_write 9006ad51 pbuf_cat 9006ae71 CSL_CPSW_setAleVlanEntry 9006af91 EnetQueue_append 9006b0b1 EnetUtils_delayNs 9006b1d1 FF_FindDir 9006b651 tcp_rexmit_rto_prepare 9006b771 CSL_CPSW_setAleOutVlanEntry 9006bd11 LPDDR4_CheckCtlInterrupt 9006bf51 Udma_ringSetCfgLcdma 9006c071 tcp_update_rcv_ann_wnd 9006c188 __udivmoddi4 9006c721 System_init 9006c961 EnetAppUtils_setDeviceState 9006ccb4 ldexpf 9006ccb4 scalbnf 9006cdd1 FF_GetModeBits 9006cef1 CpswAle_ioctl 9006d001 CpswCpts_ioctl 9006d331 Sciclient_pmSetModuleClkFreq 9006d551 EnetHostPortDma_open 9006d661 memTestData 9006d771 EnetHostPortDma_close 9006d881 EnetPhy_rmwReg 9006d991 EnetUdma_flushRxFlowRing 9006daa1 EnetUdma_flushTxChRing 9006dbb1 PP_Write_ID_CRC 9006ddd1 Cpsw_close 9006dee1 PromErase 9006dff1 tcp_recved 9006e431 MMCSD_parseCSDSd 9006e541 OSPI_setProtocol 9006e761 pbuf_memcmp 9006e871 pbuf_remove_header 9006e981 CSL_CPSW_setPortEstConfig 9006eba1 EventP_waitBits 9006ecb1 LWIPIF_LWIP_UdpLiteValidateChkSum 9006edc1 LwipifEnetApp_netifOpen 9006eed1 TERMCOM_vDebug 9006efe1 UART_u16WriteCharNonBlocking 9006f201 http_set_ssi_handler 9006f421 CpswCpts_ioctl_handler_CPSW_CPTS_IOCTL_SET_ESTF 9006f531 EnetAppUtils_enableClocks 9006f641 EnetBoard_setupPorts 9006f751 EnetUdma_closeRxCh 9006f861 FF_DecreaseFreeClusters 9006f971 ip4addr_ntoa_r 9006fc91 EnetPhy_getId 9006fd91 EnetRm_ioctl 90070191 CpswStats_resetMacStats 90070391 Udma_init 90070491 tcp_send_empty_ack 90070691 FF_FS_Find 90070791 Lwip2Enet_sendTxPackets 90070891 LwipifEnetAppCb_getEnetLwipIfInstInfo 90070a91 EnetUdmaStats_updateNotifyStats 90070d91 MMCSD_parseCIDEmmc 90070f91 EnetPhy_tick 90071191 CSL_CPTS_setCntlReg 90071391 Cpsw_internalIoctl_handler_ENET_PER_IOCTL_ATTACH_CORE 90071491 EnetQueue_enq 90071591 I2CControllerInitExpClk 90071691 SemaphoreP_pend 90071b91 Enet_open 90071c91 PP_Write_FWPage 90071d91 Sciclient_rmTranslateIntOutput 90072091 EnetQueue_verifyQCount 90072291 EnetMod_ioctl 90072381 MMCSD_parseECSDEmmc 90072471 PP_Write_FWID_PageCRC 90072651 PP_Verify_ID_CRC 90072741 autoip_start 90072831 tcp_rexmit_fast 90072b01 Cpsw_internalIoctl_handler_ENET_PER_IOCTL_OPEN_PORT_LINK 90072ce1 IpcNotify_sendMsg 90072fb1 tcp_pcb_purge 900730a1 tcp_shutdown 90073191 AddrTranslateP_getLocalAddr 90073371 FF_MMCSDGetPartitionDetails 90073551 CSL_CPSW_getCpswControlReg 90073641 EnetAppUtils_initResourceConfig 90073731 EnetDma_initRxChParams 90073af1 dhcp_set_struct 90073dc1 EnetPhy_isAlive 90074181 tcp_fasttmr 90074271 CSL_CPTS_setupESTFn 90074541 FF_GetEntry 90074811 CSL_CPSW_getAlePortControlReg 90074ae1 LED_tpic2810Off 90074bd1 LED_tpic2810On 90075061 EnetApp_getTxDmaHandle 90075141 EnetUdma_memMgrInit 90075221 Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_C22_READ 900754c1 CSL_CPSW_getAleVlanUnicastAddrEntry 90075ae1 CSL_intaggrSetIntrEnable 90075d81 CSL_CPSW_getPortControlReg 90075f41 CpswMacPort_ioctl_handler_ENET_MACPORT_IOCTL_SET_INGRESS_DSCP_PRI_MAP 900761e1 PP_Verify_FWID_PageCRC 90076481 Udma_rmGetSciclientDefaultBoardCfgRmRange 90076aa1 tcp_eff_send_mss_netif 90076c61 FF_CreateFile 90076f01 ethernet_output 900771a1 termd_init 90077361 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_ADD_UCAST 90077441 EnetRm_freeResource 90077601 FF_ClearCluster 900777c1 CSL_CPSW_getAleUnicastAddrEntry 900778a1 EnetUdma_rxCqIsr 90077981 EnetUdma_txCqIsr 90077a61 I2C_close 90077b41 CSL_CPSW_getAleVlanEntry 900785d1 MMCSD_enableBootPartition 900786a1 MMCSD_parseCIDSd 90078911 CSL_CPSW_setPortControlReg 90078ab1 EnetApp_addMCastEntry 90078b81 FF_PutEntry 90078c51 IpcNotify_isr 90078d21 Udma_rmAllocVintrBit 90078df1 CSL_CPSW_getAleOutVlanEntry 900793a1 OSPI_phyResyncDLL 90079611 FF_TraverseFAT 900797b1 Udma_ringFree 90079878 getdevice 90079ae1 Enet_getDmaHandle 90079bb1 SOC_isR5FDualCoreMode 90079c81 Udma_eventUnRegister 90079ef1 tcp_backlog_accepted 90079fc1 tcp_keepalive 9007a161 EnetRm_ioctl_handler_ENET_RM_IOCTL_INTERNAL_FREE_RX_FLOW 9007a231 Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_C45_READ 9007a4a1 UART_flushTxFifo 9007a641 memTestBus 9007a8b1 tcp_send_fin 9007a981 CSL_CPSW_setTxMaxLenPerPriority 9007ab21 FF_BlockRead 9007abf1 FF_BlockWrite 9007acc1 FF_strmatch 9007af31 Udma_chClose 9007b001 ff_findfirst 9007b1a1 Board_flashOpen 9007b3e1 CpswMacPort_ioctl_handler_CPSW_MACPORT_IOCTL_ENABLE 9007b621 LPDDR4_ReadReg 9007b6e1 Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_C45_WRITE 9007b921 ClockP_timerTickIsr 9007bc21 netif_input 9007bda1 EnetOsalDflt_initCfg 9007bfe1 prvGetFromFATBuffers 9007c161 ClockP_stop 9007c461 EnetDma_initTxChParams 9007c521 IpcNotify_waitSync 9007c5e1 autoip_arp_reply 9007c6a1 dhcp_coarse_tmr 9007ca61 EnetBoard_getMacAddrList 9007cb21 Flash_offsetToSectorPage 9007cbe1 LPDDR4_WriteReg 9007cca1 Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_C45_WRITE 9007cd61 PP_Write_TestID 9007cee1 udp_remove 9007d061 CSL_MDIO_phyRegRead2 9007d1e1 Cpsw_internalIoctl_handler_ENET_PER_IOCTL_DETACH_CORE 9007d2a1 Cpsw_internalIoctl_handler_ENET_PER_IOCTL_IS_PORT_LINK_UP 9007d361 EnetApp_getEnetInstInfo 9007d421 Flash_offsetToBlkPage 9007d5a1 Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_C45_READ 9007d661 OSPI_phyTuneDDR 9007d7e1 CSL_CPSW_getPortEstConfig 9007d8a1 CSL_CPSW_setAleOUIAddrEntry 9007dae1 OSPI_close 9007db94 __TI_closefile 9007dc51 dhcp_network_changed 9007ddc4 fseeko 9007df41 Board_ledOpen 9007e181 EnetAppUtils_addHostPortEntry 9007e301 Enet_init 9007e3c1 FF_FindFirst 9007e481 PP_Initialise 9007e541 Sciclient_getCurrentContext 9007e601 emmc_init 9007e781 termd_putchar 9007e841 CSL_MDIO_phyInitiateRegWriteC45 9007e8f1 EnetQueue_deq 9007ea51 UART_init 9007ec61 netif_set_up 9007ee71 Mdio_close 9007ef21 Udma_getMappedChRingAttributes 9007efd1 http_set_cgi_handlers 9007f131 tcp_poll 9007f291 EnetApp_coreAttach 9007f4a1 EnetUdma_dmaDescEnque 9007f601 UdmaChRxPrms_init 9007f6b1 UdmaChTxPrms_init 9007f761 Udma_chDisable 9007f811 CSL_CPSW_setPTypeReg 9007fc31 Drivers_i2cOpen 9007fd91 Enet_close 9007fe41 IpcNotify_syncAll 900801b1 lwip_standard_chksum 90080261 termd_send 90080311 Board_eepromOpen 90080471 ClockP_destruct 90080521 Drivers_mmcsdOpen 900805d1 Drivers_uartOpen 90080681 EnetMod_close 90080731 GenericPhy_readExtReg 900807e1 LwipifEnetApp_startSchedule 90080aa1 Udma_ringSetDoorBellLcdma 90080b48 fflush 90080bf1 netif_set_link_up 90080ca1 CycleCounterP_init 90080cc1 CycleCounterP_reset 90080d11 CycleCounterP_nsToTicks 90080e01 CSL_CPSW_setPortVlanReg 90080f61 Drivers_ospiOpen 900810c1 EnetSocJ7x_releaseIntrCfg 90081171 EnetSocJ7x_setupIntrCfg 90081221 EnetUtils_init 900812d1 GenericPhy_writeExtReg 90081431 OSPI_setXferOpCodes 900814e1 Sciclient_pmGetModuleClkNumParent 90081641 CSL_intaggrIsIntrPending 900817a1 Enet_periodicTick 90081a61 UART_u16Flush 90081b11 Udma_flowAttachMapped 90081bc1 pbuf_alloc_reference 90081dc1 CSL_CPGMAC_SL_getMacStatusReg 90081e71 DDR_init 90081f21 EnetApp_getMacAddress 90082131 EnetQueue_enqHead 900821e1 LwipifEnetAppCb_getTxHandleInfo 900823f1 sys_check_timeouts 900825e1 EnetQueue_copyQ 90082680 HOSTrename 90082721 Udma_rmAllocEvent 900827c1 Udma_rmAllocVintr 90082a41 FF_PopulateShortDirent 90082cc1 Sciclient_getContext 90082e01 httpd_cgi_ssi_init 90082f41 CSL_MDIO_phyInitiateRegReadC45 90083121 Pinmux_config 900831c1 Udma_ringFlushRawLcdma 9008325c __TI_wrt_ok 90083301 CSL_CPSW_setPortStatsEnableReg 900833a1 CpswAle_setPolicerControl 90083581 SOC_controlModuleUnlockMMR 90083621 Sciclient_pmGetModuleClkFreq 900836c1 Sciclient_pmGetModuleClkParent 90083761 Sciclient_pmSetModuleClkParent 90083801 Sciclient_rmIrOutpIsFree 900838a1 Udma_ringQueueRaw 90083a81 pbufQ_init_freeQ 90083d98 HOSTlseek 90083f71 Sciclient_pmModuleGetClkStatus 900840b1 pbuf_alloced_custom 90084291 CSL_CPSW_getTxMaxLenPerPriority 900845b1 CpswMacPortEst_ioctl_handler_ENET_TAS_IOCTL_SET_STATE 90084791 Cpsw_rejoin 90084831 Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_C22_WRITE 90084971 Sciclient_init 90084ab1 UdmaFlowPrms_init 90084b51 Udma_ringDequeueRaw 90084dd1 tcp_recv_null 90084e71 Drivers_ffOpen 90084f11 EnetMem_allocRingMem 90084fa4 HOSTopen 90085041 IPC_vInit 900850e1 MMCSD_init 90085181 OSPI_init 900854a1 netif_set_link_down 90085541 CSL_CPSW_disablePortPassPriTag 900855e1 CSL_CPSW_enablePortPassPriTag 90085681 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_ADD_MCAST 900857c1 CpswMacPort_ioctlEst 90085861 EnetApp_closeTxDma 900859a1 SOC_moduleClockEnable 90085c21 pbuf_memfind 90085f01 EnetMem_allocEthPktInfoMem 90085f91 EnetUdma_buffDescInit 90086021 I2C_completeCurrTransfer 90086261 lwip_stricmp 90086381 CSL_CPSW_setCppiP0Control 900864a1 EnetAppUtils_delAddrEntry 90086531 Udma_chGetNum 900865c1 Udma_rmFreeMappedRing 90086651 cm_nxt 90086da1 EnetApp_initPhyStateHandlerTask 90086fe1 EnetUdma_memMgrAllocRxFlowObj 90087071 EnetUdma_memMgrAllocTxChObj 90087101 EnetUdma_memMgrFreeRxFlowObj 90087191 EnetUdma_memMgrFreeTxChObj 900873d1 Sciclient_pmGetModuleState 90087461 Sciclient_pmModuleClkRequest 900874f1 Sciclient_pmSetModuleState 9008769c close 90087731 CSL_MDIO_phyRegWrite2 900877c1 EnetUdma_close 90087851 EnetUdma_dmaDescCheck 900878e1 LPDDR4_PollCtlIrq 90087a01 OSPI_phySetRdDelayTxRxDLL 90087a91 Udma_ringFlushRaw 90087b21 dhcp_arp_reply 90087bb1 pbuf_clone 90087c41 CSL_bcdmaGetCfg 90087cd1 ClockP_getTimeUsec 90087df1 CpswStats_resetHostStats 90087e81 EnetDma_initPktInfo 90087f11 FF_InitEntryFetch 90087fa1 I2C_waitForPin 90088031 Lwip2Enet_rxPktHandler 900880c1 Udma_rmFreeVintrBit 90088148 __TI_doflush 900882f1 ip4_addr_isbroadcast_u32 90088411 ip4_output_if_opt 900884a1 lwip_strnstr 90088531 pbufQ_enQ 900885c1 CSL_CPSW_getAleIPv4Entry 90088651 CSL_CPSW_setAleEthertypeEntry 900886e1 EnetAppUtils_regDstMacRxFlow 90088771 EnetAppUtils_unregDstMacRxFlow 90088801 EnetApp_coreDetach 90088921 EnetPhy_writeReg 90088b61 OSPI_enablePhy 90088c81 UART_u16Transceive 90088da1 sys_untimeout 90088e31 CSL_CPSW_getALEPolicerEntryType 90088f51 CpswMacPort_openEst 900890f4 HOSTread 90089178 HOSTwrite 90089321 PP_Write_HWID_9NC 900893b1 PP_Write_HWID_Serial 90089681 tcp_close 900897a1 CSL_CPSW_getALEAddressType 90089831 CSL_CPSW_getPTypeReg 900898c1 CSL_CPSW_setAleAgingTimerReg 90089951 CSL_CPSW_setAlePolicerControlReg 90089b91 CpswMacPort_ioctl_handler_ENET_TAS_IOCTL_SET_STATE 90089c21 Cpsw_ioctlEst 90089dd1 EnetPhy_readReg 90089e61 EnetRm_findResource 90089ef1 FF_CheckValid 9008a0a1 OSPI_phyFindRxHigh 9008a131 OSPI_phyFindRxLow 9008a1c1 OSPI_phyFindTxHigh 9008a251 OSPI_phyFindTxLow 9008a401 fs_open 9008a491 tcp_netif_ip_addr_changed 9008a521 tftp_init 9008a6b1 EEPROM_AT24C_open 9008a831 EnetSoc_getMacPortMii 9008a8b1 EnetSoc_releaseIntrCfg 9008a931 EnetSoc_setupIntrCfg 9008a9b1 FF_GetChainLength 9008ab31 UART_dmaDisableChannel 9008ad31 inet_chksum_pseudo_partial 9008adb1 termd_getchar 9008b131 EnetSocJ7x_getIntrNum 9008b3b1 netif_invoke_ext_callback 9008b431 CSL_CPSW_mapMacAddr2TableWord 9008b4b1 CSL_pktdmaGetCfg 9008b531 EnetAppUtils_isPortLinkUp 9008b631 EnetRm_isCoreAttached 9008b6b1 Enet_initCfg 9008b831 LwipifEnetAppCb_releaseRxHandle 9008b8b1 LwipifEnetAppCb_releaseTxHandle 9008b931 UART_dmaClose 9008b9b1 _DebugP_assert 9008bb31 tcp_seg_copy 9008bbb1 EnetAppUtils_regDfltRxFlowForChIdx 9008bc31 EnetAppUtils_unregDfltRxFlowForChIdx 9008bd31 EnetPhyMdioDflt_ioctl 9008bdb1 FF_isEndOfChain 9008be31 Lwip2Enet_retrieveTxPkts 9008beb1 Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_C22_READ 9008bf31 OSPI_disablePhy 9008c031 inet_chksum_pbuf 9008c528 snprintf 9008c7a1 CpswAle_setPolicerDefaultThreadCfg 9008c821 EnetAppUtils_freeMac 9008c9a1 FF_MMCSDMountPartition 9008ca21 LWIPIF_LWIP_input 9008caa1 MMCSD_parseCSDEmmc 9008cba1 OSPI_phyReadAttackVector 9008cca1 TERMCOM_vPrintComma 9008cda1 Udma_chGetCqRingHandle 9008ce21 Udma_chGetFqRingHandle 9008d021 memp_free 9008d0a1 memp_malloc 9008d1a1 EnetAppUtils_allocMac 9008d3a1 I2C_init 9008d4a1 Udma_chEnable 9008d7a1 flasher_sbl 9008d821 flasher_xip 9008d921 strcasecmp 9008d9a1 CSL_CPTS_getEventInfo 9008db21 ClockP_usleep 9008dc21 CpswAle_getFreeEntry 9008dd21 EnetMem_allocDmaDesc 9008dea1 EnetQueue_getQCount 9008dfa1 MMCSD_close 9008e021 UdmaUtils_makeTrpd 9008e0a1 flasher_img 9008e121 tcp_tcp_get_tcp_addrinfo 9008e1a1 tcpecho_raw_init 9008e221 CSL_CPSW_getAleOUIAddrEntry 9008e291 CSL_intaggrClrIntr 9008e301 ClockP_construct 9008e3e1 Cpsw_internalIoctl_handler_ENET_IOCTL_REGISTER_RX_DEFAULT_FLOW 9008e531 EnetPhy_getLinkCfg 9008e5a1 FF_GetFreeSize 9008e681 LWIPIF_LWIP_send 9008e761 Sciclient_rmGetResourceRange 9008e7d1 UART_dmaOpen 9008e8b1 Udma_flowDetach 9008e921 Udma_rmFreeMappedRxCh 9008e991 Udma_rmFreeMappedTxCh 9008eae0 atoi 9008ebc1 igmp_start 9008ed11 CSL_CPSW_getCppiP0Control 9008ed81 CSL_CPSW_mapTableWord2MacAddr 9008edf1 CSL_CPSW_setAleIPNxtHdrWhitelist 9008eed1 Cpsw_internalIoctl_handler_ENET_IOCTL_UNREGISTER_RX_DEFAULT_FLOW 9008ef41 DDR_socEnableVttRegulator 9008efb1 LPDDR4_EnablePIInitiator 9008f251 inet_chksum_pseudo 9008f411 tcp_rexmit_rto_commit 9008f4f1 CpswAle_setVlanMcastPortMask 9008f5d1 FF_MMCSDCreateAndFormatPartition 9008f641 FF_ReadParts 9008f6ac HOSTunlink 9008f721 IpcNotify_registerClient 9008f791 LWIPIF_LWIP_setNotifyCallbacks 9008f801 OSPI_dmaOpen 9008f871 UdmaChPrms_init 9008f8dc __aeabi_assert 9008f9bc finddevice 9008fb11 Enet_getHandleInfo 9008fb81 FF_ReleaseBuffer 9008fbf1 Flash_quirkSpansionUNHYSADisable 9008fc61 LED_tpic2810Open 9008fcd1 LPDDR4_WriteCtlConfig 9008fd41 LPDDR4_WritePhyConfig 9008fdb1 LPDDR4_WritePhyIndepConfig 9008fe91 pbufQ_deQ 9008ffe1 sys_timeout 90090051 CSL_MDIO_phyGetRegReadVal 900900c1 EnetAppUtils_print 90090131 EnetSoc_getEFusedMacAddrs 900901a1 FF_ReleaseFATBuffers 90090281 LWIPIF_LWIP_periodic_polling 90090671 Udma_ringPrimeReadLcdma 900906e1 dhcp_fine_tmr 90090748 strstr 900907b1 tcp_next_iss 90090ac1 Cpsw_enableEst 90090b31 EEPROM_open 90090c81 LED_open 90090eb1 memp_malloc_pool 90090f21 pbuf_ref 90090f91 CSL_CPSW_getAleStatusNumPolicers 90091001 CpswHostPort_close 900910e1 EnetAppSoc_getMacAddrList 900911c1 Enet_getHandle 900912a1 IPC_s32NotifySend 900913f1 Sciclient_procBootGetProcessorState 900914d1 Udma_eventDisable 90091541 Udma_eventEnable 900915b1 Udma_rmFreeEvent 90091621 Udma_rmFreeIrIntr 90091691 Udma_rmFreeVintr 900917e1 tcp_err 90091851 tcp_recv 900918c1 tcp_sent 90091931 CSL_CPSW_getPortStats 90091a11 CpswMacPort_disablePort 90091b61 EnetPhy_initCfg 90091c41 Flash_open 90091cb1 LWIPIF_LWIP_init 90091d21 UdmaEventPrms_init 90091d91 Udma_rmFreeBlkCopyCh 90091e01 Udma_rmFreeBlkCopyHcCh 90091e71 Udma_rmFreeBlkCopyUhcCh 90091ee1 Udma_rmFreeRxCh 90091f51 Udma_rmFreeRxHcCh 90091fc1 Udma_rmFreeRxUhcCh 90092031 Udma_rmFreeTxCh 900920a1 Udma_rmFreeTxHcCh 90092111 Udma_rmFreeTxUhcCh 90092181 dcs_inbyte 900921f1 igmp_tmr 90092261 memp_init_pool 90092331 Bootloader_xmodemReceive 90092391 CSL_CPSW_setAlePolicerTestControlReg 90092451 FF_IOMAN_InitBufferDescriptors 900924b0 HOSTclose 90092511 I2CBufferStatus 90092631 Udma_phyToVirtFxn 90092691 Udma_virtToPhyFxn 900926f1 dhcp_supplied_address 90092751 httpd_init 90092811 ssi_ip_to_str 90092871 str_to_ip 900928d1 tcp_rexmit_rto 90092931 udp_recv 90092991 CSL_CPSW_getAleEthertypeEntry 90092a51 EnetUtils_printf 90092ab1 FF_getMinorBlockEntry 90092b71 Sciclient_pmSetModuleRst 90092bd1 SemaphoreP_post 90092db1 raw_netif_ip_addr_changed 90092e71 udp_netif_ip_addr_changed 90092f31 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_REMOVE_ADDR 90093051 EnetUdma_dmaDescDeque 900930b1 FF_DeleteIOManager 90093111 FF_GetCRC16 90093171 LPDDR4_CheckPhyIndepInterrupt 90093231 Module_clockSetFrequency 900933b1 ip_reass_tmr 90093411 mcp23008_getgpio 90093471 tcp_setprio 900934d1 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_SET_POLICER 90093651 EnetSoc_getIntrNum 900936b1 FF_getMinorBlockNumber 90093831 TERMCOM_vHelp 90093891 TERMCOM_vVersion 90093a11 memp_init 90093a71 print_spin 90093ad1 Bootloader_xmodemTransmit 90093b31 CSL_CPSW_getALEEntryType 90093c51 CpswMacPort_isRouteIdFree 90093fb1 LED_tpic2810SetMask 900940d1 Sciclient_rmIrqSetRaw 90094191 Sciclient_rmRingCfg 900941f1 Sciclient_rmUdmapFlowCfg 90094251 Sciclient_rmUdmapFlowSizeThreshCfg 900942b1 Sciclient_rmUdmapRxChCfg 90094311 Sciclient_rmUdmapTxChCfg 90094371 UdmaUtils_getTrSizeEncoded 900943c8 __TI_cleanup 90094420 __TI_readmsg 90094478 __TI_writemsg 900944c4 C$$IO$$ 90094531 ip4_output_if 90094591 ip4_output_if_src 90094648 sprintf 900946a1 tcp_free 900947c1 CSL_CPSW_getAlePolicerControlReg 90094881 CSL_intaggrGetCfg 900948e1 CpswAle_delAllEntries 900949a1 I2C_getHandle 90094a01 Sciclient_rmIrqReleaseRaw 90094a61 Sciclient_rmPsilPair 90094ac1 Sciclient_rmPsilUnpair 90094b21 Udma_eventGetGlobalHandle 90094c41 CpswAle_close 90094d01 CpswHostPort_ioctl_handler_ENET_HOSTPORT_IOCTL_SET_INGRESS_DSCP_PRI_MAP 90094f41 FF_tolower 90094fa1 LwipifEnetApp_getNetifFromId 90095061 OSPI_setNumAddrBytes 90095121 UART_readInterruptDma 90095181 UART_writeInterruptDma 900951e1 UdmaRingPrms_init 90095294 exit 900952f1 ff_fopen 90095351 netif_get_by_index 900953b1 ssi_mac_to_str 90095411 Board_ledClose 900956b1 Enet_deinit 90095711 I2COwnAddressSet 90095771 LPDDR4_AckPhyIndepInterrupt 90095831 OSPI_dmaCopy 90095891 SOC_controlModuleLockMMR 900958f1 SemaphoreP_construct 900959b1 Udma_ringPrimeLcdma 90095a11 altcp_write 90095a71 crc16_ccitt 90095b31 mem_calloc 90095bf1 Board_eepromClose 90095c41 Board_flashClose 90095c91 CSL_MDIO_getVersionInfo 90095ce1 CpswHostPort_initCfg 90095d81 Drivers_i2cClose 90095dd1 Drivers_mmcsdClose 90095e21 Drivers_ospiClose 90095e71 Drivers_uartClose 90095ec1 FF_FS_Get 90095f11 FF_GetFileSize 90096001 Udma_rmGetSharedResPrms 90096051 dns_setserver 900960a0 strncpy 900960f0 __TI_auto_init_nobinit_nopinit 90096141 CSL_CPSW_writeEstFetchCmd 90096321 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_SET_DEFAULT_THREADCFG 90096371 CpswCpts_ioctl_handler_CPSW_CPTS_IOCTL_HANDLE_INTR 90096411 EnetUtils_vprintf 90096501 MMCSD_getHandle 900965a1 Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_IS_LINKED 900965f1 OSPI_setDeviceSize 90096641 UART_getHandle 90096691 UdmaUtils_makeTrpdTr15 900966e1 lwiperf_start_tcp_server 90096871 EnetApp_isPortLinked 900968c1 I2C_resetCtrl 90096961 Module_clockEnable 900969b1 OSPI_getHandle 90096b41 Udma_eventGetId 90096b8c rand 90096bd8 strncmp 90096c31 tcp_timer_needed 90096c81 CSL_CPSW_getAleUnkownVlanReg 90096cd1 CSL_pktdmaGetRxRT 90096d21 CSL_pktdmaGetTxRT 90096d71 Lwip2Enet_getInterfaceObj 90096dc1 MMCSD_parseSCRSd 90096e11 Sciclient_getDevId 90096f01 cm_crc 90096ff1 pbuf_free_ooseq 900970e1 CSL_CPSW_extractVid 90097131 CSL_CPSW_getAleIPv6HighEntryOffset 90097221 EEPROM_read 90097271 EEPROM_write 90097361 EnetRm_validateCoreKey 90097401 Flash_read 90097451 Flash_write 900974a1 LPDDR4_Init 90097631 OSPI_setRdDataCaptureDelay 90097681 PP_Exec 900976d1 altcp_bind 90097721 altcp_poll 90097771 altcp_tcp_new_ip_type 900977b8 memccpy 90097851 pbuf_try_get_at 900978e8 unlink 90097931 CSL_bcdmaTeardownRxChan 90097981 CSL_bcdmaTeardownTxChan 90097a21 EnetMem_freeDmaDesc 90097a71 EnetSoc_getClkFreq 90097ac1 GenericPhy_printRegs 90097ca1 OSPI_dmaClose 90097d91 pbuf_put_at 90097de1 CSL_CPSW_getAleStatusRamDepth 90097e31 CSL_bcdmaGetChanPeerReg 90097e81 CpswStats_ioctl_handler_CPSW_STATS_IOCTL_SYNC 90097f21 Dpl_init 90097f71 EnetAppSoc_releaseMacAddrList 90097fc1 EnetAppUtils_assertLocal 90098011 EnetPhy_isLinked 90098921 Enet_ioctl_register_CPSW_ALE_IOCTL_ADD_MCAST 90098971 Enet_ioctl_register_CPSW_ALE_IOCTL_ADD_UCAST 900989c1 Enet_ioctl_register_CPSW_ALE_IOCTL_REMOVE_ADDR 90098a11 Enet_ioctl_register_CPSW_ALE_IOCTL_SET_PORT_STATE 90098a61 Enet_ioctl_register_ENET_HOSTPORT_IOCTL_DISABLE 90098ab1 Enet_ioctl_register_ENET_HOSTPORT_IOCTL_ENABLE 90098b01 Enet_ioctl_register_ENET_HOSTPORT_IOCTL_SET_INGRESS_DSCP_PRI_MAP 90098b51 Enet_ioctl_register_ENET_HOSTPORT_IS_CSUM_OFFLOAD_ENABLED 90098ba1 Enet_ioctl_register_ENET_IOCTL_REGISTER_DSTMAC_RX_FLOW 90098bf1 Enet_ioctl_register_ENET_IOCTL_REGISTER_RX_DEFAULT_FLOW 90098c41 Enet_ioctl_register_ENET_IOCTL_UNREGISTER_DSTMAC_RX_FLOW 90098c91 Enet_ioctl_register_ENET_IOCTL_UNREGISTER_RX_DEFAULT_FLOW 90098ce1 Enet_ioctl_register_ENET_MACPORT_IOCTL_SET_INGRESS_DSCP_PRI_MAP 90098d31 Enet_ioctl_register_ENET_MDIO_IOCTL_IS_ALIVE 90098d81 Enet_ioctl_register_ENET_PER_IOCTL_ATTACH_CORE 90098dd1 Enet_ioctl_register_ENET_PER_IOCTL_CLOSE_PORT_LINK 90098e21 Enet_ioctl_register_ENET_PER_IOCTL_DETACH_CORE 90098e71 Enet_ioctl_register_ENET_PER_IOCTL_IS_PORT_LINK_UP 90098ec1 Enet_ioctl_register_ENET_PER_IOCTL_OPEN_PORT_LINK 90098f11 Enet_ioctl_register_ENET_RM_IOCTL_ALLOC_MAC_ADDR 90098f61 Enet_ioctl_register_ENET_RM_IOCTL_ALLOC_RX_FLOW 90098fb1 Enet_ioctl_register_ENET_RM_IOCTL_ALLOC_TX_CH_PEERID 90099001 Enet_ioctl_register_ENET_RM_IOCTL_FREE_MAC_ADDR 90099051 Enet_ioctl_register_ENET_RM_IOCTL_FREE_RX_FLOW 900990a1 Enet_ioctl_register_ENET_RM_IOCTL_FREE_TX_CH_PEERID 900990f1 FF_GetCRC32 90099141 IpcNotify_unregisterClient 90099191 OSPI_enableDacMode 900991e1 PromWriteFunc 90099231 SOC_generateSwWarmResetMcuDomain 90099281 Udma_lcdmaRingaccMemOps 900992d1 _DebugP_logZone 90099411 pec_dequeue 900994b1 CSL_CPTS_getESTFnLength 90099551 ClockP_start 90099641 FF_CreateClusterChain 90099691 FF_getMajorBlockNumber 90099911 PP_Register 90099a01 UdmaUtils_getRingMemSize 90099a51 altcp_listen_with_backlog_and_err 90099aa1 autoip_stop 90099af1 dcs_outbyte 90099b41 fctprintf 90099b91 CSL_CPSW_getAleTableEntry 90099bd1 CSL_CPSW_getEthertypeMax 90099c11 CSL_CPTS_getGENFnLength 90099c51 CSL_lcdma_ringaccIsTeardownComplete 90099cd1 CpswMacPort_clearRouteId 90099d11 EnetAppUtils_printMacAddr 90099d51 FF_Cluster2LBA 90099d91 I2C_hwiFxn 90099e11 Lwip2Enet_assertPriv 90099e51 Mdio_ioctl_handler_ENET_MDIO_IOCTL_C22_READ 90099e91 Mdio_ioctl_handler_ENET_MDIO_IOCTL_C22_WRITE 90099ed1 Mdio_ioctl_handler_ENET_MDIO_IOCTL_C45_READ 90099f11 Mdio_ioctl_handler_ENET_MDIO_IOCTL_C45_WRITE 90099f51 Mdio_ioctl_handler_ENET_MDIO_IOCTL_IS_ALIVE 90099f91 Mdio_ioctl_handler_ENET_MDIO_IOCTL_IS_LINKED 9009a011 PP_Read_FWPage 9009a051 PromReadFunc 9009a191 Spinlock_lock 9009a211 UART_u16ReadCharNonBlocking 9009a251 Udma_ringGetForwardRingOccLcdma 9009a291 Udma_ringGetReverseRingOccLcdma 9009a2d1 ff_fread 9009a311 ff_fwrite 9009a391 ip_chksum_pseudo_partial 9009a3d0 memcmp 9009a411 pec_enqueue 9009a451 CSL_CPSW_getIpv4IgnBitsMax 9009a491 CSL_CPSW_getIpv6IgnBitsMax 9009a4d1 CSL_CPTS_setTSAddVal 9009a511 CSL_emifDisableECC 9009a551 CSL_emifEnableECC 9009a5d1 CpswStats_rejoin 9009a711 EnetMem_freeRingMem 9009a791 EnetPhy_readExtReg 9009a7d1 EnetSoc_getTxChPeerId 9009a811 FF_FindEndOfChain 9009a851 Flash_eraseBlk 9009a891 LWIPIF_LWIP_start 9009a911 OSPI_setCmdDummyCycles 9009a951 OSPI_setReadDummyCycles 9009aad1 mcp23008_setdir 9009ab11 mcp23008_setgpio 9009ab51 sys_timeouts_init 9009ab91 CSL_CPSW_setPort0VlanReg 9009abd1 CSL_bcdmaSetChanPeerReg 9009ac51 CSL_pktdmaSetRxRT 9009ac91 CSL_pktdmaSetTxRT 9009ad11 CpswMacPort_close 9009ad91 EEPROM_AT24C_close 9009ae51 EnetUdma_getMappedRxChStartIdx 9009ae91 OSPI_enableDdrRdCmds 9009afd1 altcp_close 9009b011 altcp_mss 9009b051 altcp_output 9009b091 altcp_sndbuf 9009b0d1 altcp_sndqueuelen 9009b151 ff_filelength 9009b191 igmp_lookfor_group 9009b1d1 printf_ 9009b211 CSL_CPSW_setAleCtrl2IPPktFilterConfig 9009b251 CSL_CPSW_setAleCtrl2MalformedFrameConfig 9009b351 Flash_getAttrs 9009b391 GenericPhy_isResetComplete 9009b3d1 IpcNotify_Params_init 9009b451 LWIPIF_LWIP_rxPktHandler 9009b491 LWIPIF_LWIP_txPktHandler 9009b4d1 Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_IS_ALIVE 9009b511 OSPI_disablePhyPipeline 9009b551 OSPI_enableDDR 9009b591 Udma_ringDequeueRawLcdma 9009b5d1 Udma_ringGetNum 9009b651 igmp_report_groups 9009b691 snprintf_ 9009b6d1 Board_driversOpen 9009b711 CSL_CPSW_getAleVersionInfo 9009b751 CSL_CPSW_getCpswVersionInfo 9009b7d1 CSL_CPTS_getCptsVersionInfo 9009b991 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_GET_POLICER 9009b9d1 CpswHostPort_ioctl_handler_ENET_HOSTPORT_IS_CSUM_OFFLOAD_ENABLED 9009ba51 EnetOsal_cacheInv 9009ba91 EnetOsal_cacheWb 9009bad1 EnetOsal_cacheWbInv 9009bb51 EnetRm_ioctl_handler_ENET_RM_IOCTL_ALLOC_RX_FLOW 9009bb91 EnetTrace_trace 9009bbd1 EnetUdma_freeRing 9009bc11 EventP_construct 9009bc51 FF_putLong 9009bc91 I2C_checkTimeout 9009bd11 Spinlock_unlock 9009bd51 UARTWRAP_u16ReadCharNonBlocking 9009bd91 UARTWRAP_u16WriteCharNonBlocking 9009be11 lwip_init 9009be88 srand 9009bec1 CpswAle_clearTableEntry 9009bf41 EnetHostPortDma_openRsvdFlow 9009bfc1 EnetSoc_getRxChPeerId 9009c001 EnetUdma_deInitRxFreeDescQ 9009c041 EnetUdma_deInitTxFreeDescQ 9009c081 EnetUdma_getTxChUdmaInfo 9009c0c1 FF_MMCSDDiskDelete 9009c101 I2CFIFOClear 9009c141 Mdio_initCfg 9009c1c1 Udma_ringQueueRawLcdma 9009c201 altcp_free 9009c281 enet_loop 9009c2c1 ff_fclose 9009c301 pbuf_get_at 9009c381 CSL_CPGMAC_SL_setRxMaxLen 9009c3c1 CSL_pktdmaTeardownRxChan 9009c401 CSL_pktdmaTeardownTxChan 9009c541 Drivers_ffClose 9009c581 EnetDma_disableRxEvent 9009c5c1 EnetDma_disableTxEvent 9009c601 EnetDma_enableRxEvent 9009c641 EnetDma_enableTxEvent 9009c681 EnetOsal_registerIntr 9009c701 EnetSoc_getDmaHandle 9009c741 EnetSoc_getMacPortCaps 9009c781 EnetSoc_getRxFlowCount 9009c7c1 EnetSoc_getTxChCount 9009c801 FF_getLong 9009c881 Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_IS_ALIVE 9009c8c1 Mdio_normal_ioctl_handler_ENET_MDIO_IOCTL_IS_LINKED 9009c901 SOC_generateSwPORResetMainDomain 9009c941 SOC_generateSwWarmResetMainDomain 9009c981 TimerP_Params_init 9009ca01 altcp_recved 9009ca41 altcp_setprio 9009ca81 autoip_accept_packet 9009cb28 lseek 9009cb94 write 9009cc11 CSL_CPSW_setAlePolicerGlobConfig 9009cc51 ClockP_sleep 9009ccd1 CpswMacPort_initCfg 9009cd11 CpswMacPort_ioctl_handler_CPSW_MACPORT_IOCTL_DISABLE 9009cdd1 EnetSoc_getEnetHandle 9009ce11 FF_getClusterPosition 9009ce51 Flash_getHandle 9009cf11 IpcNotify_syncCallback 9009cf51 MMCSD_getBlockCount 9009cf91 MMCSD_getBlockSize 9009d051 ip_chksum_pseudo 9009d091 CSL_CPGMAC_SL_disableCastagnoliCRC 9009d0c1 CSL_CPGMAC_SL_disableLoopback 9009d0f1 CSL_CPGMAC_SL_enableCastagnoliCRC 9009d181 CSL_emifConfig 9009d1b1 CSL_lcdma_ringaccGetReverseRingOcc 9009d1e1 CSL_lcdma_ringaccPush64 9009d211 CSL_pktdmaGetChanPeerReg 9009d241 CSL_pktdmaSetChanPeerReg 9009d271 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_REMOVE_LEARNED_ENTRIES 9009d2d1 Cpsw_poll 9009d331 EEPROM_close 9009d361 EnetApp_updateCpswInitCfg 9009d391 EnetMod_ioctlFromIsr 9009d3c1 Flash_close 9009d3f1 LED_close 9009d421 LPDDR4_Start 9009d451 OSPI_setModeBits 9009d4b1 UART_vInit 9009d4e1 Udma_chGetCqRingNum 9009d570 CycleCounterP_getCount32 9009d578 PmuP_setup 9009d580 PmuP_enableCounters 9009d588 PmuP_disableCounters 9009d590 PmuP_getOverflowStatus 9009d598 PmuP_clearOverflowStatus 9009d5a1 CSL_CPSW_setVlanLTypeReg 9009d661 EnetApp_acquireHandleInfo 9009d721 FF_CleanupEntryFetch 9009d7b1 LED_tpic2810Close 9009d841 OSPI_enableModeBitsCmd 9009d871 OSPI_enableModeBitsRead 9009d8a1 OSPI_setDualOpCodeMode 9009d961 Udma_ringGetElementCntLcdma 9009d991 Udma_ringGetMemPtrLcdma 9009d9c1 Udma_ringGetModeLcdma 9009d9f1 Udma_ringGetRdIdxLcdma 9009da21 Udma_ringGetWrIdxLcdma 9009db71 CSL_CPGMAC_SL_isMACResetDone 9009dba1 CSL_CPSW_clearAleEntry 9009dbd1 CSL_bcdmaGetRxRT 9009dc01 CSL_bcdmaGetTxRT 9009dc31 CSL_bcdmaSetRxRT 9009dc61 CSL_bcdmaSetTxRT 9009dc91 CSL_emifClearECCInterruptStatus 9009dcc1 CSL_emifEnableECCInterrupts 9009dd21 CSL_lcdma_ringaccGetForwardRingOcc 9009de41 DebugP_logZoneEnable 9009de71 EnetAppRm_getIoctlPermissionInfo 9009dea1 EnetAppRm_getResPartInfo 9009ded1 EnetDma_registerRxEventCb 9009df01 EnetDma_registerTxEventCb 9009df91 EnetRm_ioctl_handler_ENET_RM_IOCTL_ALLOC_MAC_ADDR 9009dfc1 EnetRm_ioctl_handler_ENET_RM_IOCTL_ALLOC_TX_CH_PEERID 9009dff1 EnetRm_ioctl_handler_ENET_RM_IOCTL_ATTACH 9009e021 EnetUdma_getRxFlowUdmaInfo 9009e051 EnetUtilsDflt_initCfg 9009e081 I2CControllerBusBusy 9009e0b1 Lwip2Enet_findMacPortFromEnet 9009e171 SemaphoreP_constructBinary 9009e1a1 TimerP_clearOverflowInt 9009e231 altcp_abort 9009e261 httpd_cgi_handler 9009e291 icmp_dest_unreach 9009e2c1 icmp_time_exceeded 9009e2f1 pbuf_clen 9009e381 tcp_seg_free 9009e3b1 udp_new 9009e411 CSL_CPSW_setAlePortState 9009e441 CSL_MDIO_isPhyRegAccessComplete 9009e4a1 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_DEL_POLICER 9009e4d1 CpswAle_mapBw2IdlIncVal 9009e5f1 DDR_enableInlineECC 9009e7d1 EnetPhy_close 9009e831 EnetSoc_getEnetHandleByIdx 9009e861 EnetSoc_getMacPortMax 9009e8c1 FF_Format 9009e8f1 FF_getClusterChainNumber 9009e921 FF_putShort 9009e951 OSPI_ReadCmdParams_init 9009eb01 Udma_rmGetDefBoardCfgPrms 9009eb31 mempQ_free 9009eb91 vsnprintf_ 9009ebf1 CSL_CPSW_getAleStatusNumAleEntries 9009ec21 CSL_armR5GetCpuID 9009ec51 CSL_lcdma_ringaccPop64 9009ecb1 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_SET_PORT_STATE 9009ece1 CpswMacPort_openInterVlan 9009ed11 Cpsw_internalIoctl_handler_ENET_PER_IOCTL_CLOSE_PORT_LINK 9009ed41 EnetBoard_getPhyCfg 9009eda1 EnetRm_ioctl_handler_ENET_RM_IOCTL_FREE_RX_FLOW 9009edd1 EnetRm_ioctl_handler_ENET_RM_IOCTL_VALIDATE_RX_FLOW 9009ee01 EnetUdma_dmaDescInit 9009ee31 EnetUdma_memMgrDeInit 9009ee61 EventP_setBits 9009ee91 FF_GetUtf16SequenceLen 9009eef1 I2CControllerIntEnableEx 9009ef21 I2CTargetIntEnableEx 9009efb1 Mdio_manual_ioctl_handler_ENET_MDIO_IOCTL_C22_WRITE 9009efe1 Sciclient_rmIrqTranslateIaOutput 9009f068 strchr 9009f091 vprintf_ 9009f0f1 CSL_CPGMAC_SL_enableIdleMode 9009f121 CSL_CPGMAC_SL_enableLoopback 9009f151 CSL_CPGMAC_SL_resetMac 9009f181 CSL_CPSW_disableAlePolicerThread 9009f1b1 CSL_CPSW_getAlePolicerGlobConfig 9009f1e1 CpswAle_ioctl_handler_CPSW_ALE_IOCTL_GET_DEFAULT_THREADCFG 9009f211 Cpsw_disableEst 9009f2a1 EnetHostPortDma_getDmaResInfo 9009f301 EnetRm_ioctl_handler_ENET_RM_IOCTL_FREE_MAC_ADDR 9009f331 EnetRm_ioctl_handler_ENET_RM_IOCTL_FREE_TX_CH_PEERID 9009f391 EnetUdma_getRxChFlowStartIdx 9009f3c1 FF_getShort 9009f3f1 Flash_getPhyTuningOffset 9009f421 LPDDR4_Probe 9009f451 OSPI_WriteCmdParams_init 9009f481 Spinlock_getNumLocks 9009f4b1 TERMINAL_vResetCommandConsole 9009f4e1 Udma_ringGetElementCnt 9009f511 Udma_ringGetForwardRingOcc 9009f541 Udma_ringGetMemPtr 9009f571 Udma_ringGetRdIdx 9009f5a1 Udma_ringGetReverseRingOcc 9009f5d1 Udma_ringGetWrIdx 9009f601 Udma_ringPrime 9009f691 autoip_network_changed 9009f6f1 igmp_init 9009f721 mcp23008_init 9009f751 tcp_accept 9009fa21 CpswAle_clearSelectedPolicerStats 9009fa51 CpswHostPort_ioctl_handler_CPSW_HOSTPORT_GET_FLOW_ID_OFFSET 9009fa81 CpswHostPort_ioctl_handler_CPSW_HOSTPORT_SET_FLOW_ID_OFFSET 9009fab1 CpswHostPort_rejoin 9009fae1 CpswMacPort_rejoin 9009fb71 EnetRm_ioctl_handler_ENET_RM_IOCTL_DETACH 9009fba1 FF_FS_Init 9009fbd1 I2C_Transaction_init 9009fc01 I2C_transferCallback 9009fc31 IpcNotify_getConfig 9009fc61 LWIPIF_LWIP_getIpPktStart 9009fc91 Lwip2Enet_decrementRxRefCount 9009fcc1 Lwip2Enet_decrementTxRefCount 9009fdb1 OSPI_Transaction_init 9009fde1 SOC_getSelfCpuClk 9009fe11 SemaphoreP_constructMutex 9009fe71 _system_pre_init 9009ff01 pbufQ_init 9009ff84 strcmp 9009ffb1 tcp_segs_free 9009ffd4 __aeabi_uldivmod 900a0001 CSL_CPSW_getAleStatusVlanMask 900a0031 CSL_lcdma_ringaccInitRingObj 900a0061 CpswCpts_initCfg 900a0091 CpswHostPort_ioctl_handler_ENET_HOSTPORT_IOCTL_GET_MAXLEN 900a00c1 EnetApp_getEnetInstMacInfo 900a0121 EnetHostPortDma_closeRsvdFlow 900a0151 EnetQueue_initQ 900a0181 EnetUtils_min 900a02a1 Mdio_ioctl_handler_MDIO_IOCTL_HANDLE_INTR 900a0301 OSPI_getFlashDataBaseAddr 900a0361 Udma_ringGetMode 900a0391 Udma_ringPrimeRead 900a03c1 Udma_ringSetDoorBell 900a03f1 Udma_rmTranslateCoreIntrInput 900a0421 Udma_rmTranslateIrOutput 900a0451 altcp_alloc 900a0481 netif_set_default 900a04b1 ssi_u16_to_str 900a04e1 ssi_u32_to_str 900a0511 tcp_free_ooseq 900a0541 tcp_tmr 900a05c1 CSL_CPSW_disableCutThru 900a05e1 CSL_CPSW_enableCutThru 900a0601 CSL_MDIO_enableLinkStatusChangeInterrupt 900a0621 CSL_MDIO_enableManualMode 900a0641 CSL_MDIO_setClkDivVal 900a0661 ClockP_isActive 900a0681 ClockP_usecToTicks 900a06a1 EnetApp_driverInit 900a06c1 EnetUtils_deinit 900a06e1 EnetUtils_physToVirt 900a0741 LwipifEnetAppCb_getRxMode 900a0761 OSPI_setCmdExtType 900a0781 OSPI_setPhyEnableSuccess 900a07a1 Pinmux_init 900a07c0 _abort_msg 900a07e1 etharp_request 900a0821 lwip_htonl 900a0841 lwiperf_start_tcp_server_default 900a0861 mempQ_malloc 900a0881 pbuf_skip 900a08c0 wcslen 900a08e1 CSL_MDIO_disableLinkStatusChangeInterrupt 900a0901 CSL_MDIO_setPollIPG 900a0941 ClockP_Params_init 900a0961 CpswAle_getVlanMcastPortMask 900a0981 CpswAle_setAlePortState 900a09a1 EnetOsal_timerGetDiff 900a0b01 inet_chksum 900a0b21 pbuf_chain 900a0b41 CSL_CPGMAC_SL_isGMIIEnabled 900a0b61 CSL_CPGMAC_SL_setMacControlReg 900a0b81 CSL_CPSW_getAleIPv6HighEntryIndex 900a0ba1 CSL_CPSW_setAleUnknwnVlanMemberReg 900a0bc1 CSL_CPSW_setAleUnknwnVlanRegMcastReg 900a0be1 CSL_CPSW_setAleUnknwnVlanUnregMcastReg 900a0c01 CSL_CPSW_setAleUnknwnVlanUntagReg 900a0c21 CSL_CPSW_setPort0FlowIdOffset 900a0c41 CSL_CPSW_setPort0RxMaxLen 900a0c81 CSL_secProxyGetDataAddr 900a0ce1 Drivers_open 900a0d41 EnetUtils_virtToPhys 900a0d61 I2C_udelay 900a0d81 OSPI_phyGetTuningData 900a0da1 TERMINAL_vPrintCommandPrompt 900a0dc1 pec_get_queue_len 900a0dfc strcpy 900a0e50 strlen 900a0e88 TI_memcpy_small 900a0ea4 __aeabi_memset 900a0ea4 __aeabi_memset4 900a0ea4 __aeabi_memset8 900a0eb4 __aeabi_memclr 900a0eb4 __aeabi_memclr4 900a0eb4 __aeabi_memclr8 900a0ee1 CSL_CPTS_setRFTCLKSelectReg 900a0f01 CSL_MDIO_clearUnmaskedLinkStatusChangeInt 900a0f21 CSL_MDIO_getLinkStatusChangePhyAddr 900a0fe1 CpswCpts_ioctl_handler_CPSW_CPTS_IOCTL_DISABLE_INTR 900a1001 CpswCpts_ioctl_handler_CPSW_CPTS_IOCTL_ENABLE_INTR 900a1021 CpswHostPort_ioctl_handler_ENET_HOSTPORT_IOCTL_DISABLE 900a1041 CpswHostPort_ioctl_handler_ENET_HOSTPORT_IOCTL_ENABLE 900a1081 Cpsw_isPortLinkUp 900a1121 I2CControllerControl 900a1141 I2CControllerDataGet 900a1161 I2CControllerDataPut 900a1181 I2CControllerDisable 900a11a1 I2CControllerEnable 900a11c1 I2CControllerEnableFreeRun 900a11e1 I2CTargetDataGet 900a1201 I2C_Params_init 900a1241 LPDDR4_AddOffset 900a12a1 Lwip2Enet_setRxNotifyCallback 900a12c1 Lwip2Enet_setTxNotifyCallback 900a12e1 OSPI_isPhyEnable 900a1301 TERMCOM_vInit 900a1321 TERMINAL_vPrintInvalidCommand 900a1341 TERMINAL_vPrintInvalidCommandOption 900a13a1 ip4addr_ntoa 900a1401 pbuf_header_force 900a1421 tcp_listen_with_backlog 900a1441 CSL_CPGMAC_SL_getMacControlReg 900a1461 CSL_CPSW_setAlePrescaleReg 900a1481 CSL_CPSW_setCpswFrequency 900a14a1 CSL_CPSW_setVlanType 900a14c1 CSL_CPTS_disableCpts 900a14e1 CSL_CPTS_disableInterrupt 900a1501 CSL_CPTS_enableCpts 900a1521 CSL_CPTS_enableInterrupt 900a1541 CSL_CPTS_popEvent 900a1561 ClockP_ticksToUsec 900a15c1 EnetApp_releaseHandleInfo 900a15e1 EnetBoard_getMiiConfig 900a1601 EnetOsal_deleteMutex 900a1621 EnetOsal_lockMutex 900a1641 EnetOsal_restoreAllIntr 900a1661 EnetOsal_unlockMutex 900a1681 EnetOsal_unregisterIntr 900a16a1 EnetUdma_unregisterEvent 900a16c1 GenericPhy_reset 900a16e1 I2CAutoIdleDisable 900a1701 I2CControllerIntRawStatusEx 900a1721 I2CControllerStart 900a1741 I2CControllerStop 900a1761 I2CSoftReset 900a17a1 Sciclient_rmIrqSet 900a17e1 SemaphoreP_Params_init 900a1801 TimerP_start 900a1821 TimerP_stop 900a18c1 altcp_accept 900a18e1 altcp_arg 900a1901 altcp_err 900a1921 altcp_recv 900a1941 altcp_sent 900a19a1 netif_set_link_callback 900a19c1 netif_set_status_callback 900a19e1 saf_fwpage_save 900a1a01 tcp_arg 900a1a58 TI_memset_small 900a1a91 CSL_CPTS_isRawInterruptStatusBitSet 900a1ab1 CSL_MDIO_isPhyAlive 900a1ad1 CSL_MDIO_isPhyLinked 900a1af1 CSL_MDIO_isUnmaskedLinkStatusChangeIntSet 900a1c51 CpswCpts_close 900a1c71 EnetApp_getUdmaInstanceHandle 900a1d71 EnetUdma_dmaDescQInit 900a1e71 I2CConfig 900a1e91 I2CControllerGetSysTest 900a1eb1 I2CControllerIntClearEx 900a1ed1 I2CControllerIntDisableEx 900a1ef1 I2CControllerSetSysTest 900a1f11 I2CControllerTargetAddrSet 900a1f31 I2CSetDataCount 900a1f51 I2CSyscInit 900a1f71 I2CSystemStatusGet 900a1f91 I2CTargetIntClearEx 900a1fb1 I2CTargetIntDisableEx 900a1fd1 IpcNotify_sendSync 900a2051 Sciclient_rmIrqRelease 900a2091 UARTWRAP_u16Init 900a2131 pbuf_add_header 900a2151 stats_init 900a2171 tcp_init 900a2191 tcp_new_ip_type 900a21b1 udp_init 900a2211 CSL_CPSW_clearAleTable 900a2231 CSL_CPSW_disableAleVlanAware 900a2251 CSL_CPSW_disableP0TxCastagnoliCRC 900a2271 CSL_CPSW_disablePort0 900a2291 CSL_CPSW_disableVlanAware 900a22b1 CSL_CPSW_enableAleVlanAware 900a22d1 CSL_CPSW_enableP0TxCastagnoliCRC 900a22f1 CSL_CPSW_enablePort0 900a2311 CSL_CPSW_enableVlanAware 900a2331 CSL_CPSW_getPort0FlowIdOffset 900a2351 CSL_CPSW_getPort0RxMaxLen 900a2371 CSL_MDIO_disableStateChangeMode 900a2391 CSL_MDIO_disableStateMachine 900a23b1 CSL_MDIO_disableStatusChangeModeInterrupt 900a23d1 CSL_MDIO_enableStateChangeMode 900a23f1 CSL_MDIO_enableStateMachine 900a2411 CSL_MDIO_enableStatusChangeModeInterrupt 900a2431 CSL_MDIO_setMdclkHigh 900a2451 CSL_MDIO_setMdclkLow 900a2471 CSL_MDIO_setMdoHigh 900a2491 CSL_MDIO_setMdoInputEnable 900a24b1 CSL_MDIO_setMdoLow 900a24d1 CSL_MDIO_setMdoOutputEnable 900a24f1 CSL_MDIO_setPollEnableMask 900a2551 ClockP_setTimeout 900a2571 CpswAle_getMaxAleEntries 900a2591 CpswAle_getMaxPolicers 900a25d1 EnetMem_init 900a2691 FF_putChar 900a2711 Udma_defaultPhyToVirtFxn 900a2731 Udma_rmAllocFreeRing 900a2781 pec_init_queue 900a27a1 putchar_ 900a27d1 udp_new_ip_type 900a2871 EnetApp_phyStateHandler 900a2891 EnetOsal_deinit 900a28d1 EnetRm_rejoin 900a2931 I2CControllerIntRawStatus 900a2951 I2CControllerIntStatus 900a2971 I2CDataCountGet 900a2991 I2CTargetIntRawStatus 900a29b1 TimerP_getCount 900a29d1 TimerP_getReloadCount 900a29f1 Udma_ringHandleClearRegsLcdma 900a2a51 lwiperf_init 900a2ab1 sys_now 900a2ad1 tcp_abort 900a2af1 tcp_trigger_input_pcb_close 900a2b31 CPS_UncachedWrite32 900a2b41 CSL_CPSW_isAleVlanAwareEnabled 900a2b51 CSL_CPSW_setAleControlReg 900a2b61 CSL_MDIO_clearPollEnableMask 900a2b71 CSL_MDIO_isStateChangeModeEnabled 900a2b81 CSL_MDIO_readMdi 900a2b91 CSL_MDIO_setClause45EnableMask 900a2cf1 ClockP_getTimerCount 900a2d01 ClockP_timerClearOverflowInt 900a2d21 CpswAle_rejoin 900a2d41 CpswCpts_rejoin 900a2dd1 EnetOsal_createMutex 900a2de1 EnetOsal_disableAllIntr 900a2df1 EnetOsal_timerRead 900a2e21 EnetSoc_getIntrTriggerType 900a2e31 EnetUdma_checkRxFlowSanity 900a2e41 EnetUdma_checkTxChSanity 900a2e51 EnetUdma_getRxFlowCnt 900a2e81 Enet_initOsalCfg 900a2e91 Enet_initUtilsCfg 900a2ea1 FF_getChar 900a2f61 Lwip2Enet_txPktHandler 900a2f91 Mdio_rejoin 900a2fa1 Udma_defaultVirtToPhyFxn 900a2fc1 fs_bytes_left 900a2fd1 lwip_htons 900a2ff1 tftp_init_server 900a3051 EnetAppUtils_clkRateSet 900a3091 IPC_vNotifyInitQueue 900a30c1 TERMCOM_vBlank 900a30d1 dns_init 900a30e1 mem_trim 900a30f1 vTaskSetThreadLocalStoragePointer 900a3101 CPS_UncachedRead32 900a3111 CSL_CPSW_getAleControlReg 900a3121 CSL_CPSW_getAleIPv6LowEntryIndex 900a3131 CSL_MDIO_getClause45EnableMask 900a3141 CSL_MDIO_getPollEnableMask 900a3281 ClockP_getTicks 900a3291 EnetAppUtils_isPrintSupported 900a32b1 EnetSoc_getCoreId 900a32d1 EnetUdma_dmaDescQCount 900a32f1 FF_BufferWait 900a3301 FF_FS_Count 900a3311 FF_Has_Lock 900a3331 IPC_vSyncAll 900a3341 IpcNotify_getSelfCoreId 900a3351 PowerClock_init 900a3361 Sciclient_getSelfDevIdCore 900a3381 TERMINAL_vInit 900a3391 Udma_isCacheCoherent 900a33a1 Udma_rmFreeFreeRing 900a33b1 dns_tmr 900a33c1 EnetMem_getCfg 900a33d1 EnetPhyMdioDflt_getPhyMdio 900a33e1 EnetUdmaMem_getCfg 900a33f1 FF_Assert_Lock 900a3401 FF_CreateEvents 900a3421 LwipifEnetApp_getHandle 900a3441 get_build_datetime 900a3461 prvABSPath 900a3471 putchar 900a3481 CpswStats_close 900a3491 Drivers_uartInit 900a34d1 FF_BufferProceed 900a34e1 FF_DeleteEvents 900a34f1 FF_LockDirectory 900a3501 FF_LockFAT 900a3571 FF_PendSemaphore 900a3581 FF_ReleaseSemaphore 900a3591 FF_Sleep 900a35a1 FF_UnlockDirectory 900a35b1 FF_UnlockFAT 900a35e1 SemaphoreP_destruct 900a3601 fs_close 900a3611 cm_ini 900a3621 EnetBoard_getId 900a3641 EnetSoc_getEnetNum 900a3651 EnetSoc_init 900a3661 PromCloseFunc 900a3671 PromOpenFunc 900a3690 __aeabi_idiv0 900a36a0 __aeabi_ldiv0 900a36b1 Board_init 900a36d1 Drivers_udmaOpen 900a3701 EnetSoc_deinit 900a3711 TaskP_yield 900a3721 mem_init 900a3731 netif_init 900a3741 vTaskSuspendAll 900a3751 xTaskResumeAll 900a3780 __BSS_START 900af780 eoe_packet_buffer 900bb780 memp_memory_POOL_1792_base 900c37df memp_memory_POOL_4096_base 900c787e memp_memory_POOL_128_base 900cb720 gUdmaDrvObj 900ccaf8 memp_memory_PBUF_base 900cdb17 memp_memory_TCP_SEG_base 900ceb38 gHwiCtrl 900d1820 memp_memory_SYS_MBOX_base 900d2d00 Uart 900d3590 memp_memory_RX_POOL_base 900d4530 eoe_stepin_buffer 900d4b30 TermServ 900d50b4 gEnetSoc_dmaObj 900d6224 memp_memory_ARP_QUEUE_base 900d69c0 memp_memory_TCP_PCB_base 900d7418 memp_memory_SYS_TIMEOUT_base 900d7a80 gFreePbufArr 900d7c80 gMmcsdDataBuf0 900d7e80 memp_memory_FRAG_PBUF_base 900d8080 lwip_stats 900d826c gEepromObject_AT24C 900d8724 memp_memory_ALTCP_PCB_base 900d8883 memp_memory_REASSDATA_base 900d89e4 _CIOBUF_ 900d89e4 __CIOBUF_ 900d8b04 memp_memory_IGMP_GROUP_base 900d8c23 memp_memory_TCP_PCB_LISTEN_base 900d8d42 memp_memory_UDP_PCB_base 900d8e61 memp_memory_PBUF_POOL_base 900d9160 gEnetUtilsObj 900d9238 gIpcNotifyCtrl 900d92e0 __TI_tmpnams 900d9380 ec_netif 900d9508 pollLinkClkObj 900d9680 memp_memory_RAW_PCB_base 900d97a4 NotifyQueueRxBuffer 900d97e4 NotifyQueueTxBuffer 900d9824 gEnetOsalObj 900d9860 hEvent 900d98a0 gClockCtrl 900d993c gLedObject 900d9995 pbuf_free_ooseq_pending 900d99c0 dhcp_rx_options_val 900d99e8 gEmmcData0 900d9a34 gPartDetails 900d9a50 eoe_packet_queue 900d9a68 gFFDisks 900d9a80 ip_data 900d9ac0 gFlashObject_MT35XL512 900d9c14 virtToPhymap 900d9c24 NotifyRxQueue 900d9c30 NotifyTxQueue 900d9c3c gADMA2Desc 900d9c48 pfreeQ 900d9c54 dhcp_rx_options_given 900d9c90 gLedHandle 900d9c98 parmbuf 900d9d50 PPPtr 900d9d54 TermCom 900d9d58 gEepromHandle 900d9d5c gFlashHandle 900d9d60 gI2cHandle 900d9d64 gIoexpHandle 900d9d68 gMmcsdHandle 900d9d6c gOspiHandle 900d9d70 gUartHandle 900d9d74 g_pNetif 900d9d78 gpDisk 900d9d7c netif_default 900d9d80 netif_list 900d9d84 spinlockPdoBaseAddr 900d9d88 tcp_active_pcbs 900d9d8c tcp_bound_pcbs 900d9d90 tcp_input_pcb 900d9d94 tcp_listen_pcbs 900d9d98 tcp_ticks 900d9d9c tcp_tw_pcbs 900d9da0 udp_pcbs 900d9daa tcp_active_pcbs_changed 900d9dab ucAssumeFATType 900d9e00 __BSS_END 900d9e00 _sys_memory 900f9200 __stack 90108c00 __STACK_END 90108c00 gEnetSoc_cpsw3g 90108c00 gUartDmaConfig 9010a4d0 DDRSS_phyReg 9010acbc DDRSS_ctlReg 9010b974 DDRSS_phyIndepReg 9010bed8 DDRSS_phyRegNum 9010c2d0 gEnetSoc_cpsw3gMacObj 9010c640 DDRSS_ctlRegNum 9010c98e DDRSS_phyIndepRegNum 9010d694 _ftable 9010db98 vint_usage_count_DMASS0_INTAGGR_0 9010e2a8 gIpcNotifyMailboxConfig 9010e500 gTuningPattern8Bit 9010e5f8 _device 9010e6e8 gFlashDevCfg_MT35XL512 9010e820 gIpcNotifyInterruptConfig_r5fss0_1 9010e880 gRmIrInstances 9010e8e0 gUdmaRmSharedResPrms 9010e938 gEnetMacAddrPool 9010e9e0 gUartParams 9010ea84 _stream 9010ee30 gFlashAttrs_MT35XL512 9010eec0 gSocModulesClockFrequency 9010eef0 gEnetPhyDrvDp83867 9010ef18 gEnetPhyDrvGeneric 9010ef40 gLedParams 9010ef68 gPhyTuneWindowParamsGTE133 9010ef90 gPhyTuneWindowParamsLT133 9010efb8 gFlashToSpiProtocolMap 9010f000 gIpcNotifyMailboxBaseAddr 9010f024 gSocModules 9010f068 gRmIaInstances 9010f088 gSciclientSecProxyCfg 9010f0e8 ssi_tags 9010f108 gFlashNorOspiFxns 9010f124 gOspiUdma0Args 9010f1e8 gLedConfig 9010f230 gClockConfig 9010f244 gLedFxns_TPIC2810 9010f280 Cpsw_gSpeedNames 9010f290 gEepromFxns_AT24C 9010f2a0 gFlashConfig 9010f2b0 Cpsw_gDuplexNames 9010f2bc gAddrTranslateConfig 9010f2d4 gEepromAttrs_AT24C 9010f2e0 gEepromConfig 9010f2ec gEnetSoc_perObj 9010f2f8 gI2cParams 9010f304 gOspiDmaUdmaFxns 9010f310 __TI_cleanup_ptr 9010f314 __TI_dtors_ptr 9010f320 gEepromParams 9010f328 gEnetSoc_dmaObjMemInfo 9010f330 gFFMmcsdConfig 9010f338 gFFPartitionIds 9010f340 gFlashParams 9010f348 gI2cConfig 9010f350 gMmcsdConfig 9010f358 gMmcsdParams 9010f360 gOspiConfig 9010f368 gOspiDmaConfig 9010f380 gUartConfig 9010f390 PP_Watermark 9010f398 __TI_ft_end 9010f39c __aeabi_errno 9010f3a0 _lock 9010f3a4 _unlock 9010f3b0 err_msg 9010f3b4 gDebugLogZone 9010f3b8 gEepromConfigNum 9010f3bc gEnetOsalHwiAllocCnt 9010f3c0 gEnetOsalHwiPeak 9010f3c4 gEnetOsalSemAllocCnt 9010f3c8 gEnetOsalSemPeak 9010f3cc gFlashConfigNum 9010f3d0 gHwiConfig 9010f3d4 gI2cConfigNum 9010f3d8 gIpcNotifyInterruptConfigNum_r5fss0_1 9010f3dc gLedAttrs_TPIC2810 9010f3e0 gLedConfigNum 9010f3e4 gMmcsdConfigNum 9010f3e8 gOspiConfigNum 9010f3ec gOspiDmaConfigNum 9010f3f0 gOspiParams 9010f3f4 gPhyTuneWindowParams 9010f3f8 gUartConfigNum 9010f3fc gUartDmaConfigNum 9010f410 uartHandler 9010f430 gEnetTrace_runtimeLevel 9010f433 isMapAvailable ffffffff __TI_pprof_out_hndl ffffffff __TI_prof_data_size ffffffff __TI_prof_data_start ffffffff __binit__ ffffffff binit UNDEFED __TI_CINIT_Base UNDEFED __TI_CINIT_Limit UNDEFED __TI_Handler_Table_Base UNDEFED __TI_Handler_Table_Limit UNDEFED _system_post_cinit [2042 symbols]
I2C_OPEN()输出:
以及处理程序异常、如果它希望将 fileBuffer 数据作为代码执行:
在最后一个我验证了输出文件,它失败在 0x900209E0 Witch 是 UART_WRITE ()的地址,但该地址的反汇编也是模糊的,因为起初我看到没有函数名称的代码, 如果我向上滚动、它们会切换到.words、比如代码 alingment 错误。
此致、
格尔格利
感谢 Gergely 提供的日志。
请允许我花点时间查看并回复给您。
您是否已经与 TI 硬件专家团队一起完成了定制电路板原理图审阅?
此致
阿什瓦尼
尊敬的 Ashwani:
我不确定我们是否这样做了、这可能需要等到经理从他们的假期回来。
马克说,我应该等待对这个问题的答复。
此致、
格尔格利
我不确定我们是否这样做了、这可能需要等到经理从他们的假期回来。
马克说,我应该等待对这个问题的答复。
[/报价]当然可以。
此致
阿什瓦尼