The TI E2E™ design support forums will undergo maintenance from July 11 to July 13. If you need design support during this time, open a new support request with our customer support center.

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.

AM6548: AM6548 PDK Enet Multiport Example on MCU (R5F) - SR2.0

Part Number: AM6548

Hello,

I am attempting to run the enet multiport example from the AM6548 PDK, version 8.02.00.21 on an AM65x_IDK_EVM (SR2.x). When I build the example from the PDK, I get the binary 

"C:\ti\pdk_am65xx_08_02_00_21\packages\ti\binary\enet_multiport_test_freertos\bin\am65xx_idk\enet_multiport_test_freertos_mcu1_0_release.xer5f"

When I attempt to load this over CCS, after running the launch.js, the application does not even appear to hit an entry point and just sits at memory address 0x0000000C. 

I attempted to port the example to my own local toolchain, which uses GCC and a linker based on the PDK, but I only get as far as this when I run the example:

Init Enet's OSAL and utils to use defaults
Init memory utils
Create clock and task for periodic tick
Create periodic tick task
Create periodic tick clock
Open Main UDMA driver
Open MCU UDMA driver

Init all peripheral clocks
----------------------------------------------
Enabling clocks!
Enabling clocks!
Enabling clocks!
Enabling clocks!
Enabling clocks!
Enabling clocks!

Init all configs
----------------------------------------------
cpsw-2g: init config
icssg0-p1: init config
icssg0-p2: init config
icssg1: init config
icssg2-p1: init config
icssg2-p2: init config

Open all peripherals
----------------------------------------------
cpsw-2g: Open enet


It seems I get data aborts... and the culprit is more often than not EnetUdma_memMgrAllocTdCqRingMemObj, which attempts to dequeue some data from memory location .bss:ENET_DMA_OBJ_MEM (variable gEnetUdmaTdCqRingObjMem)

Which is in DDR. This causes a data abort to happen randomly, as sometimes it happens and sometimes it does not... but only when I step through with the debugger will it sometimes succeed. 
Here is the order of operations in detail:

First we enter EnetUdma_memMgrAllocTdCqRingMemObj (from the Enet_open functions)

/*! TD Cq Ring memory object allocation function  */
void *EnetUdma_memMgrAllocTdCqRingMemObj(void)
{
    void *pTdCqRingMem = NULL;
    EnetUdma_TdCqRingObjMem *pTdCqRingMemObj;

    pTdCqRingMemObj = (EnetUdma_TdCqRingObjMem *)
                      EnetQueue_deq(&gEnetUdmaMemMgrObj.tdCqRingObjMemQ);
#if ENET_CFG_IS_ON(DEV_ERROR)
    Enet_assert(NULL != pTdCqRingMemObj);
#endif
    if (pTdCqRingMemObj != NULL)
    {
        pTdCqRingMem = (void *)&pTdCqRingMemObj->tdCqRingMemObj[0U];
        Enet_assert(ENET_UTILS_IS_ALIGNED(pTdCqRingMem, ENETDMA_CACHELINE_ALIGNMENT));
        memset(pTdCqRingMem, 0U, sizeof(uint64_t));
    }

    return pTdCqRingMem;
}
Then we enter EnetQueue_deq
EnetQ_Node *EnetQueue_deq(EnetQ *queue)
{
    EnetQ_Node *node;
    uintptr_t key = EnetOsal_disableAllIntr();

    Enet_devAssert(queue->magic == ENET_Q_INIT_DONE,
                   "Queue is not initialized\n");

    node = queue->head;

    if (NULL != node)
    {
        queue->head = node->next;
        if (NULL == queue->head)
        {
            queue->tail = NULL;
        }

        queue->count--;
        node->next = NULL;
    }

    EnetOsal_restoreAllIntr(key);

    return node;
}
And we specifically hit the data abort handler in the line "queue->head = node->next;" which is moving the queue head down, from MSMC RAM to DDR

queue->head is located at 0x7002E820 (MSMC), and node->next is located at 0x81D39980 (DDR), why would this be happening?

So my question is... why is the built MCU example not working? And why do I see this error happening in the Enet DMA driver code?

Thanks,
Ben
  • Hi Ben,

    Thanks for your query.

    I will check this and get back to you.

    Meanwhile can you please check E2E FAQ.

    Best Regards

    Ashwani

  • Hi Ashwani, 

    Looking at the E2E FAQ, I am not sure what I did wrong in building and loading this project. There is no CCS example project for the enet multiport example, so I just built it using make. 

    For reference I am able to load other example applications through CCS, such as the UART examples.

    Thanks,

    Ben

  • Thanks Benjamin Roytburd,

    But we do not support PDK.

    Please refer to the following E2E FAQ for guidance.

    Best Regards

    Ashwani

  • I think there is a bit of a misunderstanding here, I am referring to the examples from this TI software release:

    https://www.ti.com/tool/PROCESSOR-SDK-AM65X

    Specifically this release:

    https://www.ti.com/tool/download/PROCESSOR-SDK-RTOS-AM65X/09.01.00.02


    As well as release 08.02.00.21. 

    Not sure why you would not support an SDK released in December of last year. I am referring to the pdk_am65xx_09_01_00_02 software folder that is from the ti-processor-sdk-rtos-am65xx-09_01_00_02 install. 

    There are even references to previous releases of this SDK in the E2E FAQ. 

  • The December release for the PDK was very one off , for one customer issue around USB driver.  So in general Ashwani is right , we no longer support PDK and TI RTOS. MCU+ SDK (which is very feature trimmed relative to PDK) is all we will try to support as best as possible. Again if this is a new design we highly encourage you to evaluate AM64. 

    On AM65 recommend if you can stick closer to Linux. 

    Regards

    Mukul 

  • Is this issue still present with VxWorks 24.03 ? Based on https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1326955/am6548-am6548-sr2-0-unhandled-exception-from-el1/ I'm assuming VxWorks is used in this project.

  • Ah, I see what you mean Mukul, apologies for the misunderstanding.

    Pekka this is unrelated to VxWorks, here I am referring to a standalone R5F / FreeRTOS application that is loaded through code composer studio in debug mode. 

    No HLOS running on target. I am just looking to be able to run enet examples on the MCU of the AM6548, any guidance here would be appreciated.

  • Hello Benjamin,

    First off, apologies for the confusion on what we can currently support here. I am taking some actions to update the https://www.ti.com/tool/download/PROCESSOR-SDK-RTOS-AM65X information so that it states up front that the code is provided without TI support.

    As Mukul mentioned, the supported MCU+ SDK has a reduced featureset from the previous RTOS SDK. It does not look like R5F networking (with either CPSW or PRU Ethernet) is in that reduced featureset: https://software-dl.ti.com/mcu-plus-sdk/esd/AM65X/09_01_00_04/docs/api_guide_am65x/RELEASE_NOTES_09_01_00_PAGE.html

    I can reassign your thread back to a member of the MCU+ team to see if they have any general guidance on debugging RTOS code, but we are not going to be able to support you much beyond that. As Mukul mentioned, if AM64x is also a fit for your usecase, we will be able to provide more support on that device.

    Regards,

    Nick

  • Thanks for the explanation Nick, I suppose debugging of Enet code I can tackle myself, but help with the first part of the question would be appreciated, and I feel is in scope of the PDK / MCU+ SDK. Reassignment to the MCU+ team would be much appreciated.

    To reiterate, why do some examples that I have built for MCU (Enet in particular), when loaded over CCS, never hit main and just stop at 0x0000000C when loaded to R5F? 

  • I did actually find where in the PDK it documents on how to build / load the enet_multiport example, and I followed these instructions pretty closely:
    https://software-dl.ti.com/processor-sdk-rtos/esd/AM65X/09_01_00_02/exports/docs/pdk_am65xx_09_01_00_02/docs/userguide/am65xx/modules/enet.html#enet-multiport
    But still not hitting main even when loading over CCS

  • Hi Benjamin,

    I am suspecting the R5F core is unable to read the instructions from the reset address read from the exception table. This reset address in the exception table is the address of the startup routine usually named `c_int00`. This startup routine then calls the application's main function.

    Can you please share the memory contents starting from address 0x0 (exception table address) using the CCS's Memory Brower?

    Regards,

    Prashant

  • Hi Prashant, 

    That makes sense, I suspected something similar, looking at the map file for the application, it seems that _c_int00 is at address 0x41c3f8cc in OCMC_RAM, but main appears to be in DDR at 0x81f38ea0. This matches up to the linker somewhat (packages\ti\drv\enet\examples\build\am65xx\linker_r5_freertos.lds), not sure why main would be in DDR though. 

    Here is the map file if you are interested, let me know if you still need the memory browser as well. 

    ******************************************************************************
                TI ARM Clang Linker PC v1.3.0                      
    ******************************************************************************
    >> Linked Fri Mar  1 09:54:56 2024
    
    OUTPUT FILE NAME:   <C:/ti/pdk_am65xx_08_02_00_21/packages/ti/binary/enet_multiport_test_freertos/bin/am65xx_idk/enet_multiport_test_freertos_mcu1_0_debug.xer5f>
    ENTRY POINT SYMBOL: "_freertosresetvectors"  address: 41c3e100
    
    
    MEMORY CONFIGURATION
    
             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
      MCU0_ATCM_NOT_USED    00000000   00007fff  00000000  00007fff  R   
      MCU0_BTCM_NOT_USED    41010000   00007fff  00000000  00007fff  R   
      MCU_MSRAM_RSVD_UNUSED 41c00000   00000200  00000000  00000200  R   
      MCU_MSRAM_RSVD_SBL    41c00200   0003de00  00000000  0003de00  RWIX
      VECTORS               41c3e000   00000100  00000000  00000100  RWIX
      RESET_VECTORS         41c3e100   00001000  00000040  00000fc0  RWIX
      OCMC_RAM              41c3f100   00040f00  000008d0  00040630  RWIX
      MSMC3                 70000000   001efc00  0014f120  000a0ae0  RWIX
      MSMC3_RSVD_DMSC       701f0000   00001000  00000000  00001000  RWIX
      DDR0                  80000000   7fffffe4  01fd92d8  7e026d0c  RWIX
    
    
    SEGMENT ALLOCATION MAP
    
    run origin  load origin   length   init length attrs members
    ----------  ----------- ---------- ----------- ----- -------
    41c3e100    41c3e100    00000040   00000040    r-x
      41c3e100    41c3e100    00000040   00000040    r-x .freertosrstvectors
    41c3f100    41c3f100    000008d0   000008d0    r-x
      41c3f100    41c3f100    000004a0   000004a0    r-x .startupCode
      41c3f5a0    41c3f5a0    00000318   00000318    r-- .startupData
      41c3f8b8    41c3f8b8    00000118   00000118    r-x .bootCode
    7010b000    7010b000    00021ec0   00021ec0    r--
      7010b000    7010b000    00021ec0   00021ec0    r-- .rodata
    7012cf00    7012cf00    00020000   00000000    rw-
      7012cf00    7012cf00    00018000   00000000    rw- .data
      70144f00    70144f00    00008000   00000000    rw- .sysmem
    7014cf00    7014cf00    00002260   00002260    r-x
      7014cf00    7014cf00    000004f0   000004f0    r-x .text.hwi
      7014d3f0    7014d3f0    00001d70   00001d70    r-- .cinit
    81f07400    81f07400    00059ed0   00059ed0    r-x
      81f07400    81f07400    00059ed0   00059ed0    r-x .text
    81faa580    81faa580    00029988   00000000    rw-
      81faa580    81faa580    00029988   00000000    rw- .bss
    ffffabe0    ffffabe0    00001400   00000000    r--
      ffffabe0    ffffabe0    00000100   00000000    r-- .undStack
      fffface0    fffface0    00000100   00000000    r-- .svcStack
      ffffade0    ffffade0    00001000   00000000    r-- .irqStack
      ffffbde0    ffffbde0    00000100   00000000    r-- .fiqStack
      ffffbee0    ffffbee0    00000100   00000000    r-- .abortStack
    ffffbfe0    ffffbfe0    00004000   00000000    rw-
      ffffbfe0    ffffbfe0    00004000   00000000    rw- .stack
    
    
    SECTION ALLOCATION MAP
    
     output                                  attributes/
    section   page    origin      length       input sections
    --------  ----  ----------  ----------   ----------------
    .freertosrstvectors 
    *          0    41c3e100    00000040     
                      41c3e100    00000040     ti.kernel.freertos.aer5f : port_Hwi_handlers_asm.oer5f (.freertosrstvectors)
    
    .startupCode 
    *          0    41c3f100    000004a0     
                      41c3f100    000002c4     ti.csl.init.aer5f : startup.oer5f (.startupCode)
                      41c3f3c4    000001cc                       : r5_startup.oer5f (.startupCode)
                      41c3f590    00000008                       : startup.oer5f (.tramp.CSL_REG32_WR_RAW.1)
                      41c3f598    00000008     --HOLE-- [fill = 00000000]
    
    .startupData 
    *          0    41c3f5a0    00000318     
                      41c3f5a0    00000314     ti.csl.init.aer5f : startup.oer5f (.startupData)
                      41c3f8b4    00000004     --HOLE-- [fill = 00000000]
    
    .bootCode 
    *          0    41c3f8b8    00000118     
                      41c3f8b8    000000fc     ti.csl.init.aer5f : boot.oer5f (.bootCode)
                      41c3f9b4    00000008     libc.a : exit.c.obj (.tramp.exit.1)
                      41c3f9bc    00000008            : args_main.c.obj (.tramp._args_main.1)
                      41c3f9c4    00000008            : autoinit.c.obj (.tramp.__TI_auto_init_nobinit_nopinit.1)
                      41c3f9cc    00000004     --HOLE-- [fill = 00000000]
    
    .bss:ENET_ICSSG_OCMC_MEM 
    *          0    70000000    0010b000     NOLOAD SECTION
                      70000000    0010b000     enetsoc.aer5f : enet_soc.oer5f (.bss:ENET_ICSSG_OCMC_MEM)
    
    .text.hwi 
    *          0    7014cf00    000004f0     
                      7014cf00    00000264     ti.kernel.freertos.aer5f : port_Hwi.oer5f (.text.hwi)
                      7014d164    00000254                              : portASM.oer5f (.text.hwi)
                      7014d3b8    00000008     ti.csl.aer5f : csl_vim.oer5f (.tramp.CSL_vimAckIntr.1)
                      7014d3c0    00000008                  : csl_arm_r5.oer5f (.tramp.CSL_armR5IntrEnableFiq.1)
                      7014d3c8    00000008                  : csl_vim.oer5f (.tramp.CSL_vimClrIntrPending.1)
                      7014d3d0    00000008                  : csl_vim.oer5f (.tramp.CSL_vimGetIntrType.1)
                      7014d3d8    00000008                  : csl_vim.oer5f (.tramp.CSL_vimGetActivePendingIntr.1)
                      7014d3e0    00000008                  : csl_vim.oer5f (.tramp.CSL_vimGetFiqVectorAddress.1)
                      7014d3e8    00000008     --HOLE-- [fill = 00000000]
    
    .text.cache 
    *          0    7014d3f0    00000000     UNINITIALIZED
    
    .text.mpu 
    *          0    7014d3f0    00000000     UNINITIALIZED
    
    .text.boot 
    *          0    7014d3f0    00000000     UNINITIALIZED
    
    .text      0    81f07400    00059ed0     
                      81f07400    00000ed0     libc.a : _printfi.c.obj (.text:__TI_printfi)
                      81f082d0    00000ec0     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_ioctl)
                      81f09190    00000e84                : icssg_utils.oer5f (.text.IcssgUtils_CRC64)
                      81f0a014    0000000c     libc.a : aeabi_portable.c.obj (.text.__aeabi_errno_addr)
                      81f0a020    00000d94     enet.aer5f : cpsw_macport.oer5f (.text.CpswMacPort_ioctl)
                      81f0adb4    0000000c     libc.a : memory.c.obj (.text.malloc)
                      81f0adc0    00000cb4     enet.aer5f : icssg.oer5f (.text.Icssg_ioctlInternal)
                      81f0ba74    00000008     libc.a : exit.c.obj (.text:abort)
                      81f0ba7c    00000004            : _lock.c.obj (.text._nop)
                      81f0ba80    00000b50     enet.aer5f : enet_udma.oer5f (.text.EnetDma_openRxCh)
                      81f0c5d0    00000b34                : cpsw_cpts.oer5f (.text.CpswCpts_ioctl)
                      81f0d104    00000004     libc.a : fseek.c.obj (.text.fseek)
                      81f0d108    00000004     libsysbm.a : remove.c.obj (.text.remove)
                      81f0d10c    00000004     libclang_rt.builtins.a : aeabi_memcpy.S.obj (.text)
                      81f0d110    00000a38     enet.aer5f : cpsw.oer5f (.text.Cpsw_ioctlInternal)
                      81f0db48    00000008     ti.kernel.freertos.aer5f : portASM.oer5f (.tramp.vPortRestoreTaskContext.1)
                      81f0db50    00000a24     enet.aer5f : enet_udma.oer5f (.text.EnetDma_openTxCh)
                      81f0e574    0000000c     --HOLE-- [fill = 00000000]
                      81f0e580    000009e0     ti.board.aer5f : board_ddr.oer5f (.text.DDR_Controller_PHY_Config)
                      81f0ef60    00000914     enet.aer5f : icssg_utils.oer5f (.text.IcssgUtils_configSwtFw)
                      81f0f874    0000000c     --HOLE-- [fill = 00000000]
                      81f0f880    000006dc                : icssg_utils.oer5f (.text.IcssgUtils_fwConfig)
                      81f0ff5c    00000004     --HOLE-- [fill = 00000000]
                      81f0ff60    000006dc                : icssg.oer5f (.text.Icssg_open)
                      81f1063c    00000004     --HOLE-- [fill = 00000000]
                      81f10640    00000678     udma.aer5f : udma_rm.oer5f (.text.Udma_rmInit)
                      81f10cb8    00000008     --HOLE-- [fill = 00000000]
                      81f10cc0    0000066c     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_dumpTable)
                      81f1132c    00000004     --HOLE-- [fill = 00000000]
                      81f11330    00000604                : cpsw.oer5f (.text.Cpsw_openInternal)
                      81f11934    0000000c     --HOLE-- [fill = 00000000]
                      81f11940    000005f0     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqRouteValidate)
                      81f11f30    00000598     udma.aer5f : udma_event.oer5f (.text.Udma_eventConfig)
                      81f124c8    00000008     --HOLE-- [fill = 00000000]
                      81f124d0    00000590     enet.aer5f : enet_osal.oer5f (.text.EnetOsal_init)
                      81f12a60    0000057c     enet_example_utils_full_freertos.aer5f : enet_apputils.oer5f (.text.EnetAppUtils_printIcssgPaStats)
                      81f12fdc    00000004     --HOLE-- [fill = 00000000]
                      81f12fe0    00000560     enet.aer5f : icssg.oer5f (.text.Icssg_setIngressRateLim)
                      81f13540    00000520                : cpsw_macport.oer5f (.text.CpswMacPort_open)
                      81f13a60    00000520     enet_multiport.oer5f (.text.EnetMp_open)
                      81f13f80    00000514     enet_example_utils_full_freertos.aer5f : enet_apputils.oer5f (.text.EnetAppUtils_printIcssgMacPortStats)
                      81f14494    0000000c     --HOLE-- [fill = 00000000]
                      81f144a0    000004e0     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_printRegs)
                      81f14980    000004e0     udma.aer5f : udma_ch.oer5f (.text.Udma_chAllocResource)
                      81f14e60    000004d4     enet_multiport.oer5f (.text.EnetMp_rxTask)
                      81f15334    0000000c     --HOLE-- [fill = 00000000]
                      81f15340    000004bc     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_serviceSecureProxy)
                      81f157fc    00000004     --HOLE-- [fill = 00000000]
                      81f15800    000004bc     udma.aer5f : udma_event.oer5f (.text.Udma_eventReset)
                      81f15cbc    00000004     --HOLE-- [fill = 00000000]
                      81f15cc0    000004a8     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_setPolicer)
                      81f16168    00000008     --HOLE-- [fill = 00000000]
                      81f16170    000004a4                : enet_udma_priv.oer5f (.text.EnetUdma_openRxRsvdFlow)
                      81f16614    0000000c     --HOLE-- [fill = 00000000]
                      81f16620    00000480                : mdio.oer5f (.text.Mdio_ioctl)
                      81f16aa0    00000468                : cpsw.oer5f (.text.Cpsw_registerIntrs)
                      81f16f08    00000008     --HOLE-- [fill = 00000000]
                      81f16f10    00000464     enet_example_utils_full_freertos.aer5f : enet_apputils.oer5f (.text.EnetAppUtils_printMacPortStats2G)
                      81f17374    0000000c     --HOLE-- [fill = 00000000]
                      81f17380    00000454     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_submitPkts)
                      81f177d4    0000000c     --HOLE-- [fill = 00000000]
                      81f177e0    00000440                : cpsw_hostport.oer5f (.text.CpswHostPort_ioctl)
                      81f17c20    00000420                : enet_udma.oer5f (.text.EnetUdma_openRxCh)
                      81f18040    000003f8                : enet_udma.oer5f (.text.EnetDma_closeRxCh)
                      81f18438    00000008     --HOLE-- [fill = 00000000]
                      81f18440    000003f0                : cpsw_ale.oer5f (.text.CpswAle_checkPolicerMatch)
                      81f18830    000003d4                : enet_rm.oer5f (.text.EnetRm_detachCore)
                      81f18c04    0000000c     --HOLE-- [fill = 00000000]
                      81f18c10    000003d0     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqGetRoute)
                      81f18fe0    000003c0     enet.aer5f : enet_rm.oer5f (.text.EnetRm_ioctl)
                      81f193a0    000003b8     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_enableState)
                      81f19758    00000008     --HOLE-- [fill = 00000000]
                      81f19760    000003b0     enet.aer5f : enet_udma.oer5f (.text.EnetDma_closeTxCh)
                      81f19b10    0000039c                : cpsw.oer5f (.text.Cpsw_open)
                      81f19eac    00000004     --HOLE-- [fill = 00000000]
                      81f19eb0    00000398     udma.aer5f : udma_soc.oer5f (.text.Udma_initDrvHandle)
                      81f1a248    00000008     --HOLE-- [fill = 00000000]
                      81f1a250    00000390     enet.aer5f : cpsw_intervlan.oer5f (.text.Cpsw_setInterVlanRouteMultiEgress)
                      81f1a5e0    00000374                : enet_rm.oer5f (.text.EnetRm_close)
                      81f1a954    0000000c     --HOLE-- [fill = 00000000]
                      81f1a960    0000036c     udma.aer5f : udma_rm.oer5f (.text.UdmaRmInitPrms_init)
                      81f1accc    00000004     --HOLE-- [fill = 00000000]
                      81f1acd0    00000368     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_open)
                      81f1b038    00000008     --HOLE-- [fill = 00000000]
                      81f1b040    0000034c                : icssg.oer5f (.text.Icssg_ioctl)
                      81f1b38c    00000004     --HOLE-- [fill = 00000000]
                      81f1b390    00000338                : cpsw_intervlan.oer5f (.text.Cpsw_findCommonFreeSlot)
                      81f1b6c8    00000008     --HOLE-- [fill = 00000000]
                      81f1b6d0    0000032c     ti.drv.uart.aer5f : UART_stdio.oer5f (.text.UART_printf)
                      81f1b9fc    00000004     --HOLE-- [fill = 00000000]
                      81f1ba00    0000032c     udma.aer5f : udma_event.oer5f (.text.Udma_eventAllocResource)
                      81f1bd2c    00000004     --HOLE-- [fill = 00000000]
                      81f1bd30    00000328     enet.aer5f : cpsw_cpts.oer5f (.text.CpswCpts_handleEvents)
                      81f1c058    00000008     --HOLE-- [fill = 00000000]
                      81f1c060    0000030c     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_open_v1)
                      81f1c36c    00000004     --HOLE-- [fill = 00000000]
                      81f1c370    00000308     enet_multiport.oer5f (.text.EnetMp_waitForLinkUp)
                      81f1c678    00000008     --HOLE-- [fill = 00000000]
                      81f1c680    00000308     enet.aer5f : icssg_utils.oer5f (.text.IcssgUtils_checkFwPoolMem)
                      81f1c988    00000008     --HOLE-- [fill = 00000000]
                      81f1c990    000002f8                : cpsw.oer5f (.text.Cpsw_isPortLinkUp)
                      81f1cc88    00000008     --HOLE-- [fill = 00000000]
                      81f1cc90    000002f0                : enet_phymdio_dflt.oer5f (.text.EnetPhyMdioDflt_ioctl)
                      81f1cf80    000002ec                : cpsw_stats.oer5f (.text.CpswStats_ioctl)
                      81f1d26c    00000004     --HOLE-- [fill = 00000000]
                      81f1d270    000002e0                : cpsw_ale.oer5f (.text.CpswAle_dumpPolicerEntries)
                      81f1d550    000002e0                : cpsw_ale.oer5f (.text.CpswAle_findVlan)
                      81f1d830    000002dc     ti.csl.aer5f : csl_arm_r5.oer5f (.text)
                      81f1db0c    00000004     --HOLE-- [fill = 00000000]
                      81f1db10    000002d8     enet_multiport.oer5f (.text.EnetMp_close)
                      81f1dde8    00000008     --HOLE-- [fill = 00000000]
                      81f1ddf0    000002d0     udma.aer5f : udma_ch.oer5f (.text.Udma_chDisableExtChan)
                      81f1e0c0    000002cc     enet.aer5f : cpsw.oer5f (.text.Cpsw_handleLinkUp)
                      81f1e38c    00000004     --HOLE-- [fill = 00000000]
                      81f1e390    000002c8     ti.board.aer5f : board_ddr.oer5f (.text.Cleanup_Training)
                      81f1e658    00000008     --HOLE-- [fill = 00000000]
                      81f1e660    000002c4     udma.aer5f : udma_ch.oer5f (.text.Udma_chConfigRx)
                      81f1e924    0000000c     --HOLE-- [fill = 00000000]
                      81f1e930    000002c0     enet.aer5f : mdio.oer5f (.text.Mdio_open)
                      81f1ebf0    000002bc     udma.aer5f : udma_ch.oer5f (.text.Udma_chEnableLocal)
                      81f1eeac    00000004     --HOLE-- [fill = 00000000]
                      81f1eeb0    000002b8     enet.aer5f : cpsw.oer5f (.text.Cpsw_printRegisters)
                      81f1f168    00000008     --HOLE-- [fill = 00000000]
                      81f1f170    000002b4                : cpsw.oer5f (.text.Cpsw_periodicTick)
                      81f1f424    0000000c     --HOLE-- [fill = 00000000]
                      81f1f430    000002b4     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqFindRoute)
                      81f1f6e4    0000000c     --HOLE-- [fill = 00000000]
                      81f1f6f0    000002b0     udma.aer5f : udma_ch.oer5f (.text.Udma_chDisableTxChan)
                      81f1f9a0    000002a8     enet.aer5f : cpsw.oer5f (.text.Cpsw_openPortLinkNoPhy)
                      81f1fc48    00000008     --HOLE-- [fill = 00000000]
                      81f1fc50    000002a8                : enet_udma_priv.oer5f (.text.EnetUdma_processRetrievedDesc)
                      81f1fef8    00000008     --HOLE-- [fill = 00000000]
                      81f1ff00    0000029c                : cpsw_intervlan.oer5f (.text.Cpsw_setInterVlanRouteUniEgress)
                      81f2019c    00000004     --HOLE-- [fill = 00000000]
                      81f201a0    00000290     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_setAleIPv6Entry_4G)
                      81f20430    00000290                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_setAleIPv6Entry_9G)
                      81f206c0    0000028c                  : csl_serdes3.oer5f (.text.CSL_serdesLaneEnable)
                      81f2094c    00000004     --HOLE-- [fill = 00000000]
                      81f20950    00000288     udma.aer5f : udma_event.oer5f (.text.Udma_eventRegister)
                      81f20bd8    00000008     --HOLE-- [fill = 00000000]
                      81f20be0    00000284     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_allocRing)
                      81f20e64    0000000c     --HOLE-- [fill = 00000000]
                      81f20e70    0000027c                : cpsw_macport.oer5f (.text.CpswMacPort_configSgmii)
                      81f210ec    00000004     --HOLE-- [fill = 00000000]
                      81f210f0    0000027c     pm_lib.aer5f : pmlib_clkrate.oer5f (.text.PMLIBClkRateSet)
                      81f2136c    00000004     --HOLE-- [fill = 00000000]
                      81f21370    00000278     udma.aer5f : udma_ring_common.oer5f (.text.Udma_ringAlloc)
                      81f215e8    00000278     libc.a : _printfi.c.obj (.text._pconv_a)
                      81f21860    0000026c     enet.aer5f : icssg.oer5f (.text.Icssg_setPriorityRegen)
                      81f21acc    00000004     --HOLE-- [fill = 00000000]
                      81f21ad0    00000268                : cpsw.oer5f (.text.Cpsw_openPortLink)
                      81f21d38    00000008     --HOLE-- [fill = 00000000]
                      81f21d40    0000025c                : icssg.oer5f (.text.Icssg_configAndDownloadFw)
                      81f21f9c    00000004     --HOLE-- [fill = 00000000]
                      81f21fa0    00000258     enet_multiport.oer5f (.text.EnetMp_openPort)
                      81f221f8    00000008     --HOLE-- [fill = 00000000]
                      81f22200    00000258     ti.kernel.freertos.aer5f : queue.oer5f (.text.xQueueSemaphoreTake)
                      81f22458    00000008     --HOLE-- [fill = 00000000]
                      81f22460    00000254     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_addVlan)
                      81f226b4    0000000c     --HOLE-- [fill = 00000000]
                      81f226c0    00000254     udma.aer5f : udma_ch.oer5f (.text.Udma_chDisableRxChan)
                      81f22914    0000000c     --HOLE-- [fill = 00000000]
                      81f22920    00000248     enet.aer5f : cpsw_macport.oer5f (.text.CpswMacPort_setTrafficShaping)
                      81f22b68    00000008     --HOLE-- [fill = 00000000]
                      81f22b70    00000248     udma.aer5f : udma_ring_common.oer5f (.text.Udma_ringReset)
                      81f22db8    00000008     --HOLE-- [fill = 00000000]
                      81f22dc0    00000248                : udma_rm.oer5f (.text.Udma_rmAllocExtCh)
                      81f23008    00000008     --HOLE-- [fill = 00000000]
                      81f23010    00000240     enet_multiport.oer5f (.text.EnetMp_printStats)
                      81f23250    00000240     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_dmTimerDeviceCfg)
                      81f23490    0000023c     enet_multiport.oer5f (.text.EnetMp_mainTask)
                      81f236cc    00000004     --HOLE-- [fill = 00000000]
                      81f236d0    00000238     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_retrievePkts)
                      81f23908    00000008     --HOLE-- [fill = 00000000]
                      81f23910    00000238     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_init)
                      81f23b48    00000008     --HOLE-- [fill = 00000000]
                      81f23b50    00000238     udma.aer5f : udma_flow.oer5f (.text.Udma_flowAlloc)
                      81f23d88    00000008     --HOLE-- [fill = 00000000]
                      81f23d90    00000234     enet_multiport.oer5f (.text.EnetMp_openDma)
                      81f23fc4    0000000c     --HOLE-- [fill = 00000000]
                      81f23fd0    00000230     ti.board.aer5f : board_ddr.oer5f (.text.Board_DDRInit)
                      81f24200    00000230     libc.a : _printfi.c.obj (.text._pconv_g)
                      81f24430    0000022c     ti.csl.aer5f : csl_serdes3.oer5f (.text.CSL_serdesSetLaneRate)
                      81f2465c    00000004     --HOLE-- [fill = 00000000]
                      81f24660    0000022c     enet.aer5f : cpsw_macport_intervlan.oer5f (.text.CpswMacPort_ioctlInterVlan)
                      81f2488c    00000004     --HOLE-- [fill = 00000000]
                      81f24890    0000022c                : icssg_tas.oer5f (.text.IcssgTas_updateOperList)
                      81f24abc    00000004     --HOLE-- [fill = 00000000]
                      81f24ac0    0000022c     udma.aer5f : udma_ch.oer5f (.text.Udma_chOpen)
                      81f24cec    00000004     --HOLE-- [fill = 00000000]
                      81f24cf0    0000022c                : udma.oer5f (.text.Udma_init)
                      81f24f1c    00000004     --HOLE-- [fill = 00000000]
                      81f24f20    00000228     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.text.EnetMem_init)
                      81f25148    00000008     --HOLE-- [fill = 00000000]
                      81f25150    00000228     udma.aer5f : udma_ring_common.oer5f (.text.Udma_ringAssertFnPointers)
                      81f25378    00000008     --HOLE-- [fill = 00000000]
                      81f25380    00000224     enet.aer5f : icssg.oer5f (.text.Icssg_ioctlPortLinkCfg)
                      81f255a4    0000000c     --HOLE-- [fill = 00000000]
                      81f255b0    0000021c     ti.kernel.freertos.aer5f : queue.oer5f (.text.xQueueReceive)
                      81f257cc    00000004     --HOLE-- [fill = 00000000]
                      81f257d0    00000214     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.text.EnetMem_deInit)
                      81f259e4    0000000c     --HOLE-- [fill = 00000000]
                      81f259f0    00000214     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_dmTimerInstanceInit)
                      81f25c04    0000000c     --HOLE-- [fill = 00000000]
                      81f25c10    00000210     ti.board.aer5f : board_ethernet_config.oer5f (.text.Board_icssEthConfig)
                      81f25e20    00000210     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_getAlePolicerEntry)
                      81f26030    00000210     enet.aer5f : cpsw_hostport.oer5f (.text.CpswHostPort_setTrafficShaping)
                      81f26240    00000210     ti.csl.aer5f : uart.oer5f (.text.UARTFIFOConfig)
                      81f26450    0000020c     ti.kernel.freertos.aer5f : queue.oer5f (.text.xQueueGenericSend)
                      81f2665c    00000004     --HOLE-- [fill = 00000000]
                      81f26660    00000208     ti.board.aer5f : board_pll.oer5f (.text.Board_PLLSetModuleClkFreq)
                      81f26868    00000008     --HOLE-- [fill = 00000000]
                      81f26870    00000204     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_getMirrorMatchIndex)
                      81f26a74    0000000c     --HOLE-- [fill = 00000000]
                      81f26a80    00000200                : cpsw_macport.oer5f (.text.CpswMacPort_enablePort)
                      81f26c80    00000200     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.EnetAppUtils_openRxFlowForChIdx)
                      81f26e80    00000200     enet.aer5f : enet_udma.oer5f (.text.EnetUdma_checkTxChParams)
                      81f27080    00000200                : enet_udma_priv.oer5f (.text.EnetUdma_registerEvent)
                      81f27280    000001fc                : enet_udma_priv.oer5f (.text.EnetUdma_closeRxRsvdFlow)
                      81f2747c    00000004     --HOLE-- [fill = 00000000]
                      81f27480    000001fc     udma.aer5f : udma_ch.oer5f (.text.Udma_chDisableBlkCpyChan)
                      81f2767c    00000004     --HOLE-- [fill = 00000000]
                      81f27680    000001f8     enet.aer5f : cpsw_hostport.oer5f (.text.CpswHostPort_open)
                      81f27878    00000008     --HOLE-- [fill = 00000000]
                      81f27880    000001f8                : enet_udma.oer5f (.text.EnetUdma_checkRxFlowParams)
                      81f27a78    00000008     --HOLE-- [fill = 00000000]
                      81f27a80    000001f8     udma.aer5f : udma_flow.oer5f (.text.Udma_flowConfig)
                      81f27c78    00000008     --HOLE-- [fill = 00000000]
                      81f27c80    000001f4     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_updateVlanMcastHostPortMask)
                      81f27e74    0000000c     --HOLE-- [fill = 00000000]
                      81f27e80    000001f4     udma.aer5f : udma_flow.oer5f (.text.Udma_flowFree)
                      81f28074    0000000c     --HOLE-- [fill = 00000000]
                      81f28080    000001f4     ti.kernel.freertos.aer5f : timers.oer5f (.text.prvProcessReceivedCommands)
                      81f28274    0000000c     --HOLE-- [fill = 00000000]
                      81f28280    000001ec     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_lookupUcastAddr)
                      81f2846c    00000004     --HOLE-- [fill = 00000000]
                      81f28470    000001ec     enetphy.aer5f : dp83822.oer5f (.text.Dp83822_printRegs)
                      81f2865c    00000004     --HOLE-- [fill = 00000000]
                      81f28660    000001e8     enet.aer5f : cpsw_stats.oer5f (.text.CpswStats_open)
                      81f28848    00000008     --HOLE-- [fill = 00000000]
                      81f28850    000001e8     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.EnetAppUtils_closeRxFlowForChIdx)
                      81f28a38    00000008     --HOLE-- [fill = 00000000]
                      81f28a40    000001e8     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_initTxFreeDescQ)
                      81f28c28    00000008     --HOLE-- [fill = 00000000]
                      81f28c30    000001e4     udma.aer5f : udma_ch.oer5f (.text.Udma_chAssignRegOverlay)
                      81f28e14    0000000c     --HOLE-- [fill = 00000000]
                      81f28e20    000001e0     enet.aer5f : cpsw_macport.oer5f (.text.CpswMacPort_reset)
                      81f29000    000001dc     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_setupManual)
                      81f291dc    00000004     --HOLE-- [fill = 00000000]
                      81f291e0    000001dc     ti.csl.aer5f : csl_wiz8m_sb_refclk100p0MHz_32b_8Gbps_PCIE_1l1c.oer5f (.text.csl_wiz8m_sb_refclk100p0MHz_32b_8Gbps_PCIE_1l1c)
                      81f293bc    00000004     --HOLE-- [fill = 00000000]
                      81f293c0    000001d8     enet.aer5f : cpsw.oer5f (.text.Cpsw_ioctl)
                      81f29598    00000008     --HOLE-- [fill = 00000000]
                      81f295a0    000001d8     udma.aer5f : udma_rm.oer5f (.text.Udma_rmDeinit)
                      81f29778    00000008     --HOLE-- [fill = 00000000]
                      81f29780    000001d4     enet.aer5f : cpsw.oer5f (.text.Cpsw_closeInternal)
                      81f29954    0000000c     --HOLE-- [fill = 00000000]
                      81f29960    000001d4                : enet_rm.oer5f (.text.EnetRm_allocMacAddr)
                      81f29b34    000001d0     libclang_rt.builtins.a : udivsi3.S.obj (.text)
                      81f29d04    0000000c     --HOLE-- [fill = 00000000]
                      81f29d10    000001cc     ti.osal.aer5f : Arch_util.oer5f (.text.OsalArch_HwiPCreate)
                      81f29edc    00000004     --HOLE-- [fill = 00000000]
                      81f29ee0    000001c8     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_addMcastAddr)
                      81f2a0a8    00000008     --HOLE-- [fill = 00000000]
                      81f2a0b0    000001c8                : cpsw.oer5f (.text.Cpsw_validateTxShortIpgCfg)
                      81f2a278    00000008     --HOLE-- [fill = 00000000]
                      81f2a280    000001c8     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_open)
                      81f2a448    00000008     --HOLE-- [fill = 00000000]
                      81f2a450    000001c8     enet.aer5f : icssg_timesync.oer5f (.text.IcssgTimeSync_setClockTime)
                      81f2a618    00000008     --HOLE-- [fill = 00000000]
                      81f2a620    000001c8     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmClearInterruptRoute)
                      81f2a7e8    00000008     --HOLE-- [fill = 00000000]
                      81f2a7f0    000001c8     ti.osal.aer5f : TaskP_freertos.oer5f (.text.TaskP_create)
                      81f2a9b8    00000008     --HOLE-- [fill = 00000000]
                      81f2a9c0    000001c8     udma.aer5f : udma_ch.oer5f (.text.Udma_chFreeResource)
                      81f2ab88    00000008     --HOLE-- [fill = 00000000]
                      81f2ab90    000001c8     enetphy.aer5f : vsc8514.oer5f (.text.Vsc8514_printRegs)
                      81f2ad58    00000008     --HOLE-- [fill = 00000000]
                      81f2ad60    000001c8     ti.kernel.freertos.aer5f : tasks.oer5f (.text.xTaskIncrementTick)
                      81f2af28    00000008     --HOLE-- [fill = 00000000]
                      81f2af30    000001c4     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmProgramInterruptRoute)
                      81f2b0f4    0000000c     --HOLE-- [fill = 00000000]
                      81f2b100    000001c0     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_lookupMcastAddr)
                      81f2b2c0    000001c0                : cpsw_ale.oer5f (.text.CpswAle_setRxFilterBcast)
                      81f2b480    000001c0                : enet_udma.oer5f (.text.EnetUdma_closeRxCh)
                      81f2b640    000001c0     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqProgramRoute)
                      81f2b800    000001bc     enet.aer5f : cpsw_cpts.oer5f (.text.CpswCpts_lookUpEvent)
                      81f2b9bc    00000004     --HOLE-- [fill = 00000000]
                      81f2b9c0    000001bc                : enet.oer5f (.text.Enet_validateGenericIoctl)
                      81f2bb7c    00000004     --HOLE-- [fill = 00000000]
                      81f2bb80    000001bc     udma.aer5f : udma_rm.oer5f (.text.Udma_rmSetSharedResRmInitPrms)
                      81f2bd3c    000001bc     libc.a : memory.c.obj (.text.free)
                      81f2bef8    00000008     --HOLE-- [fill = 00000000]
                      81f2bf00    000001b8     enet.aer5f : cpsw.oer5f (.text.Cpsw_getPortLinkCfg)
                      81f2c0b8    00000008     --HOLE-- [fill = 00000000]
                      81f2c0c0    000001b8     udma.aer5f : udma_ring_normal.oer5f (.text.Udma_ringSetCfgNormal)
                      81f2c278    00000008     --HOLE-- [fill = 00000000]
                      81f2c280    000001b4     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.text.SemaphoreP_create)
                      81f2c434    0000000c     --HOLE-- [fill = 00000000]
                      81f2c440    000001b0     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_bindDriver)
                      81f2c5f0    000001b0     udma.aer5f : udma_ch.oer5f (.text.Udma_chConfigTx)
                      81f2c7a0    000001b0                : udma_event.oer5f (.text.Udma_eventCheckParams)
                      81f2c950    000001b0     libc.a : memory.c.obj (.text.aligned_alloc)
                      81f2cb00    000001ac     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_delPortUcastEntries)
                      81f2ccac    00000004     --HOLE-- [fill = 00000000]
                      81f2ccb0    000001a8                : cpsw_stats.oer5f (.text.CpswStats_readHostStats)
                      81f2ce58    00000008     --HOLE-- [fill = 00000000]
                      81f2ce60    000001a8     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_v1_hwiIntFxn)
                      81f2d008    00000008     --HOLE-- [fill = 00000000]
                      81f2d010    000001a4     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_getPortMacAddr)
                      81f2d1b4    0000000c     --HOLE-- [fill = 00000000]
                      81f2d1c0    000001a4                : cpsw_cpts.oer5f (.text.CpswCpts_open)
                      81f2d364    0000000c     --HOLE-- [fill = 00000000]
                      81f2d370    000001a4                : cpsw_stats.oer5f (.text.CpswStats_readMacStats)
                      81f2d514    0000000c     --HOLE-- [fill = 00000000]
                      81f2d520    0000019c     ti.board.aer5f : am65xx_idk_serdes_cfg.oer5f (.text.Board_twoLanePcieSerdesCfg)
                      81f2d6bc    00000004     --HOLE-- [fill = 00000000]
                      81f2d6c0    0000019c     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_setAlePolicerEntry)
                      81f2d85c    00000004     --HOLE-- [fill = 00000000]
                      81f2d860    0000019c     ti.osal.aer5f : ClockP_freertos.oer5f (.text.ClockP_create)
                      81f2d9fc    00000004     --HOLE-- [fill = 00000000]
                      81f2da00    0000019c     enet.aer5f : icssg.oer5f (.text.Icssg_handleLinkUp)
                      81f2db9c    00000004     --HOLE-- [fill = 00000000]
                      81f2dba0    00000198                : enet_udma_priv.oer5f (.text.EnetUdma_allocRingMon)
                      81f2dd38    00000008     --HOLE-- [fill = 00000000]
                      81f2dd40    00000190     ti.csl.aer5f : uart.oer5f (.text.UARTDivisorLatchWrite)
                      81f2ded0    0000018c     enet.aer5f : cpsw.oer5f (.text.Cpsw_handleLinkDown)
                      81f2e05c    00000004     --HOLE-- [fill = 00000000]
                      81f2e060    0000018c                : enet_rm.oer5f (.text.EnetRm_allocTxChNum)
                      81f2e1ec    00000004     --HOLE-- [fill = 00000000]
                      81f2e1f0    0000018c                : enet_udma_priv.oer5f (.text.EnetUdma_reconfigureDescQ)
                      81f2e37c    00000004     --HOLE-- [fill = 00000000]
                      81f2e380    00000188     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqDeleteRoute)
                      81f2e508    00000008     --HOLE-- [fill = 00000000]
                      81f2e510    00000188     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_write2_v1)
                      81f2e698    00000008     --HOLE-- [fill = 00000000]
                      81f2e6a0    00000184     enet.aer5f : cpsw.oer5f (.text.Cpsw_unregisterIntrs)
                      81f2e824    0000000c     --HOLE-- [fill = 00000000]
                      81f2e830    00000184                : icssg_tas.oer5f (.text.IcssgTas_ioctl)
                      81f2e9b4    0000000c     --HOLE-- [fill = 00000000]
                      81f2e9c0    00000180     ti.board.aer5f : board_ethernet_config.oer5f (.text.Board_mcuEthConfig)
                      81f2eb40    00000180     ti.csl.aer5f : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_setInterVLANCfg)
                      81f2ecc0    00000180     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_delPolicerEntry)
                      81f2ee40    00000180                : cpsw_ale.oer5f (.text.CpswAle_setAleCfg)
                      81f2efc0    00000180     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_config)
                      81f2f140    00000180     enet.aer5f : enet.oer5f (.text.Enet_validateIoctl)
                      81f2f2c0    00000180                : icssg.oer5f (.text.Icssg_pollTxTs)
                      81f2f440    00000180     enetphy.aer5f : vsc8514.oer5f (.text.Vsc8514_config)
                      81f2f5c0    00000180     libsysbm.a : memcpy32.S.obj (.text:memcpy)
                      81f2f740    0000017c     enet.aer5f : enet_rm.oer5f (.text.EnetRm_open)
                      81f2f8bc    00000004     --HOLE-- [fill = 00000000]
                      81f2f8c0    0000017c     udma.aer5f : udma_ch.oer5f (.text.Udma_chGetNum)
                      81f2fa3c    00000174     libc.a : fputs.c.obj (.text.fputs)
                      81f2fbb0    00000170     enet_example_utils_full_freertos.aer5f : enet_apputils_k3.oer5f (.text.EnetAppUtils_enableClocks)
                      81f2fd20    00000170     enet.aer5f : icssg_timesync.oer5f (.text.IcssgTimeSync_ioctl)
                      81f2fe90    0000016c     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_read2_v1)
                      81f2fffc    00000004     --HOLE-- [fill = 00000000]
                      81f30000    0000016c     udma.aer5f : udma_rm.oer5f (.text.Udma_rmAllocIrIntr)
                      81f3016c    00000004     --HOLE-- [fill = 00000000]
                      81f30170    0000016c                : udma_rm.oer5f (.text.Udma_rmAllocRxCh)
                      81f302dc    00000004     --HOLE-- [fill = 00000000]
                      81f302e0    0000016c                : udma_rm.oer5f (.text.Udma_rmAllocTxCh)
                      81f3044c    00000004     --HOLE-- [fill = 00000000]
                      81f30450    00000168     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_setPortRxDscpMap)
                      81f305b8    00000008     --HOLE-- [fill = 00000000]
                      81f305c0    00000168     enet.aer5f : cpsw_macport.oer5f (.text.CpswMacPort_setSgmiiInterface)
                      81f30728    00000008     --HOLE-- [fill = 00000000]
                      81f30730    00000168     udma.aer5f : udma_ch.oer5f (.text.Udma_chUnpair)
                      81f30898    00000008     --HOLE-- [fill = 00000000]
                      81f308a0    00000164     enet.aer5f : cpsw_macport.oer5f (.text.CpswMacPort_getTrafficShaping)
                      81f30a04    0000000c     --HOLE-- [fill = 00000000]
                      81f30a10    00000164     enet_multiport.oer5f (.text.EnetMp_togglePromisc)
                      81f30b74    0000000c     --HOLE-- [fill = 00000000]
                      81f30b80    00000164     enet.aer5f : mdio.oer5f (.text.Mdio_readRegC45)
                      81f30ce4    0000000c     --HOLE-- [fill = 00000000]
                      81f30cf0    00000164     udma.aer5f : udma_rm.oer5f (.text.Udma_rmAllocBlkCopyCh)
                      81f30e54    0000000c     --HOLE-- [fill = 00000000]
                      81f30e60    00000164                : udma_rm.oer5f (.text.Udma_rmAllocBlkCopyHcCh)
                      81f30fc4    0000000c     --HOLE-- [fill = 00000000]
                      81f30fd0    00000164                : udma_rm.oer5f (.text.Udma_rmAllocBlkCopyUhcCh)
                      81f31134    0000000c     --HOLE-- [fill = 00000000]
                      81f31140    00000164                : udma_rm.oer5f (.text.Udma_rmAllocRxHcCh)
                      81f312a4    0000000c     --HOLE-- [fill = 00000000]
                      81f312b0    00000164                : udma_rm.oer5f (.text.Udma_rmAllocRxUhcCh)
                      81f31414    0000000c     --HOLE-- [fill = 00000000]
                      81f31420    00000164                : udma_rm.oer5f (.text.Udma_rmAllocTxHcCh)
                      81f31584    0000000c     --HOLE-- [fill = 00000000]
                      81f31590    00000164                : udma_rm.oer5f (.text.Udma_rmAllocTxUhcCh)
                      81f316f4    0000000c     --HOLE-- [fill = 00000000]
                      81f31700    00000164     ti.kernel.freertos.aer5f : tasks.oer5f (.text.vTaskSwitchContext)
                      81f31864    0000000c     --HOLE-- [fill = 00000000]
                      81f31870    00000160     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_setPortTimeSyncConfig)
                      81f319d0    00000160     enet.aer5f : cpsw_macport.oer5f (.text.CpswMacPort_enableCptsPortEvents)
                      81f31b30    00000160                : cpsw_macport.oer5f (.text.CpswMacPort_enableSgmiiPort)
                      81f31c90    00000160     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_getRxChPeerId)
                      81f31df0    00000160     udma.aer5f : udma_proxy.oer5f (.text.Udma_proxyAlloc)
                      81f31f50    00000160     ti.kernel.freertos.aer5f : tasks.oer5f (.text.xTaskResumeAll)
                      81f320b0    0000015c     enet.aer5f : cpsw.oer5f (.text.Cpsw_openPortLinkWithPhy)
                      81f3220c    00000004     --HOLE-- [fill = 00000000]
                      81f32210    0000015c                : enet_rm.oer5f (.text.EnetRm_initRxObj)
                      81f3236c    00000004     --HOLE-- [fill = 00000000]
                      81f32370    0000015c                : enet_udma_priv.oer5f (.text.EnetUdma_memMgrInit)
                      81f324cc    00000004     --HOLE-- [fill = 00000000]
                      81f324d0    0000015c     udma.aer5f : udma_event.oer5f (.text.Udma_eventProgramSteering)
                      81f3262c    00000004     --HOLE-- [fill = 00000000]
                      81f32630    00000158     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_setVlanPolicerEntry)
                      81f32788    00000008     --HOLE-- [fill = 00000000]
                      81f32790    00000158     enet_multiport.oer5f (.text.EnetMp_init)
                      81f328e8    00000008     --HOLE-- [fill = 00000000]
                      81f328f0    00000158     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_setupNway)
                      81f32a48    00000008     --HOLE-- [fill = 00000000]
                      81f32a50    00000158     enet.aer5f : enet.oer5f (.text.Enet_open)
                      81f32ba8    00000008     --HOLE-- [fill = 00000000]
                      81f32bb0    00000154     enet_multiport.oer5f (.text.EnetMp_closeDma)
                      81f32d04    0000000c     --HOLE-- [fill = 00000000]
                      81f32d10    00000154     udma.aer5f : udma_rm.oer5f (.text.Udma_rmFreeExtCh)
                      81f32e64    0000000c     --HOLE-- [fill = 00000000]
                      81f32e70    00000150     enet_multiport.oer5f (.text.EnetMp_txTsCb)
                      81f32fc0    00000150     udma.aer5f : udma_event.oer5f (.text.Udma_eventFreeResource)
                      81f33110    0000014c     enet.aer5f : enet_udma.oer5f (.text.EnetDma_submitRxPktQ)
                      81f3325c    00000004     --HOLE-- [fill = 00000000]
                      81f33260    0000014c                : enet_udma.oer5f (.text.EnetDma_submitTxPktQ)
                      81f333ac    00000004     --HOLE-- [fill = 00000000]
                      81f333b0    0000014c                : enet.oer5f (.text.EnetMod_open)
                      81f334fc    00000004     --HOLE-- [fill = 00000000]
                      81f33500    0000014c                : enet.oer5f (.text.EnetPer_open)
                      81f3364c    00000004     --HOLE-- [fill = 00000000]
                      81f33650    0000014c                : enet_rm.oer5f (.text.EnetRm_initTxObj)
                      81f3379c    00000004     --HOLE-- [fill = 00000000]
                      81f337a0    0000014c     ti.osal.aer5f : MutexP_freertos.oer5f (.text.MutexP_create)
                      81f338ec    00000004     --HOLE-- [fill = 00000000]
                      81f338f0    00000148     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_setMacAddrPolicerEntry)
                      81f33a38    00000008     --HOLE-- [fill = 00000000]
                      81f33a40    00000148                : enet_udma_priv.oer5f (.text.EnetUdma_initRxFreeDescQ)
                      81f33b88    00000008     --HOLE-- [fill = 00000000]
                      81f33b90    00000148     udma.aer5f : udma_event.oer5f (.text.Udma_eventUnRegister)
                      81f33cd8    00000148     libc.a : _printfi.c.obj (.text.fcvt)
                      81f33e20    00000148            : setvbuf.c.obj (.text.setvbuf)
                      81f33f68    00000008     --HOLE-- [fill = 00000000]
                      81f33f70    00000144     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_getVlanMaskMuxFreeEntry)
                      81f340b4    0000000c     --HOLE-- [fill = 00000000]
                      81f340c0    00000144     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_readPolling_v1)
                      81f34204    0000000c     --HOLE-- [fill = 00000000]
                      81f34210    00000140     enet.aer5f : cpsw_intervlan.oer5f (.text.Cpsw_clearInterVlanRouteMultiEgress)
                      81f34350    00000140     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_getRxFlowCount)
                      81f34490    00000140                   : enet_soc.oer5f (.text.EnetSoc_getTxChCount)
                      81f345d0    00000140     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqIsVintRouteSet)
                      81f34710    00000140                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqVintDelete)
                      81f34850    00000140     ti.board.aer5f : board_ddr.oer5f (.text.Training2)
                      81f34990    00000140     libc.a : s_scalbn.c.obj (.text.scalbn)
                      81f34ad0    0000013c     enet.aer5f : cpsw_macport_intervlan.oer5f (.text.CpswMacPort_setCfg)
                      81f34c0c    00000004     --HOLE-- [fill = 00000000]
                      81f34c10    0000013c                : enet_phymdio_dflt.oer5f (.text.EnetPhyMdioDflt_writeC45)
                      81f34d4c    00000004     --HOLE-- [fill = 00000000]
                      81f34d50    0000013c     ti.drv.uart.aer5f : UART_stdio.oer5f (.text.UART_convertVal)
                      81f34e8c    00000004     --HOLE-- [fill = 00000000]
                      81f34e90    00000138     enet_multiport.oer5f (.text.EnetMp_resetStats)
                      81f34fc8    00000008     --HOLE-- [fill = 00000000]
                      81f34fd0    00000138     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_getTxChPeerId)
                      81f35108    00000008     --HOLE-- [fill = 00000000]
                      81f35110    00000138     sciclient.aer5f : sciclient_pm.oer5f (.text.Sciclient_pmQueryModuleClkFreq)
                      81f35248    00000008     --HOLE-- [fill = 00000000]
                      81f35250    00000138     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_dmTimerSetMicroSeconds)
                      81f35388    00000008     --HOLE-- [fill = 00000000]
                      81f35390    00000134     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_addUcastAddr)
                      81f354c4    0000000c     --HOLE-- [fill = 00000000]
                      81f354d0    00000134                : cpsw_ale.oer5f (.text.CpswAle_updateMcastHostPortMask)
                      81f35604    0000000c     --HOLE-- [fill = 00000000]
                      81f35610    00000134                : cpsw_hostport.oer5f (.text.CpswHostPort_getTrafficShaping)
                      81f35744    0000000c     --HOLE-- [fill = 00000000]
                      81f35750    00000134                : enet_phymdio_dflt.oer5f (.text.EnetPhyMdioDflt_writeC22)
                      81f35884    0000000c     --HOLE-- [fill = 00000000]
                      81f35890    00000134     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqVintAdd)
                      81f359c4    0000000c     --HOLE-- [fill = 00000000]
                      81f359d0    00000130     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getAleIPv6Entry_4G)
                      81f35b00    00000130                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getAleIPv6Entry_9G)
                      81f35c30    00000130     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_findIPv6Addr)
                      81f35d60    00000130                : cpsw_intervlan.oer5f (.text.Cpsw_validateClearInterVlanRouteMultiEgress)
                      81f35e90    00000130                : enet_phymdio_dflt.oer5f (.text.EnetPhyMdioDflt_readC45)
                      81f35fc0    00000130                : enet_udma_priv.oer5f (.text.EnetUdma_ringDequeue)
                      81f360f0    00000130                : enet_udma_priv.oer5f (.text.EnetUdma_ringEnqueue)
                      81f36220    00000130     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqCfgIsEventToVintMappingOnly)
                      81f36350    00000130     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_create)
                      81f36480    00000130     libc.a : _printfi.c.obj (.text._pconv_e)
                      81f365b0    00000130     ti.kernel.freertos.aer5f : tasks.oer5f (.text.vTaskDelete)
                      81f366e0    00000130                              : tasks.oer5f (.text.vTaskSuspend)
                      81f36810    0000012c     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_nwayWaitState)
                      81f3693c    00000004     --HOLE-- [fill = 00000000]
                      81f36940    0000012c     enet.aer5f : enet_rm.oer5f (.text.EnetRm_initMacObj)
                      81f36a6c    00000004     --HOLE-- [fill = 00000000]
                      81f36a70    00000128     ti.board.aer5f : am65xx_idk_pinmux.oer5f (.text.Board_pinmuxUpdate)
                      81f36b98    00000008     --HOLE-- [fill = 00000000]
                      81f36ba0    00000128     enet.aer5f : cpsw.oer5f (.text.Cpsw_getTxShortIpgCfg)
                      81f36cc8    00000008     --HOLE-- [fill = 00000000]
                      81f36cd0    00000128                : enet_udma.oer5f (.text.EnetDma_retrieveTxPktQ)
                      81f36df8    00000008     --HOLE-- [fill = 00000000]
                      81f36e00    00000128                : enet_phymdio_dflt.oer5f (.text.EnetPhyMdioDflt_readC22)
                      81f36f28    00000008     --HOLE-- [fill = 00000000]
                      81f36f30    00000128     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_getId)
                      81f37058    00000008     --HOLE-- [fill = 00000000]
                      81f37060    00000128                   : enetphy.oer5f (.text.EnetPhy_resetWaitState)
                      81f37188    00000008     --HOLE-- [fill = 00000000]
                      81f37190    00000128     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIaValidateMapping)
                      81f372b8    00000008     --HOLE-- [fill = 00000000]
                      81f372c0    00000128     udma.aer5f : udma_event.oer5f (.text.Udma_eventResetSteering)
                      81f373e8    00000008     --HOLE-- [fill = 00000000]
                      81f373f0    00000128                : udma_ring_common.oer5f (.text.Udma_ringMonAlloc)
                      81f37518    00000008     --HOLE-- [fill = 00000000]
                      81f37520    00000128     ti.kernel.freertos.aer5f : queue.oer5f (.text.xQueueGenericSendFromISR)
                      81f37648    00000008     --HOLE-- [fill = 00000000]
                      81f37650    00000124     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_getPortTimeSyncConfig)
                      81f37774    0000000c     --HOLE-- [fill = 00000000]
                      81f37780    00000124     enet.aer5f : cpsw_intervlan.oer5f (.text.Cpsw_ioctlInterVlan)
                      81f378a4    0000000c     --HOLE-- [fill = 00000000]
                      81f378b0    00000124     enet_example_utils_full_freertos.aer5f : enet_apputils_k3.oer5f (.text.EnetAppUtils_disableClocks)
                      81f379d4    0000000c     --HOLE-- [fill = 00000000]
                      81f379e0    00000124     enet.aer5f : enet_udma.oer5f (.text.EnetDma_retrieveRxPktQ)
                      81f37b04    0000000c     --HOLE-- [fill = 00000000]
                      81f37b10    00000124     udma.aer5f : udma.oer5f (.text.Udma_deinit)
                      81f37c34    0000000c     --HOLE-- [fill = 00000000]
                      81f37c40    00000124                : udma_rm.oer5f (.text.Udma_rmFreeEvent)
                      81f37d64    0000000c     --HOLE-- [fill = 00000000]
                      81f37d70    00000124                : udma_rm.oer5f (.text.Udma_rmFreeIrIntr)
                      81f37e94    0000000c     --HOLE-- [fill = 00000000]
                      81f37ea0    00000124                : udma_rm.oer5f (.text.Udma_rmFreeRxCh)
                      81f37fc4    0000000c     --HOLE-- [fill = 00000000]
                      81f37fd0    00000124                : udma_rm.oer5f (.text.Udma_rmFreeTxCh)
                      81f380f4    0000000c     --HOLE-- [fill = 00000000]
                      81f38100    00000124                : udma_rm.oer5f (.text.Udma_rmFreeVintr)
                      81f38224    0000000c     --HOLE-- [fill = 00000000]
                      81f38230    00000124     ti.kernel.freertos.aer5f : tasks.oer5f (.text.prvInitialiseNewTask)
                      81f38354    0000000c     --HOLE-- [fill = 00000000]
                      81f38360    00000120     enet.aer5f : enet_phymdio_dflt.oer5f (.text.EnetPhyMdioDflt_isAlive)
                      81f38480    00000120                : enet_phymdio_dflt.oer5f (.text.EnetPhyMdioDflt_isLinked)
                      81f385a0    00000120                : icssg.oer5f (.text.Icssg_pollHwQAsyncResp)
                      81f386c0    00000120     udma.aer5f : udma_rm.oer5f (.text.Udma_rmFreeBlkCopyCh)
                      81f387e0    00000120                : udma_rm.oer5f (.text.Udma_rmFreeBlkCopyHcCh)
                      81f38900    00000120                : udma_rm.oer5f (.text.Udma_rmFreeBlkCopyUhcCh)
                      81f38a20    00000120                : udma_rm.oer5f (.text.Udma_rmFreeRxHcCh)
                      81f38b40    00000120                : udma_rm.oer5f (.text.Udma_rmFreeRxUhcCh)
                      81f38c60    00000120                : udma_rm.oer5f (.text.Udma_rmFreeTxHcCh)
                      81f38d80    00000120                : udma_rm.oer5f (.text.Udma_rmFreeTxUhcCh)
                      81f38ea0    00000120     enet_multiport.oer5f (.text.main)
                      81f38fc0    0000011c     enet.aer5f : cpsw_macport.oer5f (.text.CpswMacPort_checkSgmiiStatus)
                      81f390dc    00000004     --HOLE-- [fill = 00000000]
                      81f390e0    0000011c                : cpsw_intervlan.oer5f (.text.Cpsw_setInterVlanGlobalConfig)
                      81f391fc    00000004     --HOLE-- [fill = 00000000]
                      81f39200    0000011c                : cpsw.oer5f (.text.Cpsw_setTxShortIpgCfg)
                      81f3931c    00000004     --HOLE-- [fill = 00000000]
                      81f39320    0000011c                : icssg.oer5f (.text.Icssg_setVlanAwareMode)
                      81f3943c    00000004     --HOLE-- [fill = 00000000]
                      81f39440    0000011c     ti.osal.aer5f : LoadP_freertos.oer5f (.text.LoadP_update)
                      81f3955c    00000004     --HOLE-- [fill = 00000000]
                      81f39560    0000011c     enet.aer5f : mdio.oer5f (.text.Mdio_handleIntr)
                      81f3967c    00000004     --HOLE-- [fill = 00000000]
                      81f39680    00000118                : cpsw_ale.oer5f (.text.CpswAle_getBcastMcastLimit)
                      81f39798    00000008     --HOLE-- [fill = 00000000]
                      81f397a0    00000118                : cpsw_macport.oer5f (.text.CpswMacPort_setSwitchTxSched)
                      81f398b8    00000008     --HOLE-- [fill = 00000000]
                      81f398c0    00000118                : cpsw_intervlan.oer5f (.text.Cpsw_setInterVlanAlePolicerParams)
                      81f399d8    00000008     --HOLE-- [fill = 00000000]
                      81f399e0    00000118     enet_multiport.oer5f (.text.EnetMp_createClock)
                      81f39af8    00000008     --HOLE-- [fill = 00000000]
                      81f39b00    00000118     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_start)
                      81f39c18    00000008     --HOLE-- [fill = 00000000]
                      81f39c20    00000118     udma.aer5f : udma_ch.oer5f (.text.Udma_chClose)
                      81f39d38    00000008     --HOLE-- [fill = 00000000]
                      81f39d40    00000118     ti.drv.pruss.aer5f : pruicss_drv.oer5f (.text.pruicss_get_mem_info)
                      81f39e58    00000118     libclang_rt.builtins.a : udivmoddi4.S.obj (.text)
                      81f39f70    00000114     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_getPortRxDscpMap)
                      81f3a084    0000000c     --HOLE-- [fill = 00000000]
                      81f3a090    00000114     enet.aer5f : cpsw_macport.oer5f (.text.CpswMacPort_checkSgmiiAutoNegStatus)
                      81f3a1a4    0000000c     --HOLE-- [fill = 00000000]
                      81f3a1b0    00000114                : enet_rm.oer5f (.text.EnetRm_delCoreAttached)
                      81f3a2c4    0000000c     --HOLE-- [fill = 00000000]
                      81f3a2d0    00000114                : icssg_timesync.oer5f (.text.IcssgTimeSync_open)
                      81f3a3e4    0000000c     --HOLE-- [fill = 00000000]
                      81f3a3f0    00000114     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_v1_readData)
                      81f3a504    0000000c     --HOLE-- [fill = 00000000]
                      81f3a510    00000114                       : UART_v1.oer5f (.text.UART_writeData_v1)
                      81f3a624    0000000c     --HOLE-- [fill = 00000000]
                      81f3a630    00000114     udma.aer5f : udma_ring_common.oer5f (.text.Udma_ringCheckParams)
                      81f3a744    0000000c     --HOLE-- [fill = 00000000]
                      81f3a750    00000110     enet_multiport.oer5f (.text.EnetMp_initRxReadyPktQ)
                      81f3a860    00000110     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_allocProxy)
                      81f3a970    0000010c     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_setAleVlanUnicastAddrEntry_4G)
                      81f3aa7c    00000004     --HOLE-- [fill = 00000000]
                      81f3aa80    0000010c                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_setAleVlanUnicastAddrEntry_9G)
                      81f3ab8c    00000004     --HOLE-- [fill = 00000000]
                      81f3ab90    0000010c     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_getPolicer)
                      81f3ac9c    00000004     --HOLE-- [fill = 00000000]
                      81f3aca0    0000010c                : cpsw_macport_intervlan.oer5f (.text.CpswMacPort_setRoute)
                      81f3adac    00000004     --HOLE-- [fill = 00000000]
                      81f3adb0    0000010c                : enet_queue.oer5f (.text.EnetQueue_append)
                      81f3aebc    00000004     --HOLE-- [fill = 00000000]
                      81f3aec0    0000010c     sciclient.aer5f : sciclient_pm.oer5f (.text.Sciclient_pmSetModuleClkFreq)
                      81f3afcc    00000004     --HOLE-- [fill = 00000000]
                      81f3afd0    0000010c                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmTranslateIntOutput)
                      81f3b0dc    00000004     --HOLE-- [fill = 00000000]
                      81f3b0e0    0000010c                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmTranslateIrqInput)
                      81f3b1ec    00000004     --HOLE-- [fill = 00000000]
                      81f3b1f0    0000010c     udma.aer5f : udma_rm.oer5f (.text.Udma_rmAllocFreeRing)
                      81f3b2fc    00000004     --HOLE-- [fill = 00000000]
                      81f3b300    00000108     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_findCommonCaps)
                      81f3b408    00000008     --HOLE-- [fill = 00000000]
                      81f3b410    00000108     enet.aer5f : icssg_timesync.oer5f (.text.IcssgTimeSync_adjustClock)
                      81f3b518    00000008     --HOLE-- [fill = 00000000]
                      81f3b520    00000108     sciclient.aer5f : sciclient_secureproxy.oer5f (.text.Sciclient_sendMessage)
                      81f3b628    00000008     --HOLE-- [fill = 00000000]
                      81f3b630    00000104     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_setAleIPv4Entry_4G)
                      81f3b734    0000000c     --HOLE-- [fill = 00000000]
                      81f3b740    00000104                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_setAleIPv4Entry_9G)
                      81f3b844    0000000c     --HOLE-- [fill = 00000000]
                      81f3b850    00000104     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_setPortMirrorConfig)
                      81f3b954    0000000c     --HOLE-- [fill = 00000000]
                      81f3b960    00000104     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_findCommon1000Caps)
                      81f3ba64    0000000c     --HOLE-- [fill = 00000000]
                      81f3ba70    00000104     enet.aer5f : enet_udma.oer5f (.text.EnetUdma_open)
                      81f3bb74    0000000c     --HOLE-- [fill = 00000000]
                      81f3bb80    00000104                : icssg_utils.oer5f (.text.IcssgUtils_downloadFirmware)
                      81f3bc84    0000000c     --HOLE-- [fill = 00000000]
                      81f3bc90    00000104     udma.aer5f : udma_event.oer5f (.text.Udma_eventCheckUnRegister)
                      81f3bd94    0000000c     --HOLE-- [fill = 00000000]
                      81f3bda0    00000104     ti.kernel.freertos.aer5f : tasks.oer5f (.text.vTaskPriorityDisinheritAfterTimeout)
                      81f3bea4    0000000c     --HOLE-- [fill = 00000000]
                      81f3beb0    00000104                              : tasks.oer5f (.text.xTaskPriorityInherit)
                      81f3bfb4    0000000c     --HOLE-- [fill = 00000000]
                      81f3bfc0    00000100     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_setAleUnicastAddrEntry_4G)
                      81f3c0c0    00000100                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_setAleUnicastAddrEntry_9G)
                      81f3c1c0    00000100                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_setAleVlanMcastAddrEntry_4G)
                      81f3c2c0    00000100                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_setAleVlanMcastAddrEntry_9G)
                      81f3c3c0    00000100     enet.aer5f : enet_hostport_udma.oer5f (.text.EnetHostPortDma_open)
                      81f3c4c0    00000100     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_rmwReg)
                      81f3c5c0    00000100     enet.aer5f : enet.oer5f (.text.Enet_ioctl)
                      81f3c6c0    00000100     udma.aer5f : udma_proxy.oer5f (.text.Udma_proxyConfig)
                      81f3c7c0    00000100     ti.kernel.freertos.aer5f : queue.oer5f (.text.xQueueGiveFromISR)
                      81f3c8c0    000000fc     ti.csl.aer5f : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_getInterVLANCfg)
                      81f3c9bc    00000004     --HOLE-- [fill = 00000000]
                      81f3c9c0    000000fc     enet_example_utils_full_freertos.aer5f : enet_apputils_k3.oer5f (.text.EnetAppUtils_setDeviceState)
                      81f3cabc    00000004     --HOLE-- [fill = 00000000]
                      81f3cac0    000000fc     enet.aer5f : icssg.oer5f (.text.Icssg_configMacPortDfltVlanId)
                      81f3cbbc    00000004     --HOLE-- [fill = 00000000]
                      81f3cbc0    000000fc                : icssg.oer5f (.text.Icssg_registerEventCb)
                      81f3ccbc    00000004     --HOLE-- [fill = 00000000]
                      81f3ccc0    000000fc     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_servicePrepareHeader)
                      81f3cdbc    00000004     --HOLE-- [fill = 00000000]
                      81f3cdc0    000000fc     enetphy.aer5f : vsc8514.oer5f (.text.Vsc8514_writeMicroCmd)
                      81f3cebc    00000004     --HOLE-- [fill = 00000000]
                      81f3cec0    000000f8     ti.csl.aer5f : csl_vim.oer5f (.text.CSL_vimCfgIntr)
                      81f3cfb8    00000008     --HOLE-- [fill = 00000000]
                      81f3cfc0    000000f8     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_setInterVlanConfig)
                      81f3d0b8    00000008     --HOLE-- [fill = 00000000]
                      81f3d0c0    000000f8                : cpsw.oer5f (.text.Cpsw_handleMdioLinkStateChange)
                      81f3d1b8    00000008     --HOLE-- [fill = 00000000]
                      81f3d1c0    000000f8     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_tick)
                      81f3d2b8    00000008     --HOLE-- [fill = 00000000]
                      81f3d2c0    000000f8     enet.aer5f : enet_rm.oer5f (.text.EnetRm_allocInternalRxFlowIdx)
                      81f3d3b8    00000008     --HOLE-- [fill = 00000000]
                      81f3d3c0    000000f8     sciclient.aer5f : sciclient_pm.oer5f (.text.Sciclient_pmGetModuleState)
                      81f3d4b8    00000008     --HOLE-- [fill = 00000000]
                      81f3d4c0    000000f8                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrGetOutp)
                      81f3d5b8    00000008     --HOLE-- [fill = 00000000]
                      81f3d5c0    000000f8     udma.aer5f : udma_ch.oer5f (.text.Udma_chPair)
                      81f3d6b8    00000008     --HOLE-- [fill = 00000000]
                      81f3d6c0    000000f4     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_setAleMcastAddrEntry_4G)
                      81f3d7b4    0000000c     --HOLE-- [fill = 00000000]
                      81f3d7c0    000000f4                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_setAleMcastAddrEntry_9G)
                      81f3d8b4    0000000c     --HOLE-- [fill = 00000000]
                      81f3d8c0    000000f4                  : csl_cpsw.oer5f (.text.CSL_CPSW_setCpswControlReg)
                      81f3d9b4    0000000c     --HOLE-- [fill = 00000000]
                      81f3d9c0    000000f4     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_findAddr)
                      81f3dab4    0000000c     --HOLE-- [fill = 00000000]
                      81f3dac0    000000f4                : cpsw_stats.oer5f (.text.CpswStats_resetMacStats)
                      81f3dbb4    0000000c     --HOLE-- [fill = 00000000]
                      81f3dbc0    000000f4                : cpsw.oer5f (.text.Cpsw_setDfltThreadCfg)
                      81f3dcb4    0000000c     --HOLE-- [fill = 00000000]
                      81f3dcc0    000000f4                : icssg_utils.oer5f (.text.IcssgUtils_checkPortMode)
                      81f3ddb4    0000000c     --HOLE-- [fill = 00000000]
                      81f3ddc0    000000f4                : icssg_utils.oer5f (.text.IcssgUtils_disablePruss)
                      81f3deb4    0000000c     --HOLE-- [fill = 00000000]
                      81f3dec0    000000f4     udma.aer5f : udma_ring_common.oer5f (.text.Udma_ringMonConfig)
                      81f3dfb4    0000000c     --HOLE-- [fill = 00000000]
                      81f3dfc0    000000f0     ti.csl.aer5f : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_setAleOutVlanEntry_9G)
                      81f3e0b0    000000f0                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_setAleVlanEntry_9G)
                      81f3e1a0    000000f0     enet.aer5f : enet_hostport_udma.oer5f (.text.EnetHostPortDma_close)
                      81f3e290    000000f0                : enet_utils.oer5f (.text.EnetUtils_macToPhyMii)
                      81f3e380    000000f0                : enet.oer5f (.text.Enet_init)
                      81f3e470    000000f0                : icssg.oer5f (.text.Icssg_periodicTick)
                      81f3e560    000000f0                : mdio.oer5f (.text.Mdio_writeRegC45)
                      81f3e650    000000f0     udma.aer5f : udma_rm.oer5f (.text.Udma_rmFreeVintrBit)
                      81f3e740    000000f0     ti.kernel.freertos.aer5f : queue.oer5f (.text.xQueueGenericCreateStatic)
                      81f3e830    000000f0                              : queue.oer5f (.text.xQueueReceiveFromISR)
                      81f3e920    000000ec     ti.board.aer5f : am65xx_idk.oer5f (.text.Board_init)
                      81f3ea0c    00000004     --HOLE-- [fill = 00000000]
                      81f3ea10    000000ec     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_findIPv4Addr)
                      81f3eafc    00000004     --HOLE-- [fill = 00000000]
                      81f3eb00    000000ec                : cpsw_hostport.oer5f (.text.CpswHostPort_setDscpPriority)
                      81f3ebec    00000004     --HOLE-- [fill = 00000000]
                      81f3ebf0    000000ec                : cpsw_macport.oer5f (.text.CpswMacPort_setDscpPriority)
                      81f3ecdc    00000004     --HOLE-- [fill = 00000000]
                      81f3ece0    000000ec     enet_example_utils_full_freertos.aer5f : enet_apputils.oer5f (.text.EnetAppUtils_initResourceConfig)
                      81f3edcc    00000004     --HOLE-- [fill = 00000000]
                      81f3edd0    000000ec                                            : enet_apputils.oer5f (.text.EnetAppUtils_updatemacResPart)
                      81f3eebc    00000004     --HOLE-- [fill = 00000000]
                      81f3eec0    000000ec     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_memMgrAllocTdCqRingMemObj)
                      81f3efac    00000004     --HOLE-- [fill = 00000000]
                      81f3efb0    000000ec     udma.aer5f : udma_rm.oer5f (.text.Udma_rmAllocProxy)
                      81f3f09c    00000004     --HOLE-- [fill = 00000000]
                      81f3f0a0    000000ec                : udma_rm.oer5f (.text.Udma_rmAllocRingMon)
                      81f3f18c    00000004     --HOLE-- [fill = 00000000]
                      81f3f190    000000ec                : udma_rm.oer5f (.text.Udma_rmFreeFreeRing)
                      81f3f27c    00000004     --HOLE-- [fill = 00000000]
                      81f3f280    000000ec     ti.kernel.freertos.aer5f : tasks.oer5f (.text.prvAddNewTaskToReadyList)
                      81f3f36c    00000004     --HOLE-- [fill = 00000000]
                      81f3f370    000000e8     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_findingState)
                      81f3f458    00000008     --HOLE-- [fill = 00000000]
                      81f3f460    000000e8     enet.aer5f : enet.oer5f (.text.Enet_getDmaHandle)
                      81f3f548    00000008     --HOLE-- [fill = 00000000]
                      81f3f550    000000e8                : icssg_utils.oer5f (.text.IcssgUtils_enablePruss)
                      81f3f638    00000008     --HOLE-- [fill = 00000000]
                      81f3f640    000000e8                : icssg_utils.oer5f (.text.IcssgUtils_getSliceNum)
                      81f3f728    00000008     --HOLE-- [fill = 00000000]
                      81f3f730    000000e8     udma.aer5f : udma_ring_common.oer5f (.text.Udma_ringFree)
                      81f3f818    00000008     --HOLE-- [fill = 00000000]
                      81f3f820    000000e8                : udma_ring_common.oer5f (.text.Udma_ringMonFree)
                      81f3f908    00000008     --HOLE-- [fill = 00000000]
                      81f3f910    000000e8     ti.kernel.freertos.aer5f : port.oer5f (.text.pxPortInitialiseStack)
                      81f3f9f8    00000008     --HOLE-- [fill = 00000000]
                      81f3fa00    000000e8                              : tasks.oer5f (.text.xTaskPriorityDisinherit)
                      81f3fae8    00000008     --HOLE-- [fill = 00000000]
                      81f3faf0    000000e4     enet.aer5f : cpsw_macport.oer5f (.text.CpswMacPort_setInterface)
                      81f3fbd4    0000000c     --HOLE-- [fill = 00000000]
                      81f3fbe0    000000e4                : cpsw.oer5f (.text.Cpsw_initCfg)
                      81f3fcc4    0000000c     --HOLE-- [fill = 00000000]
                      81f3fcd0    000000e4     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_setTxFifoDepth)
                      81f3fdb4    0000000c     --HOLE-- [fill = 00000000]
                      81f3fdc0    000000e4     enet_multiport.oer5f (.text.EnetMp_closePort)
                      81f3fea4    0000000c     --HOLE-- [fill = 00000000]
                      81f3feb0    000000e4     enet_multiport.oer5f (.text.EnetMp_createRxTask)
                      81f3ff94    0000000c     --HOLE-- [fill = 00000000]
                      81f3ffa0    000000e4     enet.aer5f : enet_rm.oer5f (.text.EnetRm_allocResourceNode)
                      81f40084    0000000c     --HOLE-- [fill = 00000000]
                      81f40090    000000e4                : icssg_tas.oer5f (.text.IcssgTas_setTriggerForListChange)
                      81f40174    0000000c     --HOLE-- [fill = 00000000]
                      81f40180    000000e4                : icssg.oer5f (.text.Icssg_openEnetPhy)
                      81f40264    0000000c     --HOLE-- [fill = 00000000]
                      81f40270    000000e4     ti.csl.aer5f : uart.oer5f (.text.UARTIntDisable)
                      81f40354    0000000c     --HOLE-- [fill = 00000000]
                      81f40360    000000e4     ti.kernel.freertos.aer5f : tasks.oer5f (.text.prvAddCurrentTaskToDelayedList)
                      81f40444    0000000c     --HOLE-- [fill = 00000000]
                      81f40450    000000e4                              : tasks.oer5f (.text.vTaskStartScheduler)
                      81f40534    0000000c     --HOLE-- [fill = 00000000]
                      81f40540    000000e0     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_addDefaultEntries)
                      81f40620    000000e0                : cpsw_ale.oer5f (.text.CpswAle_configThreadPolicer)
                      81f40700    000000e0     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_isPhyLinked)
                      81f407e0    000000e0                   : enetphy.oer5f (.text.EnetPhy_linkWaitState)
                      81f408c0    000000e0                   : enetphy.oer5f (.text.EnetPhy_setNextState)
                      81f409a0    000000e0     enet.aer5f : enet_rm.oer5f (.text.EnetRm_allocRxFlowIdx)
                      81f40a80    000000e0                : mdio.oer5f (.text.Mdio_setupNormalMode)
                      81f40b60    000000e0     ti.csl.aer5f : uart.oer5f (.text.UARTIntEnable)
                      81f40c40    000000e0     udma.aer5f : udma_rm.oer5f (.text.Udma_rmAllocEvent)
                      81f40d20    000000e0                : udma_rm.oer5f (.text.Udma_rmAllocVintr)
                      81f40e00    000000e0     ti.kernel.freertos.aer5f : timers.oer5f (.text.prvSwitchTimerLists)
                      81f40ee0    000000dc     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.text.EnetMem_allocEthPkt)
                      81f40fbc    00000004     --HOLE-- [fill = 00000000]
                      81f40fc0    000000dc     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrInpIsFree)
                      81f4109c    00000004     --HOLE-- [fill = 00000000]
                      81f410a0    000000dc     udma.aer5f : udma_ring_common.oer5f (.text.Udma_ringQueueRaw)
                      81f4117c    00000004     --HOLE-- [fill = 00000000]
                      81f41180    000000dc                : udma_rm.oer5f (.text.Udma_rmAllocVintrBit)
                      81f4125c    00000004     --HOLE-- [fill = 00000000]
                      81f41260    000000dc                : udma_rm.oer5f (.text.Udma_rmGetSciclientDefaultBoardCfgRmRange)
                      81f4133c    00000004     --HOLE-- [fill = 00000000]
                      81f41340    000000d8     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_setEtherTypePolicerEntry)
                      81f41418    00000008     --HOLE-- [fill = 00000000]
                      81f41420    000000d8                : enet_rm.oer5f (.text.EnetRm_freeMacAddr)
                      81f414f8    00000008     --HOLE-- [fill = 00000000]
                      81f41500    000000d8                : enet_udma_priv.oer5f (.text.EnetUdma_ringProxyEnqueue)
                      81f415d8    00000008     --HOLE-- [fill = 00000000]
                      81f415e0    000000d8                : icssg_timesync.oer5f (.text.IcssgTimeSync_getClockTime)
                      81f416b8    00000008     --HOLE-- [fill = 00000000]
                      81f416c0    000000d8                : icssg.oer5f (.text.Icssg_initCfg)
                      81f41798    00000008     --HOLE-- [fill = 00000000]
                      81f417a0    000000d8     udma.aer5f : udma_event.oer5f (.text.Udma_eventIsrFxn)
                      81f41878    00000008     --HOLE-- [fill = 00000000]
                      81f41880    000000d8     ti.kernel.freertos.aer5f : tasks.oer5f (.text.xTaskCreateStatic)
                      81f41958    00000008     --HOLE-- [fill = 00000000]
                      81f41960    000000d4     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_setOuiPolicerEntry)
                      81f41a34    0000000c     --HOLE-- [fill = 00000000]
                      81f41a40    000000d4     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_setClkDelay)
                      81f41b14    0000000c     --HOLE-- [fill = 00000000]
                      81f41b20    000000d4                   : enetphy.oer5f (.text.EnetPhy_isAlive)
                      81f41bf4    0000000c     --HOLE-- [fill = 00000000]
                      81f41c00    000000d4     enet.aer5f : enet.oer5f (.text.Enet_registerEventCb)
                      81f41cd4    0000000c     --HOLE-- [fill = 00000000]
                      81f41ce0    000000d4                : icssg_utils.oer5f (.text.IcssgUtils_classiDisable)
                      81f41db4    0000000c     --HOLE-- [fill = 00000000]
                      81f41dc0    000000d4                : icssg_utils.oer5f (.text.IcssgUtils_configFilter3)
                      81f41e94    0000000c     --HOLE-- [fill = 00000000]
                      81f41ea0    000000d4                : icssg_utils.oer5f (.text.IcssgUtils_sendFdbCmd)
                      81f41f74    0000000c     --HOLE-- [fill = 00000000]
                      81f41f80    000000d4                : icssg_utils.oer5f (.text.Icssg_R30SendAsyncIoctl)
                      81f42054    0000000c     --HOLE-- [fill = 00000000]
                      81f42060    000000d4                : icssg.oer5f (.text.Icssg_setVlanUnawareMode)
                      81f42134    0000000c     --HOLE-- [fill = 00000000]
                      81f42140    000000d4     udma.aer5f : udma_ring_common.oer5f (.text.Udma_ringDequeueRaw)
                      81f42214    0000000c     --HOLE-- [fill = 00000000]
                      81f42220    000000d4                : udma_rm.oer5f (.text.Udma_rmFreeRingMon)
                      81f422f4    0000000c     --HOLE-- [fill = 00000000]
                      81f42300    000000d4     ti.kernel.freertos.aer5f : queue.oer5f (.text.prvCopyDataToQueue)
                      81f423d4    0000000c     --HOLE-- [fill = 00000000]
                      81f423e0    000000d0     enet.aer5f : cpsw_hostport.oer5f (.text.CpswHostPort_getFifoStats)
                      81f424b0    000000d0     enetphy.aer5f : dp83822.oer5f (.text.Dp83822_enableAutoMdix)
                      81f42580    000000d0     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.text.EnetBoard_configMIIBoard)
                      81f42650    000000d0     enet.aer5f : enet.oer5f (.text.EnetMod_ioctl)
                      81f42720    000000d0                : enet_osal_dflt.oer5f (.text.EnetOsalDflt_initCfg)
                      81f427f0    000000d0                : enet.oer5f (.text.EnetPer_ioctl)
                      81f428c0    000000d0                : enet_rm.oer5f (.text.EnetRm_getFreeQ)
                      81f42990    000000d0                : enet_udma_priv.oer5f (.text.EnetUdma_txCqIsr)
                      81f42a60    000000d0     sciclient.aer5f : sciclient_pm.oer5f (.text.Sciclient_pmGetModuleClkFreq)
                      81f42b30    000000d0     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_writePolling_v1)
                      81f42c00    000000cc     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_setAlePortControlReg)
                      81f42ccc    00000004     --HOLE-- [fill = 00000000]
                      81f42cd0    000000cc     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_addIPv6Addr)
                      81f42d9c    00000004     --HOLE-- [fill = 00000000]
                      81f42da0    000000cc                : cpsw_ale.oer5f (.text.CpswAle_setVlanMcastPortMask)
                      81f42e6c    00000004     --HOLE-- [fill = 00000000]
                      81f42e70    000000cc     enet_example_utils_full_freertos.aer5f : enet_apputils.oer5f (.text.EnetAppUtils_reduceCoreMacAllocation)
                      81f42f3c    00000004     --HOLE-- [fill = 00000000]
                      81f42f40    000000cc     enet.aer5f : enet_rm.oer5f (.text.EnetRm_getCoreResourceInfo)
                      81f4300c    00000004     --HOLE-- [fill = 00000000]
                      81f43010    000000cc                : enet_udma_priv.oer5f (.text.EnetUdma_flushRxFlowRing)
                      81f430dc    00000004     --HOLE-- [fill = 00000000]
                      81f430e0    000000cc                : enet_udma_priv.oer5f (.text.EnetUdma_flushTxChRing)
                      81f431ac    00000004     --HOLE-- [fill = 00000000]
                      81f431b0    000000cc                : enet_udma_priv.oer5f (.text.EnetUdma_rxCqIsr)
                      81f4327c    00000004     --HOLE-- [fill = 00000000]
                      81f43280    000000cc                : enet.oer5f (.text.Enet_getHandles)
                      81f4334c    00000004     --HOLE-- [fill = 00000000]
                      81f43350    000000cc     sciclient.aer5f : sciclient_pm.oer5f (.text.Sciclient_pmGetModuleClkNumParent)
                      81f4341c    00000004     --HOLE-- [fill = 00000000]
                      81f43420    000000cc                     : sciclient_pm.oer5f (.text.Sciclient_pmGetModuleClkParent)
                      81f434ec    00000004     --HOLE-- [fill = 00000000]
                      81f434f0    000000cc     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_dmTimerInitObj)
                      81f435bc    00000004     --HOLE-- [fill = 00000000]
                      81f435c0    000000cc     udma.aer5f : udma_rm.oer5f (.text.Udma_rmFreeProxy)
                      81f4368c    000000cc     libc.a : getdevice.c.obj (.text.getdevice)
                      81f43758    00000008     --HOLE-- [fill = 00000000]
                      81f43760    000000cc     ti.kernel.freertos.aer5f : heap_4.oer5f (.text.vPortFree)
                      81f4382c    00000004     --HOLE-- [fill = 00000000]
                      81f43830    000000c8     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_findOuiAddr)
                      81f438f8    00000008     --HOLE-- [fill = 00000000]
                      81f43900    000000c8                : cpsw_ale.oer5f (.text.CpswAle_getFreeIPv6Entry)
                      81f439c8    00000008     --HOLE-- [fill = 00000000]
                      81f439d0    000000c8                : cpsw_ale.oer5f (.text.CpswAle_setIPv6PolicerEntry)
                      81f43a98    00000008     --HOLE-- [fill = 00000000]
                      81f43aa0    000000c8                : cpsw_macport.oer5f (.text.CpswMacPort_isSgmiiSupported)
                      81f43b68    00000008     --HOLE-- [fill = 00000000]
                      81f43b70    000000c8     enet_example_utils_full_freertos.aer5f : enet_apputils_k3.oer5f (.text.EnetAppUtils_mcuMmrCtrl)
                      81f43c38    00000008     --HOLE-- [fill = 00000000]
                      81f43c40    000000c8     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_nwayStartState)
                      81f43d08    00000008     --HOLE-- [fill = 00000000]
                      81f43d10    000000c8                   : generic_phy.oer5f (.text.GenericPhy_readExtReg)
                      81f43dd8    00000008     --HOLE-- [fill = 00000000]
                      81f43de0    000000c8     enet.aer5f : icssg_utils.oer5f (.text.IcssgUtils_getHwqNum)
                      81f43ea8    00000008     --HOLE-- [fill = 00000000]
                      81f43eb0    000000c8                : icssg.oer5f (.text.Icssg_closeEnetPhy)
                      81f43f78    00000008     --HOLE-- [fill = 00000000]
                      81f43f80    000000c8     sciclient.aer5f : sciclient_pm.oer5f (.text.Sciclient_pmModuleGetClkStatus)
                      81f44048    00000008     --HOLE-- [fill = 00000000]
                      81f44050    000000c8     ti.csl.aer5f : uart.oer5f (.text.UARTSubConfigTCRTLRModeEn)
                      81f44118    00000008     --HOLE-- [fill = 00000000]
                      81f44120    000000c8     udma.aer5f : udma_ch.oer5f (.text.Udma_chDisable)
                      81f441e8    00000008     --HOLE-- [fill = 00000000]
                      81f441f0    000000c4     ti.csl.aer5f : csl_cpts.oer5f (.text.CSL_CPTS_setCntlReg)
                      81f442b4    0000000c     --HOLE-- [fill = 00000000]
                      81f442c0    000000c4     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_setIPSrcDstPolicerEntry)
                      81f44384    0000000c     --HOLE-- [fill = 00000000]
                      81f44390    000000c4                : enet.oer5f (.text.EnetMod_close)
                      81f44454    0000000c     --HOLE-- [fill = 00000000]
                      81f44460    000000c4                : icssg.oer5f (.text.Icssg_poll)
                      81f44524    0000000c     --HOLE-- [fill = 00000000]
                      81f44530    000000c4     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_ISR)
                      81f445f4    0000000c     --HOLE-- [fill = 00000000]
                      81f44600    000000c4     udma.aer5f : udma_proxy.oer5f (.text.Udma_proxyFree)
                      81f446c4    0000000c     --HOLE-- [fill = 00000000]
                      81f446d0    000000c4     ti.kernel.freertos.aer5f : tasks.oer5f (.text.eTaskGetState)
                      81f44794    0000000c     --HOLE-- [fill = 00000000]
                      81f447a0    000000c4                              : queue.oer5f (.text.prvUnlockQueue)
                      81f44864    0000000c     --HOLE-- [fill = 00000000]
                      81f44870    000000c4                              : tasks.oer5f (.text.vTaskGetInfo)
                      81f44934    0000000c     --HOLE-- [fill = 00000000]
                      81f44940    000000c4                              : tasks.oer5f (.text.xTaskRemoveFromEventList)
                      81f44a04    0000000c     --HOLE-- [fill = 00000000]
                      81f44a10    000000c0     ti.board.aer5f : board_mmr.oer5f (.text.Board_unlockMMR)
                      81f44ad0    000000c0     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_getCpswControlReg)
                      81f44b90    000000c0     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_addIPv4Addr)
                      81f44c50    000000c0                : cpsw_ale.oer5f (.text.CpswAle_setRxFilterMcast)
                      81f44d10    000000c0                : cpsw_cpts.oer5f (.text.CpswCpts_calcPpmVal)
                      81f44dd0    000000c0     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.text.EnetBoard_setEnetControl)
                      81f44e90    000000c0     enet.aer5f : enet_udma.oer5f (.text.EnetDma_initRxChParams)
                      81f44f50    000000c0                : enet.oer5f (.text.Enet_poll)
                      81f45010    000000c0                : icssg.oer5f (.text.Icssg_ioctlSetPortState)
                      81f450d0    000000c0     udma.aer5f : udma_ch.oer5f (.text.Udma_chEnable)
                      81f45190    000000bc     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_findEtherType)
                      81f4524c    00000004     --HOLE-- [fill = 00000000]
                      81f45250    000000bc                : cpsw_macport_intervlan.oer5f (.text.CpswMacPort_findRouteId)
                      81f4530c    00000004     --HOLE-- [fill = 00000000]
                      81f45310    000000bc                : cpsw_macport_intervlan.oer5f (.text.CpswMacPort_getFreeRoutes)
                      81f453cc    00000004     --HOLE-- [fill = 00000000]
                      81f453d0    000000bc     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_enableAutoMdix)
                      81f4548c    00000004     --HOLE-- [fill = 00000000]
                      81f45490    000000bc     enet.aer5f : enet.oer5f (.text.EnetPer_periodicTick)
                      81f4554c    00000004     --HOLE-- [fill = 00000000]
                      81f45550    000000bc                : enet_rm.oer5f (.text.EnetRm_freeResource)
                      81f4560c    00000004     --HOLE-- [fill = 00000000]
                      81f45610    000000bc                : enet_rm.oer5f (.text.EnetRm_freeTxChNum)
                      81f456cc    00000004     --HOLE-- [fill = 00000000]
                      81f456d0    000000bc                : enet_rm.oer5f (.text.EnetRm_validateResPartInfo)
                      81f4578c    00000004     --HOLE-- [fill = 00000000]
                      81f45790    000000bc                : icssg_utils.oer5f (.text.IcssgUtils_createPruss)
                      81f4584c    00000004     --HOLE-- [fill = 00000000]
                      81f45850    000000bc     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_procLineStatusErr)
                      81f4590c    000000bc     libc.a : _printfi.c.obj (.text._mcpy)
                      81f459c8    00000008     --HOLE-- [fill = 00000000]
                      81f459d0    000000bc     ti.kernel.freertos.aer5f : tasks.oer5f (.text.xTaskCheckForTimeOut)
                      81f45a8c    00000004     --HOLE-- [fill = 00000000]
                      81f45a90    000000b8     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_addMacAddrEntry)
                      81f45b48    00000008     --HOLE-- [fill = 00000000]
                      81f45b50    000000b8                : cpsw_ale.oer5f (.text.CpswAle_addOuiAddr)
                      81f45c08    00000008     --HOLE-- [fill = 00000000]
                      81f45c10    000000b8                : cpsw_ale.oer5f (.text.CpswAle_getPolicerIndex)
                      81f45cc8    00000008     --HOLE-- [fill = 00000000]
                      81f45cd0    000000b8                : cpsw_ale.oer5f (.text.CpswAle_setIPv4PolicerEntry)
                      81f45d88    00000008     --HOLE-- [fill = 00000000]
                      81f45d90    000000b8                : cpsw_hostport.oer5f (.text.CpswHostPort_setRxPriority)
                      81f45e48    00000008     --HOLE-- [fill = 00000000]
                      81f45e50    000000b8                : cpsw_hostport.oer5f (.text.CpswHostPort_setTxPriority)
                      81f45f08    00000008     --HOLE-- [fill = 00000000]
                      81f45f10    000000b8                : cpsw_macport.oer5f (.text.CpswMacPort_setRxPriority)
                      81f45fc8    00000008     --HOLE-- [fill = 00000000]
                      81f45fd0    000000b8                : cpsw_macport.oer5f (.text.CpswMacPort_setTxPriority)
                      81f46088    00000008     --HOLE-- [fill = 00000000]
                      81f46090    000000b8     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_setOutputImpedance)
                      81f46148    00000008     --HOLE-- [fill = 00000000]
                      81f46150    000000b8                   : enetphy.oer5f (.text.EnetPhy_findCommonNwayCaps)
                      81f46208    00000008     --HOLE-- [fill = 00000000]
                      81f46210    000000b8     enet.aer5f : enet_rm.oer5f (.text.EnetRm_addCoreAttached)
                      81f462c8    00000008     --HOLE-- [fill = 00000000]
                      81f462d0    000000b8                : enet.oer5f (.text.Enet_unregisterEventCb)
                      81f46388    00000008     --HOLE-- [fill = 00000000]
                      81f46390    000000b8     ti.kernel.freertos.aer5f : port_Hwi.oer5f (.text.Intc_IntRegister)
                      81f46448    00000008     --HOLE-- [fill = 00000000]
                      81f46450    000000b8     enet.aer5f : mdio.oer5f (.text.Mdio_close)
                      81f46508    00000008     --HOLE-- [fill = 00000000]
                      81f46510    000000b8     ti.csl.aer5f : uart.oer5f (.text.UARTTCRTLRBitValRestore)
                      81f465c8    00000008     --HOLE-- [fill = 00000000]
                      81f465d0    000000b4                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_setAleOutVlanEntry_4G)
                      81f46684    0000000c     --HOLE-- [fill = 00000000]
                      81f46690    000000b4                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_setAleVlanEntry_4G)
                      81f46744    0000000c     --HOLE-- [fill = 00000000]
                      81f46750    000000b4     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_setNoMatchEntry0Policer)
                      81f46804    0000000c     --HOLE-- [fill = 00000000]
                      81f46810    000000b4                : cpsw_macport_intervlan.oer5f (.text.CpswMacPort_getCfg)
                      81f468c4    0000000c     --HOLE-- [fill = 00000000]
                      81f468d0    000000b4                : cpsw_intervlan.oer5f (.text.Cpsw_clearInterVlanRouteUniEgress)
                      81f46984    0000000c     --HOLE-- [fill = 00000000]
                      81f46990    000000b4     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_getCapsString)
                      81f46a44    0000000c     --HOLE-- [fill = 00000000]
                      81f46a50    000000b4     enet.aer5f : enet_rm.oer5f (.text.EnetRm_initResourceQ)
                      81f46b04    0000000c     --HOLE-- [fill = 00000000]
                      81f46b10    000000b4                : enet_udma.oer5f (.text.EnetUdma_close)
                      81f46bc4    0000000c     --HOLE-- [fill = 00000000]
                      81f46bd0    000000b4                : icssg.oer5f (.text.Icssg_close)
                      81f46c84    0000000c     --HOLE-- [fill = 00000000]
                      81f46c90    000000b4                : icssg.oer5f (.text.Icssg_updateLinkSpeed100MB)
                      81f46d44    0000000c     --HOLE-- [fill = 00000000]
                      81f46d50    000000b4     sciclient.aer5f : sciclient_pm.oer5f (.text.Sciclient_pmModuleClkRequest)
                      81f46e04    0000000c     --HOLE-- [fill = 00000000]
                      81f46e10    000000b4                     : sciclient_pm.oer5f (.text.Sciclient_pmSetModuleClkParent)
                      81f46ec4    0000000c     --HOLE-- [fill = 00000000]
                      81f46ed0    000000b4     ti.csl.aer5f : timer.oer5f (.text.TIMERModeConfigure)
                      81f46f84    000000b4     libc.a : fclose.c.obj (.text.__TI_closefile)
                      81f47038    00000008     --HOLE-- [fill = 00000000]
                      81f47040    000000b4     ti.kernel.freertos.aer5f : timers.oer5f (.text.prvProcessTimerOrBlockTask)
                      81f470f4    0000000c     --HOLE-- [fill = 00000000]
                      81f47100    000000b0     ti.csl.aer5f : csl_ringacc.oer5f (.text.CSL_ringaccPop64)
                      81f471b0    000000b0                  : csl_udmap.oer5f (.text.CSL_udmapTeardownChan)
                      81f47260    000000b0     enet.aer5f : cpsw.oer5f (.text.Cpsw_validateFlowId)
                      81f47310    000000b0                : enet.oer5f (.text.Enet_close)
                      81f473c0    000000b0     sciclient.aer5f : sciclient_pm.oer5f (.text.Sciclient_pmSetModuleState)
                      81f47470    000000b0                     : sciclient.oer5f (.text.Sciclient_serviceGetThreadIds)
                      81f47520    000000b0     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_charGet_v1)
                      81f475d0    000000b0                       : UART_v1.oer5f (.text.UART_close_v1)
                      81f47680    000000ac     ti.csl.aer5f : csl_ringacc.oer5f (.text.CSL_ringaccPush64)
                      81f4772c    00000004     --HOLE-- [fill = 00000000]
                      81f47730    000000ac     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_addEtherType)
                      81f477dc    00000004     --HOLE-- [fill = 00000000]
                      81f477e0    000000ac                : cpsw_ale.oer5f (.text.CpswAle_delAllPolicerThreadId)
                      81f4788c    00000004     --HOLE-- [fill = 00000000]
                      81f47890    000000ac                : cpsw_macport_intervlan.oer5f (.text.CpswMacPort_cmpRoutes)
                      81f4793c    00000004     --HOLE-- [fill = 00000000]
                      81f47940    000000ac                : cpsw_macport.oer5f (.text.CpswMacPort_getFifoStats)
                      81f479ec    00000004     --HOLE-- [fill = 00000000]
                      81f479f0    000000ac                : cpsw.oer5f (.text.Cpsw_close)
                      81f47a9c    00000004     --HOLE-- [fill = 00000000]
                      81f47aa0    000000ac                : cpsw_intervlan.oer5f (.text.Cpsw_setInterVlanAleCfg)
                      81f47b4c    00000004     --HOLE-- [fill = 00000000]
                      81f47b50    000000ac     enet_example_utils_full_freertos.aer5f : enet_ioctlutils.oer5f (.text.EnetAppUtils_addHostPortEntry)
                      81f47bfc    00000004     --HOLE-- [fill = 00000000]
                      81f47c00    000000ac     enet.aer5f : enet_queue.oer5f (.text.EnetQueue_deq)
                      81f47cac    00000004     --HOLE-- [fill = 00000000]
                      81f47cb0    000000ac                : icssg_stats.oer5f (.text.IcssgStats_ioctl)
                      81f47d5c    00000004     --HOLE-- [fill = 00000000]
                      81f47d60    000000ac                : icssg.oer5f (.text.Icssg_disablePruss)
                      81f47e0c    00000004     --HOLE-- [fill = 00000000]
                      81f47e10    000000ac     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrOutpIsFree)
                      81f47ebc    000000ac     libc.a : fflush.c.obj (.text.fflush)
                      81f47f68    000000ac            : fseek.c.obj (.text.fseeko)
                      81f48014    0000000c     --HOLE-- [fill = 00000000]
                      81f48020    000000ac     ti.kernel.freertos.aer5f : timers.oer5f (.text.prvProcessExpiredTimer)
                      81f480cc    00000004     --HOLE-- [fill = 00000000]
                      81f480d0    000000ac                              : timers.oer5f (.text.xTimerCreateTimerTask)
                      81f4817c    00000004     --HOLE-- [fill = 00000000]
                      81f48180    000000ac                              : timers.oer5f (.text.xTimerGenericCommand)
                      81f4822c    000000ac     libc.a : copy_decompress_lzss.c.obj (.text:decompress:lzss)
                      81f482d8    00000008     --HOLE-- [fill = 00000000]
                      81f482e0    000000a8     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_setPTypeReg)
                      81f48388    00000008     --HOLE-- [fill = 00000000]
                      81f48390    000000a8                  : csl_intaggr.oer5f (.text.CSL_intaggrSetIntrEnable)
                      81f48438    00000008     --HOLE-- [fill = 00000000]
                      81f48440    000000a8     enet.aer5f : cpsw.oer5f (.text.Cpsw_closePortLink)
                      81f484e8    00000008     --HOLE-- [fill = 00000000]
                      81f484f0    000000a8     enet_multiport.oer5f (.text.EnetMp_retrieveFreeTxPkts)
                      81f48598    00000008     --HOLE-- [fill = 00000000]
                      81f485a0    000000a8     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_getManualCaps)
                      81f48648    00000008     --HOLE-- [fill = 00000000]
                      81f48650    000000a8                   : enetphy.oer5f (.text.EnetPhy_showLinkPartnerCompat)
                      81f486f8    00000008     --HOLE-- [fill = 00000000]
                      81f48700    000000a8     enet.aer5f : enet.oer5f (.text.Enet_periodicTick)
                      81f487a8    00000008     --HOLE-- [fill = 00000000]
                      81f487b0    000000a8     udma.aer5f : udma_ch.oer5f (.text.Udma_chCheckParams)
                      81f48858    00000008     --HOLE-- [fill = 00000000]
                      81f48860    000000a4     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_setPortRxPriMapReg)
                      81f48904    0000000c     --HOLE-- [fill = 00000000]
                      81f48910    000000a4                  : csl_cpsw.oer5f (.text.CSL_CPSW_setPortTxPriMapReg)
                      81f489b4    0000000c     --HOLE-- [fill = 00000000]
                      81f489c0    000000a4                  : csl_cpts.oer5f (.text.CSL_CPTS_getCntlReg)
                      81f48a64    0000000c     --HOLE-- [fill = 00000000]
                      81f48a70    000000a4                  : csl_cpts.oer5f (.text.CSL_CPTS_setupESTFn)
                      81f48b14    0000000c     --HOLE-- [fill = 00000000]
                      81f48b20    000000a4                  : csl_cpts.oer5f (.text.CSL_CPTS_setupGENFn)
                      81f48bc4    0000000c     --HOLE-- [fill = 00000000]
                      81f48bd0    000000a4     ti.osal.aer5f : ClockP_freertos.oer5f (.text.ClockP_start)
                      81f48c74    0000000c     --HOLE-- [fill = 00000000]
                      81f48c80    000000a4     enet.aer5f : enet_queue.oer5f (.text.EnetQueue_enq)
                      81f48d24    0000000c     --HOLE-- [fill = 00000000]
                      81f48d30    000000a4                : icssg.oer5f (.text.Icssg_pollR30CmdAsyncResp)
                      81f48dd4    0000000c     --HOLE-- [fill = 00000000]
                      81f48de0    000000a4     udma.aer5f : udma_utils.oer5f (.text.Udma_printf)
                      81f48e84    000000a4     libc.a : memory.c.obj (.text.split)
                      81f48f28    00000008     --HOLE-- [fill = 00000000]
                      81f48f30    000000a0     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getAleVlanUnicastAddrEntry_4G)
                      81f48fd0    000000a0                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getAleVlanUnicastAddrEntry_9G)
                      81f49070    000000a0                  : csl_proxy.oer5f (.text.CSL_proxyCfgThread)
                      81f49110    000000a0     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_getPolicerStats)
                      81f491b0    000000a0                : cpsw_ale.oer5f (.text.CpswAle_initCfg)
                      81f49250    000000a0                : cpsw_ale.oer5f (.text.CpswAle_setRxFilterNone)
                      81f492f0    000000a0                : cpsw_ale.oer5f (.text.CpswAle_validateIPv4Policer)
                      81f49390    000000a0                : cpsw_ale.oer5f (.text.CpswAle_validateIPv6Policer)
                      81f49430    000000a0                : cpsw_macport.oer5f (.text.CpswMacPort_printRegs)
                      81f494d0    000000a0                : cpsw.oer5f (.text.Cpsw_validateDfltFlow)
                      81f49570    000000a0     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_rmwExtReg)
                      81f49610    000000a0     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_getMacPortMii)
                      81f496b0    000000a0     libsysbm.a : hostrename.c.obj (.text.HOSTrename)
                      81f49750    000000a0     enet.aer5f : icssg.oer5f (.text.Icssg_enablePruss)
                      81f497f0    000000a0     sciclient.aer5f : sciclient_rm.oer5f (.text.Sciclient_rmGetResourceRange)
                      81f49890    000000a0                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqGetNode)
                      81f49930    000000a0     ti.kernel.freertos.aer5f : timers.oer5f (.text.prvCheckForValidListAndQueue)
                      81f499d0    000000a0                              : queue.oer5f (.text.xQueueGenericReset)
                      81f49a70    000000a0     libsysbm.a : memset32.S.obj (.text:memset)
                      81f49b10    0000009c     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_getPortBcastMcastLimit)
                      81f49bac    00000004     --HOLE-- [fill = 00000000]
                      81f49bb0    0000009c                : cpsw_ale.oer5f (.text.CpswAle_setBcastMcastLimit)
                      81f49c4c    00000004     --HOLE-- [fill = 00000000]
                      81f49c50    0000009c                : cpsw_ale.oer5f (.text.CpswAle_setPortPolicerEntry)
                      81f49cec    00000004     --HOLE-- [fill = 00000000]
                      81f49cf0    0000009c                : cpsw_ale.oer5f (.text.CpswAle_updateUnknownVlanMcastHostPortMask)
                      81f49d8c    00000004     --HOLE-- [fill = 00000000]
                      81f49d90    0000009c     enetphy.aer5f : dp83822.oer5f (.text.Dp83822_config)
                      81f49e2c    00000004     --HOLE-- [fill = 00000000]
                      81f49e30    0000009c     enet.aer5f : enet.oer5f (.text.EnetPer_registerEventCb)
                      81f49ecc    00000004     --HOLE-- [fill = 00000000]
                      81f49ed0    0000009c                : enet_rm.oer5f (.text.EnetRm_mapMacAddr2ResourceIdx)
                      81f49f6c    00000004     --HOLE-- [fill = 00000000]
                      81f49f70    0000009c     enetphy.aer5f : generic_phy.oer5f (.text.GenericPhy_writeExtReg)
                      81f4a00c    00000004     --HOLE-- [fill = 00000000]
                      81f4a010    0000009c     enet.aer5f : icssg.oer5f (.text.Icssg_updateLinkSpeed1G)
                      81f4a0ac    00000004     --HOLE-- [fill = 00000000]
                      81f4a0b0    0000009c     ti.drv.uart.aer5f : UART_stdio.oer5f (.text.UART_stdioInit)
                      81f4a14c    00000004     --HOLE-- [fill = 00000000]
                      81f4a150    0000009c     udma.aer5f : udma_ring_common.oer5f (.text.Udma_ringProxyQueueRaw)
                      81f4a1ec    00000004     --HOLE-- [fill = 00000000]
                      81f4a1f0    0000009c                : udma_ring_normal.oer5f (.text.Udma_ringSetDoorBellNormal)
                      81f4a28c    00000004     --HOLE-- [fill = 00000000]
                      81f4a290    0000009c     ti.kernel.freertos.aer5f : timers.oer5f (.text.xTimerCreateStatic)
                      81f4a32c    00000004     --HOLE-- [fill = 00000000]
                      81f4a330    00000098     ti.board.aer5f : board_ethernet_config.oer5f (.text.BoardDiag_ethPhyRegRead)
                      81f4a3c8    00000008     --HOLE-- [fill = 00000000]
                      81f4a3d0    00000098     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_getAlePortControlReg)
                      81f4a468    00000008     --HOLE-- [fill = 00000000]
                      81f4a470    00000098                  : csl_cpsw.oer5f (.text.CSL_CPSW_setPortStatsEnableReg)
                      81f4a508    00000008     --HOLE-- [fill = 00000000]
                      81f4a510    00000098     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_validateEtherTypePolicer)
                      81f4a5a8    00000008     --HOLE-- [fill = 00000000]
                      81f4a5b0    00000098     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.EnetAppUtils_openTxCh)
                      81f4a648    00000008     --HOLE-- [fill = 00000000]
                      81f4a650    00000098     enet.aer5f : enet_queue.oer5f (.text.EnetQueue_enqHead)
                      81f4a6e8    00000008     --HOLE-- [fill = 00000000]
                      81f4a6f0    00000098                : enet_udma_priv.oer5f (.text.EnetUdma_buffDescInit)
                      81f4a788    00000098     libsysbm.a : hostlseek.c.obj (.text.HOSTlseek)
                      81f4a820    00000098     enet.aer5f : icssg_tas.oer5f (.text.IcssgTas_open)
                      81f4a8b8    00000008     --HOLE-- [fill = 00000000]
                      81f4a8c0    00000098     udma.aer5f : udma_rm.oer5f (.text.Udma_rmCheckResLeak)
                      81f4a958    00000098     libc.a : _io_perm.c.obj (.text.__TI_wrt_ok)
                      81f4a9f0    00000094     ti.csl.aer5f : csl_cpsw_ss.oer5f (.text.CSL_CPSW_SS_getRGMIIStatus)
                      81f4aa84    0000000c     --HOLE-- [fill = 00000000]
                      81f4aa90    00000094                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getAleUnicastAddrEntry_4G)
                      81f4ab24    0000000c     --HOLE-- [fill = 00000000]
                      81f4ab30    00000094                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getAleUnicastAddrEntry_9G)
                      81f4abc4    0000000c     --HOLE-- [fill = 00000000]
                      81f4abd0    00000094     ti.osal.aer5f : ClockP_freertos.oer5f (.text.ClockP_stop)
                      81f4ac64    0000000c     --HOLE-- [fill = 00000000]
                      81f4ac70    00000094     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_setReceiveFilter)
                      81f4ad04    0000000c     --HOLE-- [fill = 00000000]
                      81f4ad10    00000094                : cpsw.oer5f (.text.Cpsw_setSgmiiMode)
                      81f4ada4    0000000c     --HOLE-- [fill = 00000000]
                      81f4adb0    00000094                : enet_udma.oer5f (.text.EnetDma_initTxChParams)
                      81f4ae44    0000000c     --HOLE-- [fill = 00000000]
                      81f4ae50    00000094                : enet.oer5f (.text.EnetPer_poll)
                      81f4aee4    0000000c     --HOLE-- [fill = 00000000]
                      81f4aef0    00000094                : enet.oer5f (.text.EnetPer_unregisterEventCb)
                      81f4af84    0000000c     --HOLE-- [fill = 00000000]
                      81f4af90    00000094                : enet_queue.oer5f (.text.EnetQueue_copyQ)
                      81f4b024    0000000c     --HOLE-- [fill = 00000000]
                      81f4b030    00000094     enetsoc.aer5f : j7x_soc.oer5f (.text.EnetSocJ7x_releaseIntrCfg)
                      81f4b0c4    0000000c     --HOLE-- [fill = 00000000]
                      81f4b0d0    00000094                   : j7x_soc.oer5f (.text.EnetSocJ7x_setupIntrCfg)
                      81f4b164    0000000c     --HOLE-- [fill = 00000000]
                      81f4b170    00000094     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_memMgrAllocRingMonObj)
                      81f4b204    0000000c     --HOLE-- [fill = 00000000]
                      81f4b210    00000094                : enet_udma_priv.oer5f (.text.EnetUdma_memMgrAllocRxFlowObj)
                      81f4b2a4    0000000c     --HOLE-- [fill = 00000000]
                      81f4b2b0    00000094                : enet_udma_priv.oer5f (.text.EnetUdma_memMgrAllocTxChObj)
                      81f4b344    00000094     libsysbm.a : hostopen.c.obj (.text.HOSTopen)
                      81f4b3d8    00000008     --HOLE-- [fill = 00000000]
                      81f4b3e0    00000094     enet.aer5f : icssg.oer5f (.text.Icssg_configHostPortDfltVlanId)
                      81f4b474    0000000c     --HOLE-- [fill = 00000000]
                      81f4b480    00000094     ti.drv.pruss.aer5f : pruicss_drv.oer5f (.text.PRUICSS_pruWriteMemory)
                      81f4b514    0000000c     --HOLE-- [fill = 00000000]
                      81f4b520    00000094     ti.osal.aer5f : TaskP_freertos.oer5f (.text.TaskP_delete)
                      81f4b5b4    0000000c     --HOLE-- [fill = 00000000]
                      81f4b5c0    00000094                   : TimerP_nonos.oer5f (.text.TimerP_stop)
                      81f4b654    0000000c     --HOLE-- [fill = 00000000]
                      81f4b660    00000094     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_charPut_v1)
                      81f4b6f4    0000000c     --HOLE-- [fill = 00000000]
                      81f4b700    00000094     udma.aer5f : udma_ring_common.oer5f (.text.Udma_ringProxyDequeueRaw)
                      81f4b794    0000000c     --HOLE-- [fill = 00000000]
                      81f4b7a0    00000090     ti.board.aer5f : board_pll.oer5f (.text.Board_PLLInitAll)
                      81f4b830    00000090     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_delVlan)
                      81f4b8c0    00000090                : cpsw_ale.oer5f (.text.CpswAle_setRxFilterAllMcast)
                      81f4b950    00000090                : cpsw_ale.oer5f (.text.CpswAle_setRxFilterDirect)
                      81f4b9e0    00000090                : cpsw_cpts.oer5f (.text.CpswCpts_checkGenfEstfErrata)
                      81f4ba70    00000090                : cpsw_stats.oer5f (.text.CpswStats_resetHostStats)
                      81f4bb00    00000090                : cpsw_intervlan.oer5f (.text.Cpsw_clearInterVlanAleCfg)
                      81f4bb90    00000090     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.text.EnetMem_freeEthPkt)
                      81f4bc20    00000090     enet.aer5f : enet.oer5f (.text.EnetPer_close)
                      81f4bcb0    00000090                : enet_rm.oer5f (.text.EnetRm_allocResource)
                      81f4bd40    00000090                : enet_rm.oer5f (.text.EnetRm_freeInternalRxFlowIdx)
                      81f4bdd0    00000090     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_init)
                      81f4be60    00000090     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_dmaDescEnque)
                      81f4bef0    00000090                : enet.oer5f (.text.Enet_initCfg)
                      81f4bf80    00000090                : icssg_stats.oer5f (.text.IcssgStats_open)
                      81f4c010    00000090                : icssg.oer5f (.text.Icssg_ioctlVlanFidResetTable)
                      81f4c0a0    00000090                : icssg.oer5f (.text.Icssg_setAcceptableFrameCheck)
                      81f4c130    00000090                : icssg.oer5f (.text.Icssg_unregisterEventCb)
                      81f4c1c0    00000090                : icssg.oer5f (.text.Icssg_validateFlowId)
                      81f4c250    00000090     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqCheckLoop)
                      81f4c2e0    00000090     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_readCancelNoCB)
                      81f4c370    00000090                       : UART_v1.oer5f (.text.UART_v1_callback)
                      81f4c400    00000090     ti.kernel.freertos.aer5f : heap_4.oer5f (.text.prvInsertBlockIntoFreeList)
                      81f4c490    0000008c     ti.board.aer5f : board_clock.oer5f (.text.Board_moduleClockEnable)
                      81f4c51c    00000004     --HOLE-- [fill = 00000000]
                      81f4c520    0000008c     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_setAleCtrl2TrunkParams)
                      81f4c5ac    00000004     --HOLE-- [fill = 00000000]
                      81f4c5b0    0000008c                  : csl_cpsw.oer5f (.text.CSL_CPSW_setCppiP0Control)
                      81f4c63c    00000004     --HOLE-- [fill = 00000000]
                      81f4c640    0000008c     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_setPriorityPolicerEntry)
                      81f4c6cc    00000004     --HOLE-- [fill = 00000000]
                      81f4c6d0    0000008c                : cpsw_hostport.oer5f (.text.CpswHostPort_printRegs)
                      81f4c75c    00000004     --HOLE-- [fill = 00000000]
                      81f4c760    0000008c                : cpsw_macport.oer5f (.text.CpswMacPort_enableLoopback)
                      81f4c7ec    00000004     --HOLE-- [fill = 00000000]
                      81f4c7f0    0000008c                : cpsw.oer5f (.text.Cpsw_rejoin)
                      81f4c87c    00000004     --HOLE-- [fill = 00000000]
                      81f4c880    0000008c                : cpsw_intervlan.oer5f (.text.Cpsw_validateInterVlanMultiEgressConfig)
                      81f4c90c    00000004     --HOLE-- [fill = 00000000]
                      81f4c910    0000008c     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_setClkShift)
                      81f4c99c    00000004     --HOLE-- [fill = 00000000]
                      81f4c9a0    0000008c                   : dp83867.oer5f (.text.Dp83867_setLedMode)
                      81f4ca2c    00000004     --HOLE-- [fill = 00000000]
                      81f4ca30    0000008c     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.EnetAppUtils_closeTxCh)
                      81f4cabc    00000004     --HOLE-- [fill = 00000000]
                      81f4cac0    0000008c     enet.aer5f : enet.oer5f (.text.EnetPer_initCfg)
                      81f4cb4c    00000004     --HOLE-- [fill = 00000000]
                      81f4cb50    0000008c     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_readC45Reg)
                      81f4cbdc    00000004     --HOLE-- [fill = 00000000]
                      81f4cbe0    0000008c                   : enetphy.oer5f (.text.EnetPhy_writeC45Reg)
                      81f4cc6c    00000004     --HOLE-- [fill = 00000000]
                      81f4cc70    0000008c     ti.csl.aer5f : timer.oer5f (.text.TIMERReset)
                      81f4ccfc    00000004     --HOLE-- [fill = 00000000]
                      81f4cd00    0000008c     ti.kernel.freertos.aer5f : port.oer5f (.text.prvPortInitTickTimer)
                      81f4cd8c    00000004     --HOLE-- [fill = 00000000]
                      81f4cd90    00000088     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getAleVlanMcastAddrEntry_4G)
                      81f4ce18    00000008     --HOLE-- [fill = 00000000]
                      81f4ce20    00000088                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getAleVlanMcastAddrEntry_9G)
                      81f4cea8    00000008     --HOLE-- [fill = 00000000]
                      81f4ceb0    00000088     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_setIPFilterCfg)
                      81f4cf38    00000008     --HOLE-- [fill = 00000000]
                      81f4cf40    00000088     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_setLoopbackCfg)
                      81f4cfc8    00000008     --HOLE-- [fill = 00000000]
                      81f4cfd0    00000088     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.EnetAppUtils_regDstMacRxFlow)
                      81f4d058    00000008     --HOLE-- [fill = 00000000]
                      81f4d060    00000088                                            : enet_udmautils.oer5f (.text.EnetAppUtils_unregDstMacRxFlow)
                      81f4d0e8    00000008     --HOLE-- [fill = 00000000]
                      81f4d0f0    00000088     enet_multiport.oer5f (.text.EnetMp_initTxFreePktQ)
                      81f4d178    00000008     --HOLE-- [fill = 00000000]
                      81f4d180    00000088     enet.aer5f : enet_rm.oer5f (.text.EnetRm_validateCoreIoctlPrivilege)
                      81f4d208    00000008     --HOLE-- [fill = 00000000]
                      81f4d210    00000088     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_releaseIntrCfg)
                      81f4d298    00000008     --HOLE-- [fill = 00000000]
                      81f4d2a0    00000088                   : enet_soc.oer5f (.text.EnetSoc_setupIntrCfg)
                      81f4d328    00000008     --HOLE-- [fill = 00000000]
                      81f4d330    00000088     enet.aer5f : icssg_tas.oer5f (.text.IcssgTas_getFirmwareListPointers)
                      81f4d3b8    00000008     --HOLE-- [fill = 00000000]
                      81f4d3c0    00000088                : icssg.oer5f (.text.Icssg_ioctlVlanFidGetEntry)
                      81f4d448    00000008     --HOLE-- [fill = 00000000]
                      81f4d450    00000088     sciclient.aer5f : sciclient_pm.oer5f (.text.Sciclient_pmSetModuleRst)
                      81f4d4d8    00000008     --HOLE-- [fill = 00000000]
                      81f4d4e0    00000088                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrInpRomMapped)
                      81f4d568    00000008     --HOLE-- [fill = 00000000]
                      81f4d570    00000088                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrOutpRomMapped)
                      81f4d5f8    00000008     --HOLE-- [fill = 00000000]
                      81f4d600    00000088                     : sciclient.oer5f (.text.Sciclient_serviceGetPayloadSize)
                      81f4d688    00000088     libc.a : _ltoa.c.obj (.text.__TI_ltoa)
                      81f4d710    00000088            : _printfi.c.obj (.text._ecpy)
                      81f4d798    00000008     --HOLE-- [fill = 00000000]
                      81f4d7a0    00000084     ti.board.aer5f : board_ddr.oer5f (.text.Board_enableVTTRegulator)
                      81f4d824    0000000c     --HOLE-- [fill = 00000000]
                      81f4d830    00000084     ti.csl.aer5f : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getAleVlanEntry_9G)
                      81f4d8b4    0000000c     --HOLE-- [fill = 00000000]
                      81f4d8c0    00000084     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_getPolicerDefaultThreadConfig)
                      81f4d944    0000000c     --HOLE-- [fill = 00000000]
                      81f4d950    00000084                : cpsw_ale.oer5f (.text.CpswAle_isSupported)
                      81f4d9d4    0000000c     --HOLE-- [fill = 00000000]
                      81f4d9e0    00000084                : cpsw_ale.oer5f (.text.CpswAle_setAlePortCfg)
                      81f4da64    0000000c     --HOLE-- [fill = 00000000]
                      81f4da70    00000084                : cpsw_ale.oer5f (.text.CpswAle_setPolicerControl)
                      81f4daf4    0000000c     --HOLE-- [fill = 00000000]
                      81f4db00    00000084                : cpsw_ale.oer5f (.text.CpswAle_setPolicerRateLimit)
                      81f4db84    0000000c     --HOLE-- [fill = 00000000]
                      81f4db90    00000084                : cpsw_ale.oer5f (.text.CpswAle_setPortBcastMcastLimit)
                      81f4dc14    0000000c     --HOLE-- [fill = 00000000]
                      81f4dc20    00000084                : cpsw_cpts.oer5f (.text.CpswCpts_isSupported)
                      81f4dca4    0000000c     --HOLE-- [fill = 00000000]
                      81f4dcb0    00000084                : cpsw_hostport.oer5f (.text.CpswHostPort_isSupported)
                      81f4dd34    0000000c     --HOLE-- [fill = 00000000]
                      81f4dd40    00000084                : cpsw_macport.oer5f (.text.CpswMacPort_isSupported)
                      81f4ddc4    0000000c     --HOLE-- [fill = 00000000]
                      81f4ddd0    00000084                : cpsw_stats.oer5f (.text.CpswStats_isSupported)
                      81f4de54    0000000c     --HOLE-- [fill = 00000000]
                      81f4de60    00000084     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_isResetComplete)
                      81f4dee4    0000000c     --HOLE-- [fill = 00000000]
                      81f4def0    00000084     enet_example_utils_full_freertos.aer5f : enet_ioctlutils.oer5f (.text.EnetAppUtils_allocMac)
                      81f4df74    0000000c     --HOLE-- [fill = 00000000]
                      81f4df80    00000084                                            : enet_udmautils.oer5f (.text.EnetAppUtils_allocRxFlowForChIdx)
                      81f4e004    0000000c     --HOLE-- [fill = 00000000]
                      81f4e010    00000084                                            : enet_apputils_k3.oer5f (.text.EnetAppUtils_clkRateSet)
                      81f4e094    0000000c     --HOLE-- [fill = 00000000]
                      81f4e0a0    00000084                                            : enet_ioctlutils.oer5f (.text.EnetAppUtils_delAddrEntry)
                      81f4e124    0000000c     --HOLE-- [fill = 00000000]
                      81f4e130    00000084                                            : enet_udmautils.oer5f (.text.EnetAppUtils_udmaOpen)
                      81f4e1b4    0000000c     --HOLE-- [fill = 00000000]
                      81f4e1c0    00000084                                            : enet_appmemutils.oer5f (.text.EnetMem_allocRingMem)
                      81f4e244    0000000c     --HOLE-- [fill = 00000000]
                      81f4e250    00000084     enet.aer5f : enet_osal_dflt.oer5f (.text.EnetOsalDflt_createMutex)
                      81f4e2d4    0000000c     --HOLE-- [fill = 00000000]
                      81f4e2e0    00000084     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_resetPhy)
                      81f4e364    0000000c     --HOLE-- [fill = 00000000]
                      81f4e370    00000084     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_getEnetHandle)
                      81f4e3f4    0000000c     --HOLE-- [fill = 00000000]
                      81f4e400    00000084     enetphy.aer5f : generic_phy.oer5f (.text.GenericPhy_isResetComplete)
                      81f4e484    00000084     libsysbm.a : hostread.c.obj (.text.HOSTread)
                      81f4e508    00000084                : hostwrite.c.obj (.text.HOSTwrite)
                      81f4e58c    00000004     --HOLE-- [fill = 00000000]
                      81f4e590    00000084     enet.aer5f : icssg.oer5f (.text.Icssg_configCutThroughOrPreempt)
                      81f4e614    0000000c     --HOLE-- [fill = 00000000]
                      81f4e620    00000084                : icssg.oer5f (.text.Icssg_configFt3PriorityTag)
                      81f4e6a4    0000000c     --HOLE-- [fill = 00000000]
                      81f4e6b0    00000084                : icssg.oer5f (.text.Icssg_ioctlVlanFidSetEntry)
                      81f4e734    0000000c     --HOLE-- [fill = 00000000]
                      81f4e740    00000084                : icssg.oer5f (.text.Icssg_openDma)
                      81f4e7c4    0000000c     --HOLE-- [fill = 00000000]
                      81f4e7d0    00000084                : mdio.oer5f (.text.Mdio_isSupported)
                      81f4e854    0000000c     --HOLE-- [fill = 00000000]
                      81f4e860    00000084     ti.osal.aer5f : RegisterIntr_nonos.oer5f (.text.Osal_RegisterInterrupt)
                      81f4e8e4    0000000c     --HOLE-- [fill = 00000000]
                      81f4e8f0    00000084     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_abiCheck)
                      81f4e974    0000000c     --HOLE-- [fill = 00000000]
                      81f4e980    00000084                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqCfgIsDirectNonEvent)
                      81f4ea04    0000000c     --HOLE-- [fill = 00000000]
                      81f4ea10    00000084                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqCfgIsOesOnly)
                      81f4ea94    0000000c     --HOLE-- [fill = 00000000]
                      81f4eaa0    00000084                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqCfgIsUnmappedVintDirectEvent)
                      81f4eb24    0000000c     --HOLE-- [fill = 00000000]
                      81f4eb30    00000084                     : sciclient_rm.oer5f (.text.Sciclient_rmIrqReleaseRaw)
                      81f4ebb4    0000000c     --HOLE-- [fill = 00000000]
                      81f4ebc0    00000084                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmPsPop)
                      81f4ec44    0000000c     --HOLE-- [fill = 00000000]
                      81f4ec50    00000084                     : sciclient_rm.oer5f (.text.Sciclient_rmPsilPair)
                      81f4ecd4    0000000c     --HOLE-- [fill = 00000000]
                      81f4ece0    00000084                     : sciclient_rm.oer5f (.text.Sciclient_rmPsilUnpair)
                      81f4ed64    0000000c     --HOLE-- [fill = 00000000]
                      81f4ed70    00000084                     : sciclient_rm.oer5f (.text.Sciclient_rmPsilWrite)
                      81f4edf4    0000000c     --HOLE-- [fill = 00000000]
                      81f4ee00    00000084                     : sciclient_rm.oer5f (.text.Sciclient_rmSetProxyCfg)
                      81f4ee84    00000084     libsysbm.a : close.c.obj (.text.close)
                      81f4ef08    00000008     --HOLE-- [fill = 00000000]
                      81f4ef10    00000084     ti.kernel.freertos.aer5f : tasks.oer5f (.text.prvInitialiseTaskLists)
                      81f4ef94    0000000c     --HOLE-- [fill = 00000000]
                      81f4efa0    00000080     ti.csl.aer5f : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_getMacStatusReg)
                      81f4f020    00000080                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getAleOutVlanEntry_9G)
                      81f4f0a0    00000080                  : csl_cpsw.oer5f (.text.CSL_CPSW_getPortRxPriMapReg)
                      81f4f120    00000080                  : csl_cpsw.oer5f (.text.CSL_CPSW_getPortTxPriMapReg)
                      81f4f1a0    00000080                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_setAleOUIAddrEntry_4G)
                      81f4f220    00000080                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_setAleOUIAddrEntry_9G)
                      81f4f2a0    00000080                  : csl_cpsw.oer5f (.text.CSL_CPSW_setPortControlReg)
                      81f4f320    00000080                  : csl_serdes3.oer5f (.text.CSL_serdesSetLoopback)
                      81f4f3a0    00000080                  : csl_vim.oer5f (.text.CSL_vimGetActivePendingIntr)
                      81f4f420    00000080     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_delIPv6HighEntry)
                      81f4f4a0    00000080                : cpsw_ale.oer5f (.text.CpswAle_getPolicerControl)
                      81f4f520    00000080                : cpsw_ale.oer5f (.text.CpswAle_mapMcastMaskBits2RegCfg)
                      81f4f5a0    00000080                : cpsw_ale.oer5f (.text.CpswAle_setMacOnlyCaf)
                      81f4f620    00000080                : cpsw_ale.oer5f (.text.CpswAle_setPortTrunkConfig)
                      81f4f6a0    00000080                : cpsw_cpts.oer5f (.text.CpswCpts_printRegs)
                      81f4f720    00000080                : cpsw.oer5f (.text.Cpsw_getRxMtuPort0)
                      81f4f7a0    00000080     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.text.EnetBoard_findPortCfg)
                      81f4f820    00000080     enet_multiport.oer5f (.text.EnetMp_tickTask)
                      81f4f8a0    00000080     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_getDmaHandle)
                      81f4f920    00000080     enet.aer5f : icssg_utils.oer5f (.text.IcssgUtils_pdInitAndPush)
                      81f4f9a0    00000080                : icssg_utils.oer5f (.text.Icssg_R30SendSyncIoctl)
                      81f4fa20    00000080                : mdio.oer5f (.text.Mdio_printRegs)
                      81f4faa0    00000080     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIaEvtRomMapped)
                      81f4fb20    00000080                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqCfgIsDirectEvent)
                      81f4fba0    00000080     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.text.SemaphoreP_pend)
                      81f4fc20    00000080     udma.aer5f : udma_ch.oer5f (.text.UdmaChPrms_init)
                      81f4fca0    00000080                : udma_ch.oer5f (.text.Udma_chDequeueTdResponse)
                      81f4fd20    00000080                : udma_ch.oer5f (.text.Udma_chGetTdCqRingHandle)
                      81f4fda0    00000080                : udma_flow.oer5f (.text.Udma_flowAttach)
                      81f4fe20    00000080     libc.a : fflush.c.obj (.text.__TI_doflush)
                      81f4fea0    0000007c     ti.board.aer5f : board_ethernet_config.oer5f (.text.Board_ethPhyRegWrite)
                      81f4ff1c    00000004     --HOLE-- [fill = 00000000]
                      81f4ff20    0000007c     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getAleMcastAddrEntry_4G)
                      81f4ff9c    00000004     --HOLE-- [fill = 00000000]
                      81f4ffa0    0000007c                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getAleMcastAddrEntry_9G)
                      81f5001c    00000004     --HOLE-- [fill = 00000000]
                      81f50020    0000007c                  : csl_cpsw.oer5f (.text.CSL_CPSW_getPTypeReg)
                      81f5009c    00000004     --HOLE-- [fill = 00000000]
                      81f500a0    0000007c                  : csl_cpsw.oer5f (.text.CSL_CPSW_getTxMaxLenPerPriority)
                      81f5011c    00000004     --HOLE-- [fill = 00000000]
                      81f50120    0000007c                  : csl_cpsw.oer5f (.text.CSL_CPSW_setTxMaxLenPerPriority)
                      81f5019c    00000004     --HOLE-- [fill = 00000000]
                      81f501a0    0000007c     ti.osal.aer5f : ClockP_freertos.oer5f (.text.ClockP_delete)
                      81f5021c    00000004     --HOLE-- [fill = 00000000]
                      81f50220    0000007c     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_getTableType)
                      81f5029c    00000004     --HOLE-- [fill = 00000000]
                      81f502a0    0000007c     enet_example_utils_full_freertos.aer5f : enet_appsoc.oer5f (.text.EnetAppSoc_getMacAddrList)
                      81f5031c    00000004     --HOLE-- [fill = 00000000]
                      81f50320    0000007c                                            : enet_ioctlutils.oer5f (.text.EnetAppUtils_freeMac)
                      81f5039c    00000004     --HOLE-- [fill = 00000000]
                      81f503a0    0000007c     enet.aer5f : enet_udma_priv.oer5f (.text.EnetDma_checkPktState)
                      81f5041c    00000004     --HOLE-- [fill = 00000000]
                      81f50420    0000007c     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_foundState)
                      81f5049c    00000004     --HOLE-- [fill = 00000000]
                      81f504a0    0000007c                   : enetphy.oer5f (.text.EnetPhy_readReg)
                      81f5051c    00000004     --HOLE-- [fill = 00000000]
                      81f50520    0000007c                   : enetphy.oer5f (.text.EnetPhy_writeReg)
                      81f5059c    00000004     --HOLE-- [fill = 00000000]
                      81f505a0    0000007c     enet.aer5f : enet_rm.oer5f (.text.EnetRm_isCoreAttached)
                      81f5061c    00000004     --HOLE-- [fill = 00000000]
                      81f50620    0000007c                : enet_udma_priv.oer5f (.text.EnetUdma_dmaDescCheck)
                      81f5069c    00000004     --HOLE-- [fill = 00000000]
                      81f506a0    0000007c     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.text.SemaphoreP_constructBinary)
                      81f5071c    00000004     --HOLE-- [fill = 00000000]
                      81f50720    0000007c                   : TimerP_nonos.oer5f (.text.TimerP_dmTimerInitDevice)
                      81f5079c    00000004     --HOLE-- [fill = 00000000]
                      81f507a0    0000007c     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_read_v1)
                      81f5081c    00000004     --HOLE-- [fill = 00000000]
                      81f50820    0000007c                       : UART_v1.oer5f (.text.UART_write_v1)
                      81f5089c    00000004     --HOLE-- [fill = 00000000]
                      81f508a0    0000007c     udma.aer5f : udma_osal.oer5f (.text.UdmaOsalPrms_init)
                      81f5091c    00000004     --HOLE-- [fill = 00000000]
                      81f50920    0000007c     libc.a : s_frexp.c.obj (.text.frexp)
                      81f5099c    00000004     --HOLE-- [fill = 00000000]
                      81f509a0    00000078     ti.csl.aer5f : csl_cpts.oer5f (.text.CSL_CPTS_getEventInfo)
                      81f50a18    00000008     --HOLE-- [fill = 00000000]
                      81f50a20    00000078                  : csl_ringacc.oer5f (.text.CSL_ringaccGetCmdRingPtr)
                      81f50a98    00000008     --HOLE-- [fill = 00000000]
                      81f50aa0    00000078                  : csl_ringacc.oer5f (.text.CSL_ringaccGetRspRingPtr)
                      81f50b18    00000008     --HOLE-- [fill = 00000000]
                      81f50b20    00000078     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_addVlanEntry)
                      81f50b98    00000008     --HOLE-- [fill = 00000000]
                      81f50ba0    00000078                : cpsw_ale.oer5f (.text.CpswAle_addVlanMask)
                      81f50c18    00000008     --HOLE-- [fill = 00000000]
                      81f50c20    00000078                : cpsw_ale.oer5f (.text.CpswAle_allocPolicerEntry)
                      81f50c98    00000008     --HOLE-- [fill = 00000000]
                      81f50ca0    00000078                : cpsw_ale.oer5f (.text.CpswAle_initVlanCfg)
                      81f50d18    00000008     --HOLE-- [fill = 00000000]
                      81f50d20    00000078     enet_example_utils_full_freertos.aer5f : enet_apputils.oer5f (.text.EnetAppUtils_print)
                      81f50d98    00000008     --HOLE-- [fill = 00000000]
                      81f50da0    00000078     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_loopbackState)
                      81f50e18    00000008     --HOLE-- [fill = 00000000]
                      81f50e20    00000078     enet.aer5f : enet_utils.oer5f (.text.EnetUtils_printf)
                      81f50e98    00000008     --HOLE-- [fill = 00000000]
                      81f50ea0    00000078     ti.osal.aer5f : MutexP_freertos.oer5f (.text.MutexP_delete)
                      81f50f18    00000008     --HOLE-- [fill = 00000000]
                      81f50f20    00000078                   : MutexP_freertos.oer5f (.text.MutexP_lock)
                      81f50f98    00000008     --HOLE-- [fill = 00000000]
                      81f50fa0    00000078     sciclient.aer5f : sciclient_rm.oer5f (.text.Sciclient_rmIrqSetRaw)
                      81f51018    00000008     --HOLE-- [fill = 00000000]
                      81f51020    00000078                     : sciclient_rm.oer5f (.text.Sciclient_rmPsilRead)
                      81f51098    00000008     --HOLE-- [fill = 00000000]
                      81f510a0    00000078                     : sciclient_rm.oer5f (.text.Sciclient_rmRingCfg)
                      81f51118    00000008     --HOLE-- [fill = 00000000]
                      81f51120    00000078                     : sciclient_rm.oer5f (.text.Sciclient_rmRingMonCfg)
                      81f51198    00000008     --HOLE-- [fill = 00000000]
                      81f511a0    00000078                     : sciclient_rm.oer5f (.text.Sciclient_rmUdmapFlowCfg)
                      81f51218    00000008     --HOLE-- [fill = 00000000]
                      81f51220    00000078                     : sciclient_rm.oer5f (.text.Sciclient_rmUdmapFlowSizeThreshCfg)
                      81f51298    00000008     --HOLE-- [fill = 00000000]
                      81f512a0    00000078                     : sciclient_rm.oer5f (.text.Sciclient_rmUdmapRxChCfg)
                      81f51318    00000008     --HOLE-- [fill = 00000000]
                      81f51320    00000078                     : sciclient_rm.oer5f (.text.Sciclient_rmUdmapTxChCfg)
                      81f51398    00000008     --HOLE-- [fill = 00000000]
                      81f513a0    00000078     ti.kernel.freertos.aer5f : tasks.oer5f (.text.prvCheckTasksWaitingTermination)
                      81f51418    00000008     --HOLE-- [fill = 00000000]
                      81f51420    00000074     ti.csl.aer5f : csl_udmap.oer5f (.text.CSL_udmapGetCfg)
                      81f51494    0000000c     --HOLE-- [fill = 00000000]
                      81f514a0    00000074     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_blockClassifierToHostPort)
                      81f51514    0000000c     --HOLE-- [fill = 00000000]
                      81f51520    00000074                : cpsw_ale.oer5f (.text.CpswAle_maskIPv6AddrRegWord)
                      81f51594    0000000c     --HOLE-- [fill = 00000000]
                      81f515a0    00000074                : cpsw_ale.oer5f (.text.CpswAle_setNetSecCfg)
                      81f51614    0000000c     --HOLE-- [fill = 00000000]
                      81f51620    00000074                : cpsw_macport.oer5f (.text.CpswMacPort_enableSgmiiLoopback)
                      81f51694    0000000c     --HOLE-- [fill = 00000000]
                      81f516a0    00000074     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.EnetAppUtils_allocTxCh)
                      81f51714    0000000c     --HOLE-- [fill = 00000000]
                      81f51720    00000074                                            : enet_board_am65xevm.oer5f (.text.EnetBoard_getPortCfg)
                      81f51794    0000000c     --HOLE-- [fill = 00000000]
                      81f517a0    00000074                                            : enet_appmemutils.oer5f (.text.EnetDma_checkPktState)
                      81f51814    0000000c     --HOLE-- [fill = 00000000]
                      81f51820    00000074                                            : enet_appmemutils.oer5f (.text.EnetMem_allocDmaDesc)
                      81f51894    0000000c     --HOLE-- [fill = 00000000]
                      81f518a0    00000074     enet_multiport.oer5f (.text.EnetMp_showMacAddrs)
                      81f51914    0000000c     --HOLE-- [fill = 00000000]
                      81f51920    00000074     ti.drv.pruss.aer5f : pruicss_drv.oer5f (.text.PRUICSS_pruInitMemory)
                      81f51994    0000000c     --HOLE-- [fill = 00000000]
                      81f519a0    00000074     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.text.SemaphoreP_delete)
                      81f51a14    0000000c     --HOLE-- [fill = 00000000]
                      81f51a20    00000074     udma.aer5f : udma_event.oer5f (.text.UdmaEventPrms_init)
                      81f51a94    00000074     libc.a : _printfi.c.obj (.text._pconv_f)
                      81f51b08    00000074            : snprintf.c.obj (.text.snprintf)
                      81f51b7c    00000004     --HOLE-- [fill = 00000000]
                      81f51b80    00000074     ti.kernel.freertos.aer5f : queue.oer5f (.text.xQueueCreateCountingSemaphoreStatic)
                      81f51bf4    0000000c     --HOLE-- [fill = 00000000]
                      81f51c00    00000070     ti.csl.aer5f : csl_serdes3.oer5f (.text.CSL_serdesGetLaneStatus)
                      81f51c70    00000070     enet.aer5f : cpsw_macport_intervlan.oer5f (.text.CpswMacPort_delRoute)
                      81f51ce0    00000070                : cpsw_macport.oer5f (.text.CpswMacPort_isMiiSupported)
                      81f51d50    00000070     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.EnetAppUtils_regDfltRxFlowForChIdx)
                      81f51dc0    00000070                                            : enet_udmautils.oer5f (.text.EnetAppUtils_unregDfltRxFlowForChIdx)
                      81f51e30    00000070     enet.aer5f : enet_hostport_udma.oer5f (.text.EnetHostPortDma_openRxCh)
                      81f51ea0    00000070     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_capToMode)
                      81f51f10    00000070                   : enetphy.oer5f (.text.EnetPhy_getLinkCfg)
                      81f51f80    00000070                   : enetphy.oer5f (.text.EnetPhy_getLocalCaps)
                      81f51ff0    00000070     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_memMgrFreeRingMonObj)
                      81f52060    00000070                : enet_udma_priv.oer5f (.text.EnetUdma_memMgrFreeRxFlowObj)
                      81f520d0    00000070                : enet_udma_priv.oer5f (.text.EnetUdma_memMgrFreeTdCqRingMemObj)
                      81f52140    00000070                : enet_udma_priv.oer5f (.text.EnetUdma_memMgrFreeTxChObj)
                      81f521b0    00000070                : icssg_tas.oer5f (.text.IcssgTas_setState)
                      81f52220    00000070                : icssg.oer5f (.text.Icssg_ioctlMacPort)
                      81f52290    00000070                : icssg.oer5f (.text.Icssg_setPriorityMapping)
                      81f52300    00000070     ti.kernel.freertos.aer5f : port_Hwi.oer5f (.text.Intc_IntUnregister)
                      81f52370    00000070     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.text.SemaphoreP_post)
                      81f523e0    00000070     ti.drv.uart.aer5f : UART_drv.oer5f (.text.UART_init)
                      81f52450    00000070     udma.aer5f : udma_ch.oer5f (.text.UdmaChTxPrms_init)
                      81f524c0    00000070                : udma_ch.oer5f (.text.Udma_psilcfgRead)
                      81f52530    00000070     ti.kernel.freertos.aer5f : timers.oer5f (.text.prvInitialiseNewTimer)
                      81f525a0    0000006c     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_mapMacAddr2TableWord_4G)
                      81f5260c    00000004     --HOLE-- [fill = 00000000]
                      81f52610    0000006c                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_mapMacAddr2TableWord_9G)
                      81f5267c    00000004     --HOLE-- [fill = 00000000]
                      81f52680    0000006c                  : csl_cpts.oer5f (.text.CSL_CPTS_setTSCompVal)
                      81f526ec    00000004     --HOLE-- [fill = 00000000]
                      81f526f0    0000006c     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_getFreeEntry)
                      81f5275c    00000004     --HOLE-- [fill = 00000000]
                      81f52760    0000006c     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_fixFldStrap)
                      81f527cc    00000004     --HOLE-- [fill = 00000000]
                      81f527d0    0000006c     enet_example_utils_full_freertos.aer5f : enet_apputils_k3.oer5f (.text.EnetAppUtils_unlockMmr)
                      81f5283c    00000004     --HOLE-- [fill = 00000000]
                      81f52840    0000006c     enet_multiport.oer5f (.text.EnetMp_deinit)
                      81f528ac    00000004     --HOLE-- [fill = 00000000]
                      81f528b0    0000006c     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_getModeString)
                      81f5291c    00000004     --HOLE-- [fill = 00000000]
                      81f52920    0000006c     enet.aer5f : enet_rm.oer5f (.text.EnetRm_validateRxFlow)
                      81f5298c    00000004     --HOLE-- [fill = 00000000]
                      81f52990    0000006c     enetsoc.aer5f : j7x_soc.oer5f (.text.EnetSocJ7x_getIntrNum)
                      81f529fc    0000006c     libsysbm.a : hostunlink.c.obj (.text.HOSTunlink)
                      81f52a68    00000008     --HOLE-- [fill = 00000000]
                      81f52a70    0000006c     enet.aer5f : icssg.oer5f (.text.Icssg_ioctlFdbAddEntry)
                      81f52adc    00000004     --HOLE-- [fill = 00000000]
                      81f52ae0    0000006c                : icssg.oer5f (.text.Icssg_ioctlFdbRemoveEntry)
                      81f52b4c    00000004     --HOLE-- [fill = 00000000]
                      81f52b50    0000006c                : icssg.oer5f (.text.Icssg_ioctlPreemptTxEnable)
                      81f52bbc    00000004     --HOLE-- [fill = 00000000]
                      81f52bc0    0000006c     ti.osal.aer5f : MutexP_freertos.oer5f (.text.MutexP_unlock)
                      81f52c2c    00000004     --HOLE-- [fill = 00000000]
                      81f52c30    0000006c     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_writeCancelNoCB)
                      81f52c9c    0000006c     libc.a : aeabi_portable.c.obj (.text.__aeabi_assert)
                      81f52d08    0000006c            : atoi.c.obj (.text.atoi)
                      81f52d74    0000006c            : getdevice.c.obj (.text.finddevice)
                      81f52de0    0000006c     ti.kernel.freertos.aer5f : queue.oer5f (.text.xQueueGiveMutexRecursive)
                      81f52e4c    00000004     --HOLE-- [fill = 00000000]
                      81f52e50    00000068     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_getCppiP0Control)
                      81f52eb8    00000008     --HOLE-- [fill = 00000000]
                      81f52ec0    00000068                  : csl_intaggr.oer5f (.text.CSL_intaggrIsIntrPending)
                      81f52f28    00000008     --HOLE-- [fill = 00000000]
                      81f52f30    00000068     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_delAllPolicerEntries)
                      81f52f98    00000008     --HOLE-- [fill = 00000000]
                      81f52fa0    00000068                : cpsw_ale.oer5f (.text.CpswAle_getNoMatchEntry0Policer)
                      81f53008    00000008     --HOLE-- [fill = 00000000]
                      81f53010    00000068                : cpsw_ale.oer5f (.text.CpswAle_setIPPolicerEntry)
                      81f53078    00000008     --HOLE-- [fill = 00000000]
                      81f53080    00000068                : cpsw_ale.oer5f (.text.CpswAle_validateMacAddrPolicer)
                      81f530e8    00000008     --HOLE-- [fill = 00000000]
                      81f530f0    00000068                : cpsw_ale.oer5f (.text.CpswAle_validateOuiPolicer)
                      81f53158    00000008     --HOLE-- [fill = 00000000]
                      81f53160    00000068                : cpsw_cpts.oer5f (.text.CpswCpts_clearEventMemPools)
                      81f531c8    00000008     --HOLE-- [fill = 00000000]
                      81f531d0    00000068     ti.board.aer5f : board_ddr.oer5f (.text.DDRx_Train_DQS2DQ)
                      81f53238    00000008     --HOLE-- [fill = 00000000]
                      81f53240    00000068     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.text.EnetDma_checkDescState)
                      81f532a8    00000008     --HOLE-- [fill = 00000000]
                      81f532b0    00000068                                            : enet_apputils.oer5f (.text.EnetDma_checkPktState)
                      81f53318    00000008     --HOLE-- [fill = 00000000]
                      81f53320    00000068     enet_multiport.oer5f (.text.EnetDma_checkPktState)
                      81f53388    00000008     --HOLE-- [fill = 00000000]
                      81f53390    00000068     enet_multiport.oer5f (.text.EnetMp_showMenu)
                      81f533f8    00000008     --HOLE-- [fill = 00000000]
                      81f53400    00000068     enet.aer5f : enet_osal_dflt.oer5f (.text.EnetOsalDflt_registerIntr)
                      81f53468    00000008     --HOLE-- [fill = 00000000]
                      81f53470    00000068     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_close)
                      81f534d8    00000008     --HOLE-- [fill = 00000000]
                      81f534e0    00000068     enet.aer5f : enet_queue.oer5f (.text.EnetQueue_getQCount)
                      81f53548    00000008     --HOLE-- [fill = 00000000]
                      81f53550    00000068                : enet_rm.oer5f (.text.EnetRm_freeRxFlowIdx)
                      81f535b8    00000008     --HOLE-- [fill = 00000000]
                      81f535c0    00000068                : icssg_utils.oer5f (.text.IcssgUtils_isR30CmdDone)
                      81f53628    00000008     --HOLE-- [fill = 00000000]
                      81f53630    00000068                : icssg.oer5f (.text.Icssg_MCastFloodingCtrl)
                      81f53698    00000008     --HOLE-- [fill = 00000000]
                      81f536a0    00000068                : icssg.oer5f (.text.Icssg_UCastFloodingCtrl)
                      81f53708    00000008     --HOLE-- [fill = 00000000]
                      81f53710    00000068                : icssg.oer5f (.text.Icssg_closeDma)
                      81f53778    00000008     --HOLE-- [fill = 00000000]
                      81f53780    00000068                : icssg.oer5f (.text.Icssg_ioctlSetMacAddress)
                      81f537e8    00000008     --HOLE-- [fill = 00000000]
                      81f537f0    00000068                : icssg.oer5f (.text.Icssg_validateDfltFlow)
                      81f53858    00000008     --HOLE-- [fill = 00000000]
                      81f53860    00000068     ti.csl.aer5f : interrupt.oer5f (.text.Intc_Init)
                      81f538c8    00000008     --HOLE-- [fill = 00000000]
                      81f538d0    00000068     ti.board.aer5f : board_ddr.oer5f (.text.SDRAM_Init)
                      81f53938    00000008     --HOLE-- [fill = 00000000]
                      81f53940    00000068     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIaVintGetInfo)
                      81f539a8    00000008     --HOLE-- [fill = 00000000]
                      81f539b0    00000068                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqUnmappedVintRouteDelete)
                      81f53a18    00000008     --HOLE-- [fill = 00000000]
                      81f53a20    00000068                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmUnmappedVintRouteCreate)
                      81f53a88    00000008     --HOLE-- [fill = 00000000]
                      81f53a90    00000068     ti.csl.aer5f : timer.oer5f (.text.TimerWaitForWrite)
                      81f53af8    00000008     --HOLE-- [fill = 00000000]
                      81f53b00    00000068                  : uart.oer5f (.text.UARTFIFORegisterWrite)
                      81f53b68    00000008     --HOLE-- [fill = 00000000]
                      81f53b70    00000068     ti.board.aer5f : board_ddr.oer5f (.text.VREF_Training)
                      81f53bd8    00000008     --HOLE-- [fill = 00000000]
                      81f53be0    00000068     ti.drv.pruss.aer5f : pruicss_drv.oer5f (.text.pruicss_get_ctrl_addr)
                      81f53c48    00000008     --HOLE-- [fill = 00000000]
                      81f53c50    00000068     ti.kernel.freertos.aer5f : timers.oer5f (.text.prvInsertTimerInActiveList)
                      81f53cb8    00000008     --HOLE-- [fill = 00000000]
                      81f53cc0    00000064     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_setAleAgingTimerReg)
                      81f53d24    0000000c     --HOLE-- [fill = 00000000]
                      81f53d30    00000064                  : csl_intaggr.oer5f (.text.CSL_intaggrClrIntr)
                      81f53d94    0000000c     --HOLE-- [fill = 00000000]
                      81f53da0    00000064                  : csl_udmap.oer5f (.text.CSL_udmapAccessChanPeerReg)
                      81f53e04    0000000c     --HOLE-- [fill = 00000000]
                      81f53e10    00000064     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_close)
                      81f53e74    0000000c     --HOLE-- [fill = 00000000]
                      81f53e80    00000064                : cpsw_ale.oer5f (.text.CpswAle_findVlanMaskMuxEntry)
                      81f53ee4    0000000c     --HOLE-- [fill = 00000000]
                      81f53ef0    00000064                : cpsw_ale.oer5f (.text.CpswAle_isIpv6HighEntry)
                      81f53f54    0000000c     --HOLE-- [fill = 00000000]
                      81f53f60    00000064                : cpsw_ale.oer5f (.text.CpswAle_setAleAging)
                      81f53fc4    0000000c     --HOLE-- [fill = 00000000]
                      81f53fd0    00000064                : cpsw_ale.oer5f (.text.CpswAle_setPolicerDefaultThreadCfg)
                      81f54034    0000000c     --HOLE-- [fill = 00000000]
                      81f54040    00000064                : cpsw_ale.oer5f (.text.CpswAle_setThreadPolicerConfig)
                      81f540a4    0000000c     --HOLE-- [fill = 00000000]
                      81f540b0    00000064                : cpsw_ale.oer5f (.text.CpswAle_validateThreadPolicer)
                      81f54114    0000000c     --HOLE-- [fill = 00000000]
                      81f54120    00000064                : cpsw_macport.oer5f (.text.CpswMacPort_setShortIpgCfg)
                      81f54184    0000000c     --HOLE-- [fill = 00000000]
                      81f54190    00000064     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_setGpioMux)
                      81f541f4    0000000c     --HOLE-- [fill = 00000000]
                      81f54200    00000064                   : dp83867.oer5f (.text.Dp83867_setMiiMode)
                      81f54264    0000000c     --HOLE-- [fill = 00000000]
                      81f54270    00000064     enet_example_utils_full_freertos.aer5f : enet_apputils_k3.oer5f (.text.EnetAppUtils_clkRateSetState)
                      81f542d4    0000000c     --HOLE-- [fill = 00000000]
                      81f542e0    00000064                                            : enet_apputils_k3.oer5f (.text.EnetAppUtils_lockMmr)
                      81f54344    0000000c     --HOLE-- [fill = 00000000]
                      81f54350    00000064                                            : enet_board_am65xevm.oer5f (.text.EnetBoard_setupPorts)
                      81f543b4    0000000c     --HOLE-- [fill = 00000000]
                      81f543c0    00000064     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_initCfg)
                      81f54424    0000000c     --HOLE-- [fill = 00000000]
                      81f54430    00000064     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_getIntrNum)
                      81f54494    0000000c     --HOLE-- [fill = 00000000]
                      81f544a0    00000064     ti.osal.aer5f : HwiP_freertos.oer5f (.text.HwiP_delete)
                      81f54504    0000000c     --HOLE-- [fill = 00000000]
                      81f54510    00000064     enet.aer5f : icssg.oer5f (.text.Icssg_ioctlPreemptTxDisable)
                      81f54574    0000000c     --HOLE-- [fill = 00000000]
                      81f54580    00000064                : icssg.oer5f (.text.Icssg_setAcceptableFrameCheckSync)
                      81f545e4    0000000c     --HOLE-- [fill = 00000000]
                      81f545f0    00000064     ti.osal.aer5f : LoadP_freertos.oer5f (.text.LoadP_addTask)
                      81f54654    0000000c     --HOLE-- [fill = 00000000]
                      81f54660    00000064     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIaValidateEvt)
                      81f546c4    0000000c     --HOLE-- [fill = 00000000]
                      81f546d0    00000064     ti.kernel.freertos.aer5f : list.oer5f (.text.vListInsert)
                      81f54734    00000064     libc.a : vsnprintf.c.obj (.text.vsnprintf)
                      81f54798    00000008     --HOLE-- [fill = 00000000]
                      81f547a0    00000064     ti.kernel.freertos.aer5f : queue.oer5f (.text.xQueueTakeMutexRecursive)
                      81f54804    0000000c     --HOLE-- [fill = 00000000]
                      81f54810    00000060     ti.board.aer5f : board_ethernet_config.oer5f (.text.Board_ethPhyExtendedRegRead)
                      81f54870    00000060                    : board_ethernet_config.oer5f (.text.Board_ethPhyExtendedRegWrite)
                      81f548d0    00000060                    : board_clock.oer5f (.text.Board_moduleClockInit)
                      81f54930    00000060     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getAleOutVlanEntry_4G)
                      81f54990    00000060                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getAleVlanEntry_4G)
                      81f549f0    00000060                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_setAdvAbility)
                      81f54a50    00000060                  : csl_vim.oer5f (.text.CSL_vimSetIntrEnable)
                      81f54ab0    00000060     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_delAllEntries)
                      81f54b10    00000060                : cpsw_macport_intervlan.oer5f (.text.CpswMacPort_checkRouteIsFree)
                      81f54b70    00000060                : cpsw_macport.oer5f (.text.CpswMacPort_checkSocCfg)
                      81f54bd0    00000060                : cpsw_macport_intervlan.oer5f (.text.CpswMacPort_clearAllRoutes)
                      81f54c30    00000060     enet_multiport.oer5f (.text.EnetMp_deleteClock)
                      81f54c90    00000060     enet_multiport.oer5f (.text.EnetMp_destroyRxTask)
                      81f54cf0    00000060     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_getClkFreq)
                      81f54d50    00000060     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_dmaDescDeque)
                      81f54db0    00000060                : enet.oer5f (.text.Enet_deinit)
                      81f54e10    00000060     libsysbm.a : hostclose.c.obj (.text.HOSTclose)
                      81f54e70    00000060     enet.aer5f : icssg_stats.oer5f (.text.IcssgStats_getPaStats)
                      81f54ed0    00000060                : icssg.oer5f (.text.Icssg_convertTs)
                      81f54f30    00000060     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_Params_init)
                      81f54f90    00000060     udma.aer5f : udma_ch.oer5f (.text.UdmaChRxPrms_init)
                      81f54ff0    00000060                : udma_flow.oer5f (.text.UdmaFlowPrms_init)
                      81f55050    00000060                : udma_osal.oer5f (.text.Udma_osalRegisterIntr)
                      81f550b0    00000060                : udma_ch.oer5f (.text.Udma_psilcfgWrite)
                      81f55110    00000060     ti.kernel.freertos.aer5f : port.oer5f (.text.uxPortGetTimeInUsec)
                      81f55170    00000060                              : queue.oer5f (.text.vQueueWaitForMessageRestricted)
                      81f551d0    0000005c     ti.csl.aer5f : csl_mdio.oer5f (.text.CSL_MDIO_phyInitiateRegWriteC45)
                      81f5522c    00000004     --HOLE-- [fill = 00000000]
                      81f55230    0000005c     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_ageOut)
                      81f5528c    00000004     --HOLE-- [fill = 00000000]
                      81f55290    0000005c                : cpsw_ale.oer5f (.text.CpswAle_matchIPv6AddrRegWord)
                      81f552ec    00000004     --HOLE-- [fill = 00000000]
                      81f552f0    0000005c                : cpsw_ale.oer5f (.text.CpswAle_printRegs)
                      81f5534c    00000004     --HOLE-- [fill = 00000000]
                      81f55350    0000005c                : cpsw_hostport.oer5f (.text.CpswHostPort_close)
                      81f553ac    00000004     --HOLE-- [fill = 00000000]
                      81f553b0    0000005c                : cpsw_macport_intervlan.oer5f (.text.CpswMacPort_clearRouteId)
                      81f5540c    00000004     --HOLE-- [fill = 00000000]
                      81f55410    0000005c                : cpsw_macport.oer5f (.text.CpswMacPort_disableCptsPortEvents)
                      81f5546c    00000004     --HOLE-- [fill = 00000000]
                      81f55470    0000005c                : cpsw.oer5f (.text.Cpsw_mdioIsr)
                      81f554cc    00000004     --HOLE-- [fill = 00000000]
                      81f554d0    0000005c                : cpsw_intervlan.oer5f (.text.Cpsw_validateInterVlanEgressCfg)
                      81f5552c    00000004     --HOLE-- [fill = 00000000]
                      81f55530    0000005c     enet_example_utils_full_freertos.aer5f : enet_apputils.oer5f (.text.EnetAppUtils_validatePacketState)
                      81f5558c    00000004     --HOLE-- [fill = 00000000]
                      81f55590    0000005c                                            : enet_board_am65xevm.oer5f (.text.EnetBoard_init)
                      81f555ec    00000004     --HOLE-- [fill = 00000000]
                      81f555f0    0000005c     enet_multiport.oer5f (.text.EnetMp_initAleConfig)
                      81f5564c    00000004     --HOLE-- [fill = 00000000]
                      81f55650    0000005c     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_getHandle)
                      81f556ac    00000004     --HOLE-- [fill = 00000000]
                      81f556b0    0000005c     enet.aer5f : icssg_utils.oer5f (.text.IcssgUtils_sendHwqMgmtMsg)
                      81f5570c    00000004     --HOLE-- [fill = 00000000]
                      81f55710    0000005c                : icssg.oer5f (.text.Icssg_getVlanId)
                      81f5576c    00000004     --HOLE-- [fill = 00000000]
                      81f55770    0000005c                : icssg.oer5f (.text.Icssg_initPriorityRegen)
                      81f557cc    00000004     --HOLE-- [fill = 00000000]
                      81f557d0    0000005c                : icssg.oer5f (.text.Icssg_updateLinkDown)
                      81f5582c    00000004     --HOLE-- [fill = 00000000]
                      81f55830    0000005c                : icssg.oer5f (.text.Icssg_updateRgmiiCfg100FD)
                      81f5588c    00000004     --HOLE-- [fill = 00000000]
                      81f55890    0000005c                : icssg.oer5f (.text.Icssg_updateRgmiiCfg10FD)
                      81f558ec    00000004     --HOLE-- [fill = 00000000]
                      81f558f0    0000005c                : icssg.oer5f (.text.Icssg_updateRgmiiCfg10HD)
                      81f5594c    00000004     --HOLE-- [fill = 00000000]
                      81f55950    0000005c     ti.csl.aer5f : timer.oer5f (.text.TIMERDisable)
                      81f559ac    00000004     --HOLE-- [fill = 00000000]
                      81f559b0    0000005c                  : timer.oer5f (.text.TIMEREnable)
                      81f55a0c    00000004     --HOLE-- [fill = 00000000]
                      81f55a10    0000005c     udma.aer5f : udma.oer5f (.text.UdmaInitPrms_init)
                      81f55a6c    00000004     --HOLE-- [fill = 00000000]
                      81f55a70    0000005c                : udma_flow.oer5f (.text.Udma_flowDetach)
                      81f55acc    00000004     --HOLE-- [fill = 00000000]
                      81f55ad0    0000005c                : udma_ch.oer5f (.text.Udma_psilcfgSetEnable)
                      81f55b2c    00000004     --HOLE-- [fill = 00000000]
                      81f55b30    0000005c                : udma_ch.oer5f (.text.Udma_psilcfgSetRtEnable)
                      81f55b8c    00000004     --HOLE-- [fill = 00000000]
                      81f55b90    0000005c     ti.kernel.freertos.aer5f : tasks.oer5f (.text.vTaskDelay)
                      81f55bec    0000005c     libc.a : autoinit.c.obj (.text:__TI_auto_init_nobinit_nopinit)
                      81f55c48    00000008     --HOLE-- [fill = 00000000]
                      81f55c50    00000058     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_getPortControlReg)
                      81f55ca8    00000008     --HOLE-- [fill = 00000000]
                      81f55cb0    00000058                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAlePolicerControlReg)
                      81f55d08    00000008     --HOLE-- [fill = 00000000]
                      81f55d10    00000058                  : csl_mdio.oer5f (.text.CSL_MDIO_phyRegRead2)
                      81f55d68    00000008     --HOLE-- [fill = 00000000]
                      81f55d70    00000058                  : csl_serdes3.oer5f (.text.CSL_serdesCycleDelay)
                      81f55dc8    00000008     --HOLE-- [fill = 00000000]
                      81f55dd0    00000058                  : csl_serdes3_pcie.oer5f (.text.CSL_serdesPCIeInit)
                      81f55e28    00000008     --HOLE-- [fill = 00000000]
                      81f55e30    00000058     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_getVlanMcastPortMask)
                      81f55e88    00000008     --HOLE-- [fill = 00000000]
                      81f55e90    00000058     ti.board.aer5f : board_ddr.oer5f (.text.DQSGate_Training)
                      81f55ee8    00000008     --HOLE-- [fill = 00000000]
                      81f55ef0    00000058     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_setDspFFE)
                      81f55f48    00000008     --HOLE-- [fill = 00000000]
                      81f55f50    00000058                   : dp83867.oer5f (.text.Dp83867_setVtmIdleThresh)
                      81f55fa8    00000008     --HOLE-- [fill = 00000000]
                      81f55fb0    00000058                   : enetphy.oer5f (.text.EnetPhy_phyTimeout)
                      81f56008    00000008     --HOLE-- [fill = 00000000]
                      81f56010    00000058     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_getMacPortMax)
                      81f56068    00000008     --HOLE-- [fill = 00000000]
                      81f56070    00000058     enet.aer5f : enet_utils.oer5f (.text.EnetUtils_init)
                      81f560c8    00000008     --HOLE-- [fill = 00000000]
                      81f560d0    00000058                : enet_utils.oer5f (.text.EnetUtils_vprintf)
                      81f56128    00000008     --HOLE-- [fill = 00000000]
                      81f56130    00000058     enetphy.aer5f : generic_phy.oer5f (.text.GenericPhy_printRegs)
                      81f56188    00000008     --HOLE-- [fill = 00000000]
                      81f56190    00000058     enet.aer5f : icssg_utils.oer5f (.text.IcssgUtils_hwqPop)
                      81f561e8    00000008     --HOLE-- [fill = 00000000]
                      81f561f0    00000058     ti.board.aer5f : board_ddr.oer5f (.text.WriteLevelAdjustment)
                      81f56248    00000008     --HOLE-- [fill = 00000000]
                      81f56250    00000058                    : board_ddr.oer5f (.text.WriteLeveling_Training)
                      81f562a8    00000058     libsysbm.a : trgmsg.c.obj (.text.__TI_readmsg)
                      81f56300    00000058                : trgmsg.c.obj (.text.__TI_writemsg)
                      81f56358    00000058     libc.a : _printfi.c.obj (.text._fcpy)
                      81f563b0    00000058            : snprintf.c.obj (.text._outs)
                      81f56408    00000058            : vsnprintf.c.obj (.text._outs)
                      81f56460    00000058            : sprintf.c.obj (.text.sprintf)
                      81f564b8    00000008     --HOLE-- [fill = 00000000]
                      81f564c0    00000058     ti.drv.uart.aer5f : UART_stdio.oer5f (.text.uart_console_putc)
                      81f56518    00000008     --HOLE-- [fill = 00000000]
                      81f56520    00000058     ti.kernel.freertos.aer5f : tasks.oer5f (.text.vTaskPlaceOnEventListRestricted)
                      81f56578    00000008     --HOLE-- [fill = 00000000]
                      81f56580    00000054     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_getPortBlockCountReg)
                      81f565d4    0000000c     --HOLE-- [fill = 00000000]
                      81f565e0    00000054                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_setAleEthertypeEntry_4G)
                      81f56634    0000000c     --HOLE-- [fill = 00000000]
                      81f56640    00000054                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_setAleEthertypeEntry_9G)
                      81f56694    0000000c     --HOLE-- [fill = 00000000]
                      81f566a0    00000054                  : csl_mdio.oer5f (.text.CSL_MDIO_phyInitiateRegReadC45)
                      81f566f4    0000000c     --HOLE-- [fill = 00000000]
                      81f56700    00000054                  : csl_intaggr.oer5f (.text.CSL_intaggrGetCfg)
                      81f56754    0000000c     --HOLE-- [fill = 00000000]
                      81f56760    00000054                  : csl_serdes3.oer5f (.text.CSL_serdesDisablePllAndLanes)
                      81f567b4    0000000c     --HOLE-- [fill = 00000000]
                      81f567c0    00000054                  : csl_vim.oer5f (.text.CSL_vimClrIntrPending)
                      81f56814    0000000c     --HOLE-- [fill = 00000000]
                      81f56820    00000054                  : csl_vim.oer5f (.text.CSL_vimGetIntrType)
                      81f56874    0000000c     --HOLE-- [fill = 00000000]
                      81f56880    00000054     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_getPolicerStatsHandler)
                      81f568d4    0000000c     --HOLE-- [fill = 00000000]
                      81f568e0    00000054                : cpsw_hostport.oer5f (.text.CpswHostPort_getDscpPriority)
                      81f56934    0000000c     --HOLE-- [fill = 00000000]
                      81f56940    00000054                : cpsw_macport.oer5f (.text.CpswMacPort_getDscpPriority)
                      81f56994    0000000c     --HOLE-- [fill = 00000000]
                      81f569a0    00000054     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_reset)
                      81f569f4    0000000c     --HOLE-- [fill = 00000000]
                      81f56a00    00000054                   : dp83867.oer5f (.text.Dp83867_restart)
                      81f56a54    0000000c     --HOLE-- [fill = 00000000]
                      81f56a60    00000054     enet.aer5f : enet_rm.oer5f (.text.EnetRm_attachCore)
                      81f56ab4    0000000c     --HOLE-- [fill = 00000000]
                      81f56ac0    00000054     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_deinit)
                      81f56b14    0000000c     --HOLE-- [fill = 00000000]
                      81f56b20    00000054                   : enet_soc.oer5f (.text.EnetSoc_getMacPortCaps)
                      81f56b74    0000000c     --HOLE-- [fill = 00000000]
                      81f56b80    00000054     enetphy.aer5f : generic_phy.oer5f (.text.GenericPhy_reset)
                      81f56bd4    0000000c     --HOLE-- [fill = 00000000]
                      81f56be0    00000054     enet.aer5f : icssg.oer5f (.text.Icssg_handleLinkDown)
                      81f56c34    0000000c     --HOLE-- [fill = 00000000]
                      81f56c40    00000054     sciclient.aer5f : sciclient_secureproxy.oer5f (.text.Sciclient_flush)
                      81f56c94    0000000c     --HOLE-- [fill = 00000000]
                      81f56ca0    00000054     ti.csl.aer5f : uart.oer5f (.text.UARTCharPutNonBlocking)
                      81f56cf4    0000000c     --HOLE-- [fill = 00000000]
                      81f56d00    00000054     ti.drv.uart.aer5f : UART_stdio.oer5f (.text.UART_dataWrite)
                      81f56d54    0000000c     --HOLE-- [fill = 00000000]
                      81f56d60    00000054     udma.aer5f : udma_ring_normal.oer5f (.text.Udma_ringPrimeReadNormal)
                      81f56db4    0000000c     --HOLE-- [fill = 00000000]
                      81f56dc0    00000054                : udma_osal.oer5f (.text.Udma_ringaccMemOps)
                      81f56e14    00000054     libc.a : fopen.c.obj (.text.__TI_cleanup)
                      81f56e68    00000054            : exit.c.obj (.text.exit)
                      81f56ebc    00000004     --HOLE-- [fill = 00000000]
                      81f56ec0    00000050     ti.board.aer5f : am65xx_idk.oer5f (.text.Board_sysInit)
                      81f56f10    00000050     ti.csl.aer5f : csl_mdio.oer5f (.text.CSL_MDIO_phyRegWrite2)
                      81f56f60    00000050     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.text.EnetAppUtils_assertLocal)
                      81f56fb0    00000050                                            : enet_appsoc.oer5f (.text.EnetAppUtils_assertLocal)
                      81f57000    00000050                                            : enet_apputils.oer5f (.text.EnetAppUtils_assertLocal)
                      81f57050    00000050                                            : enet_apputils_k3.oer5f (.text.EnetAppUtils_assertLocal)
                      81f570a0    00000050                                            : enet_board_am65xevm.oer5f (.text.EnetAppUtils_assertLocal)
                      81f570f0    00000050                                            : enet_udmautils.oer5f (.text.EnetAppUtils_assertLocal)
                      81f57140    00000050     enet_multiport.oer5f (.text.EnetAppUtils_assertLocal)
                      81f57190    00000050     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_getEFusedMacAddrs)
                      81f571e0    00000050     enet.aer5f : cpsw.oer5f (.text.EnetUtils_assertLocal)
                      81f57230    00000050                : cpsw_ale.oer5f (.text.EnetUtils_assertLocal)
                      81f57280    00000050                : cpsw_cpts.oer5f (.text.EnetUtils_assertLocal)
                      81f572d0    00000050                : cpsw_hostport.oer5f (.text.EnetUtils_assertLocal)
                      81f57320    00000050                : cpsw_intervlan.oer5f (.text.EnetUtils_assertLocal)
                      81f57370    00000050                : cpsw_macport.oer5f (.text.EnetUtils_assertLocal)
                      81f573c0    00000050                : cpsw_macport_intervlan.oer5f (.text.EnetUtils_assertLocal)
                      81f57410    00000050                : cpsw_stats.oer5f (.text.EnetUtils_assertLocal)
                      81f57460    00000050                : enet.oer5f (.text.EnetUtils_assertLocal)
                      81f574b0    00000050                : enet_osal.oer5f (.text.EnetUtils_assertLocal)
                      81f57500    00000050                : enet_queue.oer5f (.text.EnetUtils_assertLocal)
                      81f57550    00000050                : enet_rm.oer5f (.text.EnetUtils_assertLocal)
                      81f575a0    00000050                : enet_udma.oer5f (.text.EnetUtils_assertLocal)
                      81f575f0    00000050                : icssg.oer5f (.text.EnetUtils_assertLocal)
                      81f57640    00000050                : icssg_tas.oer5f (.text.EnetUtils_assertLocal)
                      81f57690    00000050                : icssg_timesync.oer5f (.text.EnetUtils_assertLocal)
                      81f576e0    00000050                : icssg_utils.oer5f (.text.EnetUtils_assertLocal)
                      81f57730    00000050                : mdio.oer5f (.text.EnetUtils_assertLocal)
                      81f57780    00000050     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.text.EnetUtils_assertLocal)
                      81f577d0    00000050                                            : enet_apputils.oer5f (.text.EnetUtils_assertLocal)
                      81f57820    00000050     enet_multiport.oer5f (.text.EnetUtils_assertLocal)
                      81f57870    00000050     enetphy.aer5f : enetphy.oer5f (.text.EnetUtils_assertLocal)
                      81f578c0    00000050                   : vsc8514.oer5f (.text.EnetUtils_assertLocal)
                      81f57910    00000050     enet.aer5f : icssg.oer5f (.text.Icssg_ioctlPreemptSetMinFragSizeRemote)
                      81f57960    00000050                : icssg.oer5f (.text.Icssg_updateRgmiiCfg100HD)
                      81f579b0    00000050                : icssg.oer5f (.text.Icssg_updateRgmiiCfg1G)
                      81f57a00    00000050     ti.board.aer5f : board_mmr.oer5f (.text.MMR_unlock)
                      81f57a50    00000050     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_getCurrentContext)
                      81f57aa0    00000050                     : sciclient_secureproxy.oer5f (.text.Sciclient_waitThread)
                      81f57af0    00000050     ti.csl.aer5f : uart.oer5f (.text.UARTCharGetNonBlocking2)
                      81f57b40    00000050                  : uart.oer5f (.text.UARTCharPut)
                      81f57b90    00000050                  : uart.oer5f (.text.UARTDivisorValCompute)
                      81f57be0    00000050                  : uart.oer5f (.text.UARTRegConfigModeEnable)
                      81f57c30    00000050     udma.aer5f : udma_event.oer5f (.text.Udma_eventDisable)
                      81f57c80    00000050                : udma_rm.oer5f (.text.Udma_rmTranslateCoreIntrInput)
                      81f57cd0    00000050                : udma_rm.oer5f (.text.Udma_rmTranslateIrOutput)
                      81f57d20    00000050     enetphy.aer5f : vsc8514.oer5f (.text.Vsc8514_rmwExtReg)
                      81f57d70    00000050     ti.kernel.freertos.aer5f : tasks.oer5f (.text.prvDeleteTCB)
                      81f57dc0    00000050                              : port.oer5f (.text.vPortEnterCritical)
                      81f57e10    0000004c     ti.board.aer5f : board_ethernet_config.oer5f (.text.Board_setupCpswSs)
                      81f57e5c    00000004     --HOLE-- [fill = 00000000]
                      81f57e60    0000004c     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_getP0FifoStatus)
                      81f57eac    00000004     --HOLE-- [fill = 00000000]
                      81f57eb0    0000004c                  : csl_cpts.oer5f (.text.CSL_CPTS_setTSPpm)
                      81f57efc    00000004     --HOLE-- [fill = 00000000]
                      81f57f00    0000004c                  : csl_cpts.oer5f (.text.CSL_CPTS_setTSVal)
                      81f57f4c    00000004     --HOLE-- [fill = 00000000]
                      81f57f50    0000004c                  : csl_mdio.oer5f (.text.CSL_MDIO_getVersionInfo)
                      81f57f9c    00000004     --HOLE-- [fill = 00000000]
                      81f57fa0    0000004c                  : csl_serdes3.oer5f (.text.CSL_serdesPllEnable)
                      81f57fec    00000004     --HOLE-- [fill = 00000000]
                      81f57ff0    0000004c     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_mapAleAgingIntervalMsToAgingTimer)
                      81f5803c    00000004     --HOLE-- [fill = 00000000]
                      81f58040    0000004c                : cpsw_ale.oer5f (.text.CpswAle_setUnknownVlanCfg)
                      81f5808c    00000004     --HOLE-- [fill = 00000000]
                      81f58090    0000004c                : cpsw_cpts.oer5f (.text.CpswCpts_checkTsCompCompat)
                      81f580dc    00000004     --HOLE-- [fill = 00000000]
                      81f580e0    0000004c                : cpsw_macport.oer5f (.text.CpswMacPort_disablePort)
                      81f5812c    00000004     --HOLE-- [fill = 00000000]
                      81f58130    0000004c                : cpsw_macport.oer5f (.text.CpswMacPort_disableTrafficShaping)
                      81f5817c    00000004     --HOLE-- [fill = 00000000]
                      81f58180    0000004c     ti.board.aer5f : board_ddr.oer5f (.text.Disable_DQS_PD)
                      81f581cc    00000004     --HOLE-- [fill = 00000000]
                      81f581d0    0000004c                    : board_ddr.oer5f (.text.Enable_DQS_PD)
                      81f5821c    00000004     --HOLE-- [fill = 00000000]
                      81f58220    0000004c     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.EnetAppUtils_freeRxFlowForChIdx)
                      81f5826c    00000004     --HOLE-- [fill = 00000000]
                      81f58270    0000004c                                            : enet_udmautils.oer5f (.text.EnetAppUtils_setCommonRxFlowPrms)
                      81f582bc    00000004     --HOLE-- [fill = 00000000]
                      81f582c0    0000004c     enet.aer5f : icssg_tas.oer5f (.text.IccsgTas_updateOperListStatus)
                      81f5830c    00000004     --HOLE-- [fill = 00000000]
                      81f58310    0000004c                : icssg_utils.oer5f (.text.IcssgUtils_FdbHelper)
                      81f5835c    00000004     --HOLE-- [fill = 00000000]
                      81f58360    0000004c                : icssg_utils.oer5f (.text.IcssgUtils_hwqLevel)
                      81f583ac    00000004     --HOLE-- [fill = 00000000]
                      81f583b0    0000004c                : icssg_utils.oer5f (.text.IcssgUtils_hwqPush)
                      81f583fc    00000004     --HOLE-- [fill = 00000000]
                      81f58400    0000004c                : icssg.oer5f (.text.Icssg_updateLinkSpeed10MB)
                      81f5844c    00000004     --HOLE-- [fill = 00000000]
                      81f58450    0000004c     ti.osal.aer5f : Arch_util.oer5f (.text.OsalArch_HwiPDelete)
                      81f5849c    00000004     --HOLE-- [fill = 00000000]
                      81f584a0    0000004c     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmPsPush)
                      81f584ec    00000004     --HOLE-- [fill = 00000000]
                      81f584f0    0000004c     ti.csl.aer5f : uart.oer5f (.text.UARTEnhanFuncEnable)
                      81f5853c    00000004     --HOLE-- [fill = 00000000]
                      81f58540    0000004c     udma.aer5f : udma_ch.oer5f (.text.UdmaChUtcPrms_init)
                      81f5858c    00000004     --HOLE-- [fill = 00000000]
                      81f58590    0000004c                : udma_ring_common.oer5f (.text.UdmaRingPrms_init)
                      81f585dc    00000004     --HOLE-- [fill = 00000000]
                      81f585e0    0000004c                : udma_ring_normal.oer5f (.text.Udma_ringPrimeNormal)
                      81f5862c    00000004     --HOLE-- [fill = 00000000]
                      81f58630    0000004c                : udma_ring_normal.oer5f (.text.Udma_ringQueueRawNormal)
                      81f5867c    0000004c     libc.a : rand.c.obj (.text.rand)
                      81f586c8    00000008     --HOLE-- [fill = 00000000]
                      81f586d0    0000004c     ti.kernel.freertos.aer5f : tasks.oer5f (.text.vTaskPlaceOnEventList)
                      81f5871c    00000004     --HOLE-- [fill = 00000000]
                      81f58720    00000048     ti.board.aer5f : am65xx_idk_serdes_cfg.oer5f (.text.Board_serdesCfg)
                      81f58768    00000008     --HOLE-- [fill = 00000000]
                      81f58770    00000048     ti.csl.aer5f : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_getFifoStatus)
                      81f587b8    00000008     --HOLE-- [fill = 00000000]
                      81f587c0    00000048                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleIPNxtHdrWhitelist)
                      81f58808    00000008     --HOLE-- [fill = 00000000]
                      81f58810    00000048                  : csl_cache.oer5f (.text.CSL_armR5CacheInv)
                      81f58858    00000008     --HOLE-- [fill = 00000000]
                      81f58860    00000048                  : csl_cache.oer5f (.text.CSL_armR5CacheWb)
                      81f588a8    00000008     --HOLE-- [fill = 00000000]
                      81f588b0    00000048                  : csl_cache.oer5f (.text.CSL_armR5CacheWbInv)
                      81f588f8    00000008     --HOLE-- [fill = 00000000]
                      81f58900    00000048     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_delPolicer)
                      81f58948    00000008     --HOLE-- [fill = 00000000]
                      81f58950    00000048     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.EnetAppUtils_freeTxCh)
                      81f58998    00000008     --HOLE-- [fill = 00000000]
                      81f589a0    00000048     enet.aer5f : enet_osal_dflt.oer5f (.text.EnetOsalDflt_deleteMutex)
                      81f589e8    00000008     --HOLE-- [fill = 00000000]
                      81f589f0    00000048                : enet_rm.oer5f (.text.EnetRm_freeCoreResource)
                      81f58a38    00000008     --HOLE-- [fill = 00000000]
                      81f58a40    00000048     enetsoc.aer5f : j7x_soc.oer5f (.text.EnetSocJ7x_rmIrqSet)
                      81f58a88    00000008     --HOLE-- [fill = 00000000]
                      81f58a90    00000048                   : enet_soc.oer5f (.text.EnetSoc_getMcuEnetControl)
                      81f58ad8    00000008     --HOLE-- [fill = 00000000]
                      81f58ae0    00000048     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_freeRing)
                      81f58b28    00000008     --HOLE-- [fill = 00000000]
                      81f58b30    00000048                : icssg_stats.oer5f (.text.IcssgStats_resetMacPortStats)
                      81f58b78    00000008     --HOLE-- [fill = 00000000]
                      81f58b80    00000048                : icssg_utils.oer5f (.text.IcssgUtils_R30CmdInit)
                      81f58bc8    00000008     --HOLE-- [fill = 00000000]
                      81f58bd0    00000048                : icssg_utils.oer5f (.text.IcssgUtils_hwqPushForSlice)
                      81f58c18    00000008     --HOLE-- [fill = 00000000]
                      81f58c20    00000048                : icssg.oer5f (.text.Icssg_ioctlPreemptGetMinFragSizeLocal)
                      81f58c68    00000008     --HOLE-- [fill = 00000000]
                      81f58c70    00000048                : icssg.oer5f (.text.Icssg_ioctlPreemptGetTxActiveStatus)
                      81f58cb8    00000008     --HOLE-- [fill = 00000000]
                      81f58cc0    00000048     ti.osal.aer5f : TaskP_freertos.oer5f (.text.TaskP_isTerminated)
                      81f58d08    00000008     --HOLE-- [fill = 00000000]
                      81f58d10    00000048                   : TimerP_nonos.oer5f (.text.TimerP_getTimerBaseAddr)
                      81f58d58    00000008     --HOLE-- [fill = 00000000]
                      81f58d60    00000048     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_getWLenStbFlag)
                      81f58da8    00000008     --HOLE-- [fill = 00000000]
                      81f58db0    00000048     udma.aer5f : udma_utils.oer5f (.text.Udma_phyToVirtFxn)
                      81f58df8    00000048     libc.a : memccpy.c.obj (.text.memccpy)
                      81f58e40    00000048     libsysbm.a : unlink.c.obj (.text.unlink)
                      81f58e88    00000008     --HOLE-- [fill = 00000000]
                      81f58e90    00000048     ti.osal.aer5f : LoadP_freertos.oer5f (.text.vApplicationLoadHook)
                      81f58ed8    00000008     --HOLE-- [fill = 00000000]
                      81f58ee0    00000048     ti.kernel.freertos.aer5f : port.oer5f (.text.vPortExitCritical)
                      81f58f28    00000008     --HOLE-- [fill = 00000000]
                      81f58f30    00000044     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getAleIPv4Entry_4G)
                      81f58f74    0000000c     --HOLE-- [fill = 00000000]
                      81f58f80    00000044                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getAleIPv4Entry_9G)
                      81f58fc4    0000000c     --HOLE-- [fill = 00000000]
                      81f58fd0    00000044                  : csl_cpsw.oer5f (.text.CSL_CPSW_setPortVlanReg)
                      81f59014    0000000c     --HOLE-- [fill = 00000000]
                      81f59020    00000044                  : csl_dru.oer5f (.text.CSL_druChIsTeardownComplete)
                      81f59064    0000000c     --HOLE-- [fill = 00000000]
                      81f59070    00000044                  : csl_udmap.oer5f (.text.CSL_udmapGetRxRT)
                      81f590b4    0000000c     --HOLE-- [fill = 00000000]
                      81f590c0    00000044                  : csl_udmap.oer5f (.text.CSL_udmapGetTxRT)
                      81f59104    0000000c     --HOLE-- [fill = 00000000]
                      81f59110    00000044     enet.aer5f : cpsw_macport.oer5f (.text.CpswMacPort_getLinkCfg)
                      81f59154    0000000c     --HOLE-- [fill = 00000000]
                      81f59160    00000044                : cpsw_macport.oer5f (.text.CpswMacPort_getShortIpgCfg)
                      81f591a4    0000000c     --HOLE-- [fill = 00000000]
                      81f591b0    00000044                : cpsw_macport.oer5f (.text.CpswMacPort_resetSgmiiPort)
                      81f591f4    0000000c     --HOLE-- [fill = 00000000]
                      81f59200    00000044     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.EnetAppUtils_setCommonTxChPrms)
                      81f59244    0000000c     --HOLE-- [fill = 00000000]
                      81f59250    00000044     enetsoc.aer5f : j7x_soc.oer5f (.text.EnetSocJ7x_rmIrqRelease)
                      81f59294    0000000c     --HOLE-- [fill = 00000000]
                      81f592a0    00000044     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_deInitRxFreeDescQ)
                      81f592e4    0000000c     --HOLE-- [fill = 00000000]
                      81f592f0    00000044                : enet_udma_priv.oer5f (.text.EnetUdma_deInitTxFreeDescQ)
                      81f59334    0000000c     --HOLE-- [fill = 00000000]
                      81f59340    00000044                : cpsw_stats.oer5f (.text.Enet_checkInOutArgs)
                      81f59384    0000000c     --HOLE-- [fill = 00000000]
                      81f59390    00000044                : icssg.oer5f (.text.Icssg_ioctlPreemptGetTxEnableStatus)
                      81f593d4    0000000c     --HOLE-- [fill = 00000000]
                      81f593e0    00000044     ti.osal.aer5f : RegisterIntr_nonos.oer5f (.text.Osal_RegisterInterrupt_initParams)
                      81f59424    0000000c     --HOLE-- [fill = 00000000]
                      81f59430    00000044     ti.drv.pruss.aer5f : pruicss_drv.oer5f (.text.PRUICSS_create)
                      81f59474    0000000c     --HOLE-- [fill = 00000000]
                      81f59480    00000044                        : pruicss_drv.oer5f (.text.PRUICSS_pruDisable)
                      81f594c4    0000000c     --HOLE-- [fill = 00000000]
                      81f594d0    00000044                        : pruicss_drv.oer5f (.text.PRUICSS_pruEnable)
                      81f59514    0000000c     --HOLE-- [fill = 00000000]
                      81f59520    00000044     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrGetInst)
                      81f59564    0000000c     --HOLE-- [fill = 00000000]
                      81f59570    00000044     ti.csl.aer5f : timer.oer5f (.text.TIMERCompareSet)
                      81f595b4    0000000c     --HOLE-- [fill = 00000000]
                      81f595c0    00000044                  : timer.oer5f (.text.TIMERCounterGet2)
                      81f59604    0000000c     --HOLE-- [fill = 00000000]
                      81f59610    00000044                  : timer.oer5f (.text.TIMERCounterSet)
                      81f59654    0000000c     --HOLE-- [fill = 00000000]
                      81f59660    00000044                  : timer.oer5f (.text.TIMERReloadGet2)
                      81f596a4    0000000c     --HOLE-- [fill = 00000000]
                      81f596b0    00000044                  : timer.oer5f (.text.TIMERReloadSet)
                      81f596f4    0000000c     --HOLE-- [fill = 00000000]
                      81f59700    00000044     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_dmTimerStub)
                      81f59744    0000000c     --HOLE-- [fill = 00000000]
                      81f59750    00000044     udma.aer5f : udma_ring_normal.oer5f (.text.Udma_ringDequeueRawNormal)
                      81f59794    0000000c     --HOLE-- [fill = 00000000]
                      81f597a0    00000044                : udma_utils.oer5f (.text.Udma_virtToPhyFxn)
                      81f597e4    0000000c     --HOLE-- [fill = 00000000]
                      81f597f0    00000040     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_getAlePolicerControlReg)
                      81f59830    00000040                  : csl_cpts.oer5f (.text.CSL_CPTS_setTSAddVal)
                      81f59870    00000040                  : csl_vim.oer5f (.text.CSL_vimAckIntr)
                      81f598b0    00000040     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_delAddr)
                      81f598f0    00000040                : cpsw_ale.oer5f (.text.CpswAle_delIPv4Addr)
                      81f59930    00000040                : cpsw_ale.oer5f (.text.CpswAle_delIPv6Addr)
                      81f59970    00000040                : cpsw_hostport.oer5f (.text.CpswHostPort_getMaxLen)
                      81f599b0    00000040                : cpsw_macport.oer5f (.text.CpswMacPort_getMaxLen)
                      81f599f0    00000040                : cpsw.oer5f (.text.Cpsw_getPortLinkState)
                      81f59a30    00000040     enet_example_utils_full_freertos.aer5f : enet_ioctlutils.oer5f (.text.EnetAppUtils_assertLocal)
                      81f59a70    00000040     enet.aer5f : enet_rm.oer5f (.text.EnetRm_validateCoreKey)
                      81f59ab0    00000040                : enet_hostport_udma.oer5f (.text.EnetUtils_assertLocal)
                      81f59af0    00000040                : enet_udma_priv.oer5f (.text.EnetUtils_assertLocal)
                      81f59b30    00000040                : enet_utils.oer5f (.text.EnetUtils_assertLocal)
                      81f59b70    00000040                : icssg.oer5f (.text.Icssg_ioctlPreemptGetVerifyState)
                      81f59bb0    00000040                : icssg.oer5f (.text.Icssg_rejoin)
                      81f59bf0    00000040     ti.board.aer5f : board_ddr.oer5f (.text.PHY_Init)
                      81f59c30    00000040     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIaGetInst)
                      81f59c70    00000040                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqProgramOesRegister)
                      81f59cb0    00000040     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.text.SemaphoreP_constructCounting)
                      81f59cf0    00000040     ti.csl.aer5f : timer.oer5f (.text.TIMERPostedModeConfig)
                      81f59d30    00000040                  : uart.oer5f (.text.UARTIsTransmitterEmpty)
                      81f59d70    00000040     udma.aer5f : udma_proxy.oer5f (.text.Udma_assertLocal)
                      81f59db0    00000040                : udma_ring_normal.oer5f (.text.Udma_ringGetRingOccNormal)
                      81f59df0    00000040     enetphy.aer5f : vsc8514.oer5f (.text.Vsc8514_readExtReg)
                      81f59e30    00000040                   : vsc8514.oer5f (.text.Vsc8514_writeExtReg)
                      81f59e70    00000040     ti.board.aer5f : board_ddr.oer5f (.text.boardDDRDelay)
                      81f59eb0    00000040     libc.a : memory.c.obj (.text.free_list_insert)
                      81f59ef0    00000040     ti.kernel.freertos.aer5f : queue.oer5f (.text.prvCopyDataFromQueue)
                      81f59f30    00000040                              : timers.oer5f (.text.prvSampleTimeNow)
                      81f59f70    00000040                              : list.oer5f (.text.uxListRemove)
                      81f59fb0    00000040                              : queue.oer5f (.text.vQueueDelete)
                      81f59ff0    00000040                              : queue.oer5f (.text.vQueueUnregisterQueue)
                      81f5a030    00000040                              : port.oer5f (.text.xPortStartScheduler)
                      81f5a070    0000003c     ti.csl.aer5f : csl_cpsw_ss.oer5f (.text.CSL_CPSW_SS_setQSGMIIControlRdCd)
                      81f5a0ac    00000004     --HOLE-- [fill = 00000000]
                      81f5a0b0    0000003c                  : csl_cpts.oer5f (.text.CSL_CPTS_getTSAddVal)
                      81f5a0ec    00000004     --HOLE-- [fill = 00000000]
                      81f5a0f0    0000003c                  : csl_cpts.oer5f (.text.CSL_CPTS_setTSNudge)
                      81f5a12c    00000004     --HOLE-- [fill = 00000000]
                      81f5a130    0000003c                  : csl_dru.oer5f (.text.CSL_REG64_FEXT_RAW)
                      81f5a16c    00000004     --HOLE-- [fill = 00000000]
                      81f5a170    0000003c                  : csl_ringacc.oer5f (.text.CSL_ringaccAckRspRing)
                      81f5a1ac    00000004     --HOLE-- [fill = 00000000]
                      81f5a1b0    0000003c     enet.aer5f : cpsw.oer5f (.text.Cpsw_cptsIsr)
                      81f5a1ec    00000004     --HOLE-- [fill = 00000000]
                      81f5a1f0    0000003c     enet_example_utils_full_freertos.aer5f : enet_apputils.oer5f (.text.EnetAppUtils_printMacAddr)
                      81f5a22c    00000004     --HOLE-- [fill = 00000000]
                      81f5a230    0000003c     enet.aer5f : enet_hostport_udma.oer5f (.text.EnetHostPortDma_getTotalRxFlowCount)
                      81f5a26c    00000004     --HOLE-- [fill = 00000000]
                      81f5a270    0000003c     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.text.EnetMem_freeDmaDesc)
                      81f5a2ac    00000004     --HOLE-- [fill = 00000000]
                      81f5a2b0    0000003c     enet.aer5f : enet_rm.oer5f (.text.EnetRm_findResource)
                      81f5a2ec    00000004     --HOLE-- [fill = 00000000]
                      81f5a2f0    0000003c     ti.osal.aer5f : HwiP_freertos.oer5f (.text.HwiP_create)
                      81f5a32c    00000004     --HOLE-- [fill = 00000000]
                      81f5a330    0000003c     enet.aer5f : icssg.oer5f (.text.IcssgMacPort_initCfg)
                      81f5a36c    00000004     --HOLE-- [fill = 00000000]
                      81f5a370    0000003c                : icssg_stats.oer5f (.text.IcssgStats_getMacPortStats)
                      81f5a3ac    00000004     --HOLE-- [fill = 00000000]
                      81f5a3b0    0000003c                : icssg.oer5f (.text.Icssg_getTxIpgCfgAddr)
                      81f5a3ec    00000004     --HOLE-- [fill = 00000000]
                      81f5a3f0    0000003c                : icssg.oer5f (.text.Icssg_ioctlPreemptVerifyDisable)
                      81f5a42c    00000004     --HOLE-- [fill = 00000000]
                      81f5a430    0000003c                : icssg.oer5f (.text.Icssg_ioctlPreemptVerifyEnable)
                      81f5a46c    00000004     --HOLE-- [fill = 00000000]
                      81f5a470    0000003c                : icssg.oer5f (.text.Icssg_ioctlSetMacAddressHostPort)
                      81f5a4ac    00000004     --HOLE-- [fill = 00000000]
                      81f5a4b0    0000003c     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqClearOesRegister)
                      81f5a4ec    00000004     --HOLE-- [fill = 00000000]
                      81f5a4f0    0000003c     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.text.SemaphoreP_Params_init)
                      81f5a52c    00000004     --HOLE-- [fill = 00000000]
                      81f5a530    0000003c     ti.csl.aer5f : timer.oer5f (.text.TIMERReadModeConfig)
                      81f5a56c    00000004     --HOLE-- [fill = 00000000]
                      81f5a570    0000003c     ti.osal.aer5f : TaskP_freertos.oer5f (.text.TaskP_getFreertosHandle)
                      81f5a5ac    00000004     --HOLE-- [fill = 00000000]
                      81f5a5b0    0000003c     ti.csl.aer5f : uart.oer5f (.text.UARTEnhanFuncBitValRestore)
                      81f5a5ec    00000004     --HOLE-- [fill = 00000000]
                      81f5a5f0    0000003c                  : uart.oer5f (.text.UARTHardwareFlowCtrlOptSet)
                      81f5a62c    00000004     --HOLE-- [fill = 00000000]
                      81f5a630    0000003c     udma.aer5f : udma.oer5f (.text.Udma_assertLocal)
                      81f5a66c    00000004     --HOLE-- [fill = 00000000]
                      81f5a670    0000003c                : udma_ch.oer5f (.text.Udma_assertLocal)
                      81f5a6ac    00000004     --HOLE-- [fill = 00000000]
                      81f5a6b0    0000003c                : udma_event.oer5f (.text.Udma_assertLocal)
                      81f5a6ec    00000004     --HOLE-- [fill = 00000000]
                      81f5a6f0    0000003c                : udma_flow.oer5f (.text.Udma_assertLocal)
                      81f5a72c    00000004     --HOLE-- [fill = 00000000]
                      81f5a730    0000003c                : udma_ring_common.oer5f (.text.Udma_assertLocal)
                      81f5a76c    00000004     --HOLE-- [fill = 00000000]
                      81f5a770    0000003c                : udma_ring_normal.oer5f (.text.Udma_assertLocal)
                      81f5a7ac    00000004     --HOLE-- [fill = 00000000]
                      81f5a7b0    0000003c                : udma_rm.oer5f (.text.Udma_assertLocal)
                      81f5a7ec    00000004     --HOLE-- [fill = 00000000]
                      81f5a7f0    0000003c                : udma_event.oer5f (.text.Udma_eventGetId)
                      81f5a82c    00000004     --HOLE-- [fill = 00000000]
                      81f5a830    0000003c     ti.kernel.freertos.aer5f : tasks.oer5f (.text.prvResetNextTaskUnblockTime)
                      81f5a86c    00000004     --HOLE-- [fill = 00000000]
                      81f5a870    0000003c     ti.drv.uart.aer5f : UART_stdio.oer5f (.text.uart_console_getc)
                      81f5a8ac    00000004     --HOLE-- [fill = 00000000]
                      81f5a8b0    00000038     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_getAleUnkownVlanReg)
                      81f5a8e8    00000008     --HOLE-- [fill = 00000000]
                      81f5a8f0    00000038                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleVlanMaskMuxEntryReg)
                      81f5a928    00000008     --HOLE-- [fill = 00000000]
                      81f5a930    00000038                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAlePolicerTestControlReg)
                      81f5a968    00000008     --HOLE-- [fill = 00000000]
                      81f5a970    00000038                  : csl_cpts.oer5f (.text.CSL_CPTS_getESTFnLength)
                      81f5a9a8    00000008     --HOLE-- [fill = 00000000]
                      81f5a9b0    00000038                  : csl_cpts.oer5f (.text.CSL_CPTS_getGENFnLength)
                      81f5a9e8    00000008     --HOLE-- [fill = 00000000]
                      81f5a9f0    00000038                  : csl_cpts.oer5f (.text.CSL_CPTS_getTSPpm)
                      81f5aa28    00000008     --HOLE-- [fill = 00000000]
                      81f5aa30    00000038                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_getStatus)
                      81f5aa68    00000008     --HOLE-- [fill = 00000000]
                      81f5aa70    00000038                  : csl_dru.oer5f (.text.CSL_druChEnable)
                      81f5aaa8    00000008     --HOLE-- [fill = 00000000]
                      81f5aab0    00000038                  : csl_dru.oer5f (.text.CSL_druChTeardown)
                      81f5aae8    00000008     --HOLE-- [fill = 00000000]
                      81f5aaf0    00000038     sciclient.aer5f : sciclient.oer5f (.text.CSL_secProxyGetMaxMsgSize)
                      81f5ab28    00000008     --HOLE-- [fill = 00000000]
                      81f5ab30    00000038     ti.csl.aer5f : csl_serdes3.oer5f (.text.CSL_serdesPorReset)
                      81f5ab68    00000008     --HOLE-- [fill = 00000000]
                      81f5ab70    00000038                  : csl_udmap.oer5f (.text.CSL_udmapSetRxRT)
                      81f5aba8    00000008     --HOLE-- [fill = 00000000]
                      81f5abb0    00000038                  : csl_udmap.oer5f (.text.CSL_udmapSetTxRT)
                      81f5abe8    00000008     --HOLE-- [fill = 00000000]
                      81f5abf0    00000038     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_delEtherType)
                      81f5ac28    00000008     --HOLE-- [fill = 00000000]
                      81f5ac30    00000038                : cpsw_ale.oer5f (.text.CpswAle_delOuiAddr)
                      81f5ac68    00000008     --HOLE-- [fill = 00000000]
                      81f5ac70    00000038     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_isPhyDevSupported)
                      81f5aca8    00000008     --HOLE-- [fill = 00000000]
                      81f5acb0    00000038     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.EnetAppUtils_freePktInfoQ)
                      81f5ace8    00000008     --HOLE-- [fill = 00000000]
                      81f5acf0    00000038                                            : enet_apputils_k3.oer5f (.text.EnetAppUtils_selectCptsClock)
                      81f5ad28    00000008     --HOLE-- [fill = 00000000]
                      81f5ad30    00000038     enet.aer5f : enet_udma.oer5f (.text.EnetDma_initPktInfo)
                      81f5ad68    00000008     --HOLE-- [fill = 00000000]
                      81f5ad70    00000038                : enet_osal.oer5f (.text.EnetOsal_cacheInv)
                      81f5ada8    00000008     --HOLE-- [fill = 00000000]
                      81f5adb0    00000038                : enet_osal.oer5f (.text.EnetOsal_cacheWb)
                      81f5ade8    00000008     --HOLE-- [fill = 00000000]
                      81f5adf0    00000038                : enet_osal.oer5f (.text.EnetOsal_cacheWbInv)
                      81f5ae28    00000008     --HOLE-- [fill = 00000000]
                      81f5ae30    00000038                : enet_trace.oer5f (.text.EnetTrace_trace)
                      81f5ae68    00000008     --HOLE-- [fill = 00000000]
                      81f5ae70    00000038     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIaValidateGlobalEvt)
                      81f5aea8    00000008     --HOLE-- [fill = 00000000]
                      81f5aeb0    00000038     ti.osal.aer5f : TaskP_freertos.oer5f (.text.TaskP_Function)
                      81f5aee8    00000008     --HOLE-- [fill = 00000000]
                      81f5aef0    00000038     udma.aer5f : udma_event.oer5f (.text.Udma_eventGetGlobalHandle)
                      81f5af28    00000008     --HOLE-- [fill = 00000000]
                      81f5af30    00000038     ti.kernel.freertos.aer5f : tasks.oer5f (.text.prvTaskCheckFreeStackSpace)
                      81f5af68    00000008     --HOLE-- [fill = 00000000]
                      81f5af70    00000038                              : queue.oer5f (.text.vQueueAddToRegistry)
                      81f5afa8    00000008     --HOLE-- [fill = 00000000]
                      81f5afb0    00000034     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_getAleVersionInfo)
                      81f5afe4    0000000c     --HOLE-- [fill = 00000000]
                      81f5aff0    00000034                  : csl_cpsw.oer5f (.text.CSL_CPSW_getCpswVersionInfo)
                      81f5b024    0000000c     --HOLE-- [fill = 00000000]
                      81f5b030    00000034                  : csl_cpsw.oer5f (.text.CSL_CPSW_setPriCirEir)
                      81f5b064    0000000c     --HOLE-- [fill = 00000000]
                      81f5b070    00000034                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_getVersionInfo)
                      81f5b0a4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b0b0    00000034                  : csl_dru.oer5f (.text.CSL_druChSetEvent)
                      81f5b0e4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b0f0    00000034                  : csl_ringacc.oer5f (.text.CSL_ringaccGetRingHwOcc)
                      81f5b124    0000000c     --HOLE-- [fill = 00000000]
                      81f5b130    00000034                  : csl_ringacc.oer5f (.text.CSL_ringaccGetRingOcc)
                      81f5b164    0000000c     --HOLE-- [fill = 00000000]
                      81f5b170    00000034                  : csl_ringacc.oer5f (.text.CSL_ringaccSetRingDoorbell)
                      81f5b1a4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b1b0    00000034     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_clearSelectedPolicerStats)
                      81f5b1e4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b1f0    00000034                : cpsw_ale.oer5f (.text.CpswAle_clearTableEntry)
                      81f5b224    0000000c     --HOLE-- [fill = 00000000]
                      81f5b230    00000034                : cpsw_ale.oer5f (.text.CpswAle_isVlanMaskMuxRegSupported)
                      81f5b264    0000000c     --HOLE-- [fill = 00000000]
                      81f5b270    00000034                : cpsw_ale.oer5f (.text.CpswAle_setAleModeFlags)
                      81f5b2a4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b2b0    00000034                : cpsw_ale.oer5f (.text.CpswAle_validatePortPolicer)
                      81f5b2e4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b2f0    00000034                : cpsw_hostport.oer5f (.text.CpswHostPort_disableTrafficShaping)
                      81f5b324    0000000c     --HOLE-- [fill = 00000000]
                      81f5b330    00000034                : cpsw_macport.oer5f (.text.CpswMacPort_close)
                      81f5b364    0000000c     --HOLE-- [fill = 00000000]
                      81f5b370    00000034                : cpsw.oer5f (.text.Cpsw_statsIsr)
                      81f5b3a4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b3b0    00000034     enetphy.aer5f : dp83822.oer5f (.text.Dp83822_isPhyDevSupported)
                      81f5b3e4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b3f0    00000034     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.text.EnetBoard_getMacAddrList)
                      81f5b424    0000000c     --HOLE-- [fill = 00000000]
                      81f5b430    00000034     enet.aer5f : enet_udma.oer5f (.text.EnetUdma_drainIsrCq)
                      81f5b464    0000000c     --HOLE-- [fill = 00000000]
                      81f5b470    00000034                : enet_udma_priv.oer5f (.text.EnetUdma_freeRingMon)
                      81f5b4a4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b4b0    00000034     ti.osal.aer5f : HwiP_freertos.oer5f (.text.HwiP_restore)
                      81f5b4e4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b4f0    00000034     enet.aer5f : icssg_utils.oer5f (.text.Icssg_getDfltVlanAddr)
                      81f5b524    0000000c     --HOLE-- [fill = 00000000]
                      81f5b530    00000034     ti.csl.aer5f : interrupt.oer5f (.text.Intc_IntClrPend)
                      81f5b564    0000000c     --HOLE-- [fill = 00000000]
                      81f5b570    00000034     ti.osal.aer5f : TaskP_freertos.oer5f (.text.TaskP_Params_init)
                      81f5b5a4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b5b0    00000034                   : TimerP_nonos.oer5f (.text.TimerP_getCount)
                      81f5b5e4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b5f0    00000034                   : TimerP_nonos.oer5f (.text.TimerP_getReloadCount)
                      81f5b624    0000000c     --HOLE-- [fill = 00000000]
                      81f5b630    00000034     ti.csl.aer5f : uart.oer5f (.text.UARTIntIdentityGet)
                      81f5b664    0000000c     --HOLE-- [fill = 00000000]
                      81f5b670    00000034                  : uart.oer5f (.text.UARTOperatingModeSelect)
                      81f5b6a4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b6b0    00000034                  : uart.oer5f (.text.UARTReadStatus)
                      81f5b6e4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b6f0    00000034     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_getRxTrigLvl)
                      81f5b724    0000000c     --HOLE-- [fill = 00000000]
                      81f5b730    00000034                       : UART_v1.oer5f (.text.UART_writeCancel_v1)
                      81f5b764    0000000c     --HOLE-- [fill = 00000000]
                      81f5b770    00000034     udma.aer5f : udma_rmcfg.oer5f (.text.Udma_rmGetSharedResPrms)
                      81f5b7a4    00000034     libsysbm.a : lseek.c.obj (.text.lseek)
                      81f5b7d8    00000008     --HOLE-- [fill = 00000000]
                      81f5b7e0    00000034     enet.aer5f : cpsw_macport_intervlan.oer5f (.text.memcmp)
                      81f5b814    0000000c     --HOLE-- [fill = 00000000]
                      81f5b820    00000034                : enet_rm.oer5f (.text.memcmp)
                      81f5b854    0000000c     --HOLE-- [fill = 00000000]
                      81f5b860    00000034     ti.kernel.freertos.aer5f : queue.oer5f (.text.prvInitialiseMutex)
                      81f5b894    0000000c     --HOLE-- [fill = 00000000]
                      81f5b8a0    00000034                              : queue.oer5f (.text.prvInitialiseNewQueue)
                      81f5b8d4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b8e0    00000034                              : timers.oer5f (.text.pvTimerGetTimerID)
                      81f5b914    0000000c     --HOLE-- [fill = 00000000]
                      81f5b920    00000034                              : port.oer5f (.text.vPortTimerTickHandler)
                      81f5b954    00000034     libsysbm.a : write.c.obj (.text.write)
                      81f5b988    00000008     --HOLE-- [fill = 00000000]
                      81f5b990    00000034     ti.kernel.freertos.aer5f : queue.oer5f (.text.xQueueCreateMutexStatic)
                      81f5b9c4    0000000c     --HOLE-- [fill = 00000000]
                      81f5b9d0    00000034                              : tasks.oer5f (.text.xTaskGetSchedulerState)
                      81f5ba04    0000000c     --HOLE-- [fill = 00000000]
                      81f5ba10    00000030     ti.csl.aer5f : csl_cpsw_ss.oer5f (.text.CSL_CPSW_SS_getQSGMIIStatusRxSync)
                      81f5ba40    00000030                  : csl_cpsw_ss.oer5f (.text.CSL_CPSW_SS_getXGMIILinkStatus)
                      81f5ba70    00000030                  : csl_cpsw.oer5f (.text.CSL_CPSW_extractVid)
                      81f5baa0    00000030                  : csl_cpsw.oer5f (.text.CSL_CPSW_getALEAddressType)
                      81f5bad0    00000030                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getALEAddressType_4G)
                      81f5bb00    00000030                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getALEAddressType_9G)
                      81f5bb30    00000030                  : csl_cpsw.oer5f (.text.CSL_CPSW_getALEEntryType)
                      81f5bb60    00000030                  : csl_cpsw.oer5f (.text.CSL_CPSW_getALEPolicerEntryType)
                      81f5bb90    00000030                  : csl_cpsw.oer5f (.text.CSL_CPSW_getPortMaxBlksReg)
                      81f5bbc0    00000030                  : csl_cpsw.oer5f (.text.CSL_CPSW_getPriCirEir)
                      81f5bbf0    00000030                  : csl_cpsw.oer5f (.text.CSL_CPSW_setCppiPriCirEir)
                      81f5bc20    00000030                  : csl_cpts.oer5f (.text.CSL_CPTS_getCptsVersionInfo)
                      81f5bc50    00000030                  : csl_cpts.oer5f (.text.CSL_CPTS_setESTFnNudge)
                      81f5bc80    00000030                  : csl_cpts.oer5f (.text.CSL_CPTS_setGENFnNudge)
                      81f5bcb0    00000030                  : csl_mdio.oer5f (.text.CSL_MDIO_phyGetRegReadVal)
                      81f5bce0    00000030     enetphy.aer5f : vsc8514.oer5f (.text.CSL_REG16_FINS_RAW)
                      81f5bd10    00000030     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_setRxFilterAll)
                      81f5bd40    00000030                : cpsw_hostport.oer5f (.text.CpswHostPort_initCfg)
                      81f5bd70    00000030                : cpsw_macport_intervlan.oer5f (.text.CpswMacPort_isRouteIdFree)
                      81f5bda0    00000030                : cpsw_macport.oer5f (.text.CpswMacPort_mapSgmiiLinkCfg)
                      81f5bdd0    00000030                : cpsw_stats.oer5f (.text.CpswStats_rejoin)
                      81f5be00    00000030     enet_example_utils_full_freertos.aer5f : enet_apprmcfg.oer5f (.text.EnetAppRm_getResPartInfo)
                      81f5be30    00000030     enet.aer5f : enet_hostport_udma.oer5f (.text.EnetHostPortDma_getDmaResInfo)
                      81f5be60    00000030                : enet.oer5f (.text.EnetMod_ioctlFromIsr)
                      81f5be90    00000030     enet_multiport.oer5f (.text.EnetMp_portLinkStatusChangeCb)
                      81f5bec0    00000030     enet.aer5f : enet_osal_dflt.oer5f (.text.EnetOsalDflt_lockMutex)
                      81f5bef0    00000030     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_findBestCap)
                      81f5bf20    00000030                   : enetphy.oer5f (.text.EnetPhy_linkedState)
                      81f5bf50    00000030                   : enetphy.oer5f (.text.EnetPhy_readExtReg)
                      81f5bf80    00000030                   : enetphy.oer5f (.text.EnetPhy_writeExtReg)
                      81f5bfb0    00000030     enet.aer5f : enet_rm.oer5f (.text.EnetRm_initCoreResourceQ)
                      81f5bfe0    00000030                : enet_udma_priv.oer5f (.text.EnetUdma_dmaDescCopyQ)
                      81f5c010    00000030                : enet_udma_priv.oer5f (.text.EnetUdma_memMgrDeInit)
                      81f5c040    00000030     ti.osal.aer5f : HwiP_freertos.oer5f (.text.HwiP_disable)
                      81f5c070    00000030     enet.aer5f : icssg.oer5f (.text.Icssg_ioctlCfgAgeingPeriod)
                      81f5c0a0    00000030     ti.csl.aer5f : interrupt.oer5f (.text.Intc_IntDisable)
                      81f5c0d0    00000030                  : interrupt.oer5f (.text.Intc_IntEnable)
                      81f5c100    00000030     enet.aer5f : mdio.oer5f (.text.Mdio_initCfg)
                      81f5c130    00000030     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_configPrmsInit)
                      81f5c160    00000030     ti.csl.aer5f : timer.oer5f (.text.TIMERIntDisable)
                      81f5c190    00000030                  : timer.oer5f (.text.TIMERIntEnable)
                      81f5c1c0    00000030                  : timer.oer5f (.text.TIMERIntStatusClear)
                      81f5c1f0    00000030                  : uart.oer5f (.text.UARTLineCharacConfig)
                      81f5c220    00000030     udma.aer5f : udma_osal.oer5f (.text.Udma_osalMutexCreate)
                      81f5c250    00000030     enetphy.aer5f : vsc8514.oer5f (.text.Vsc8514_isPhyDevSupported)
                      81f5c280    00000030     libc.a : snprintf.c.obj (.text._outc)
                      81f5c2b0    00000030            : vsnprintf.c.obj (.text._outc)
                      81f5c2e0    00000030            : memory.c.obj (.text.free_list_remove)
                      81f5c310    00000030            : fputs.c.obj (.text.memchr)
                      81f5c340    00000030     ti.kernel.freertos.aer5f : timers.oer5f (.text.prvGetNextExpireTime)
                      81f5c370    00000030                              : port.oer5f (.text.prvPortStartTickTimer)
                      81f5c3a0    00000030                              : list.oer5f (.text.vListInsertEnd)
                      81f5c3d0    0000002c     ti.board.aer5f : am65xx_idk_pinmux.oer5f (.text.Board_pinmuxConfig)
                      81f5c3fc    00000004     --HOLE-- [fill = 00000000]
                      81f5c400    0000002c     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getAleOUIAddrEntry_4G)
                      81f5c42c    00000004     --HOLE-- [fill = 00000000]
                      81f5c430    0000002c                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleTableEntry)
                      81f5c45c    00000004     --HOLE-- [fill = 00000000]
                      81f5c460    0000002c                  : csl_cpsw.oer5f (.text.CSL_CPSW_getEthertypeMax)
                      81f5c48c    00000004     --HOLE-- [fill = 00000000]
                      81f5c490    0000002c                  : csl_cpsw.oer5f (.text.CSL_CPSW_getIpv4IgnBitsMax)
                      81f5c4bc    00000004     --HOLE-- [fill = 00000000]
                      81f5c4c0    0000002c                  : csl_cpsw.oer5f (.text.CSL_CPSW_getIpv6IgnBitsMax)
                      81f5c4ec    00000004     --HOLE-- [fill = 00000000]
                      81f5c4f0    0000002c                  : csl_cpsw.oer5f (.text.CSL_CPSW_getPortStats)
                      81f5c51c    00000004     --HOLE-- [fill = 00000000]
                      81f5c520    0000002c                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_mapTableWord2MacAddr_4G)
                      81f5c54c    00000004     --HOLE-- [fill = 00000000]
                      81f5c550    0000002c                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_mapTableWord2MacAddr_9G)
                      81f5c57c    00000004     --HOLE-- [fill = 00000000]
                      81f5c580    0000002c                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleCtrl2IPPktFilterConfig)
                      81f5c5ac    00000004     --HOLE-- [fill = 00000000]
                      81f5c5b0    0000002c                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleCtrl2MalformedFrameConfig)
                      81f5c5dc    00000004     --HOLE-- [fill = 00000000]
                      81f5c5e0    0000002c                  : csl_cpsw.oer5f (.text.CSL_CPSW_setPort0VlanReg)
                      81f5c60c    00000004     --HOLE-- [fill = 00000000]
                      81f5c610    0000002c                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_getAdvAbility)
                      81f5c63c    00000004     --HOLE-- [fill = 00000000]
                      81f5c640    0000002c                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_getLinkPartnerAdvAbility)
                      81f5c66c    00000004     --HOLE-- [fill = 00000000]
                      81f5c670    0000002c                  : csl_proxy.oer5f (.text.CSL_proxyEncodeElementSize)
                      81f5c69c    00000004     --HOLE-- [fill = 00000000]
                      81f5c6a0    0000002c     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_mapIPv6AddrOctet2RegWord)
                      81f5c6cc    00000004     --HOLE-- [fill = 00000000]
                      81f5c6d0    0000002c                : cpsw.oer5f (.text.Cpsw_poll)
                      81f5c6fc    00000004     --HOLE-- [fill = 00000000]
                      81f5c700    0000002c     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.EnetAppUtils_udmaclose)
                      81f5c72c    00000004     --HOLE-- [fill = 00000000]
                      81f5c730    0000002c     enet.aer5f : enet_udma.oer5f (.text.EnetDma_disableRxEvent)
                      81f5c75c    00000004     --HOLE-- [fill = 00000000]
                      81f5c760    0000002c                : enet_udma.oer5f (.text.EnetDma_disableTxEvent)
                      81f5c78c    00000004     --HOLE-- [fill = 00000000]
                      81f5c790    0000002c     enet_multiport.oer5f (.text.EnetMp_initEnetLinkCbPrms)
                      81f5c7bc    00000004     --HOLE-- [fill = 00000000]
                      81f5c7c0    0000002c     enet.aer5f : enet_osal_dflt.oer5f (.text.EnetOsalDflt_unlockMutex)
                      81f5c7ec    00000004     --HOLE-- [fill = 00000000]
                      81f5c7f0    0000002c     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_initState)
                      81f5c81c    00000004     --HOLE-- [fill = 00000000]
                      81f5c820    0000002c                   : enetphy.oer5f (.text.EnetPhy_isNwayCapable)
                      81f5c84c    00000004     --HOLE-- [fill = 00000000]
                      81f5c850    0000002c     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_getTxChUdmaInfo)
                      81f5c87c    00000004     --HOLE-- [fill = 00000000]
                      81f5c880    0000002c                : cpsw_stats.oer5f (.text.Enet_checkInArgs)
                      81f5c8ac    00000004     --HOLE-- [fill = 00000000]
                      81f5c8b0    0000002c                : cpsw_stats.oer5f (.text.Enet_checkOutArgs)
                      81f5c8dc    00000004     --HOLE-- [fill = 00000000]
                      81f5c8e0    0000002c     ti.board.aer5f : board_ethernet_config.oer5f (.text.EthBoard_delay)
                      81f5c90c    00000004     --HOLE-- [fill = 00000000]
                      81f5c910    0000002c     enet.aer5f : icssg.oer5f (.text.Icssg_disableClassifiers)
                      81f5c93c    00000004     --HOLE-- [fill = 00000000]
                      81f5c940    0000002c                : icssg.oer5f (.text.Icssg_initR30Cmd)
                      81f5c96c    00000004     --HOLE-- [fill = 00000000]
                      81f5c970    0000002c                : icssg.oer5f (.text.Icssg_ioctlFdbRemoveAllAgeableEntries)
                      81f5c99c    00000004     --HOLE-- [fill = 00000000]
                      81f5c9a0    0000002c                : icssg.oer5f (.text.Icssg_ioctlFdbRemoveAllEntries)
                      81f5c9cc    00000004     --HOLE-- [fill = 00000000]
                      81f5c9d0    0000002c     ti.csl.aer5f : interrupt.oer5f (.text.Intc_IntPrioritySet)
                      81f5c9fc    00000004     --HOLE-- [fill = 00000000]
                      81f5ca00    0000002c     ti.osal.aer5f : Utils_freertos.oer5f (.text.Osal_delay)
                      81f5ca2c    00000004     --HOLE-- [fill = 00000000]
                      81f5ca30    0000002c                   : Utils_freertos.oer5f (.text.Osal_getThreadType)
                      81f5ca5c    00000004     --HOLE-- [fill = 00000000]
                      81f5ca60    0000002c     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqGetNodeItf)
                      81f5ca8c    00000004     --HOLE-- [fill = 00000000]
                      81f5ca90    0000002c                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmPsSetInp)
                      81f5cabc    00000004     --HOLE-- [fill = 00000000]
                      81f5cac0    0000002c                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmPsSetOutp)
                      81f5caec    00000004     --HOLE-- [fill = 00000000]
                      81f5caf0    0000002c     ti.csl.aer5f : uart.oer5f (.text.UARTInt2Disable)
                      81f5cb1c    00000004     --HOLE-- [fill = 00000000]
                      81f5cb20    0000002c     udma.aer5f : udma_flow.oer5f (.text.Udma_flowGetCount)
                      81f5cb4c    00000004     --HOLE-- [fill = 00000000]
                      81f5cb50    0000002c                : udma_flow.oer5f (.text.Udma_flowGetNum)
                      81f5cb7c    0000002c     libc.a : sprintf.c.obj (.text._outs)
                      81f5cba8    00000008     --HOLE-- [fill = 00000000]
                      81f5cbb0    0000002c     ti.kernel.freertos.aer5f : tasks.oer5f (.text.prvIdleTask)
                      81f5cbdc    00000004     --HOLE-- [fill = 00000000]
                      81f5cbe0    0000002c                              : queue.oer5f (.text.prvIsQueueFull)
                      81f5cc0c    00000004     --HOLE-- [fill = 00000000]
                      81f5cc10    0000002c     libclang_rt.builtins.a : divsi3.S.obj (.text)
                      81f5cc3c    00000004     --HOLE-- [fill = 00000000]
                      81f5cc40    00000028     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getALEPolicerEntryType_4G)
                      81f5cc68    00000008     --HOLE-- [fill = 00000000]
                      81f5cc70    00000028                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getALEPolicerEntryType_9G)
                      81f5cc98    00000008     --HOLE-- [fill = 00000000]
                      81f5cca0    00000028                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleIPv6HighEntryOffset)
                      81f5ccc8    00000008     --HOLE-- [fill = 00000000]
                      81f5ccd0    00000028                  : csl_cpsw.oer5f (.text.CSL_CPSW_getCppiPriCirEir)
                      81f5ccf8    00000008     --HOLE-- [fill = 00000000]
                      81f5cd00    00000028                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAlePolicerGlobConfig)
                      81f5cd28    00000008     --HOLE-- [fill = 00000000]
                      81f5cd30    00000028                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleVlanMaskMuxEntryReg)
                      81f5cd58    00000008     --HOLE-- [fill = 00000000]
                      81f5cd60    00000028     enet.aer5f : icssg.oer5f (.text.CSL_REG32_FINS_RAW)
                      81f5cd88    00000008     --HOLE-- [fill = 00000000]
                      81f5cd90    00000028     ti.csl.aer5f : csl_cpts.oer5f (.text.CSL_REG32_FINS_RAW)
                      81f5cdb8    00000008     --HOLE-- [fill = 00000000]
                      81f5cdc0    00000028                  : csl_dru.oer5f (.text.CSL_REG32_FINS_RAW)
                      81f5cde8    00000008     --HOLE-- [fill = 00000000]
                      81f5cdf0    00000028                  : csl_ringacc.oer5f (.text.CSL_ringaccCommitToCmdRing)
                      81f5ce18    00000008     --HOLE-- [fill = 00000000]
                      81f5ce20    00000028                  : csl_udmap.oer5f (.text.CSL_udmapGetChanPeerReg)
                      81f5ce48    00000008     --HOLE-- [fill = 00000000]
                      81f5ce50    00000028                  : csl_udmap.oer5f (.text.CSL_udmapIsChanEnabled)
                      81f5ce78    00000008     --HOLE-- [fill = 00000000]
                      81f5ce80    00000028                  : csl_udmap.oer5f (.text.CSL_udmapSetChanEnable)
                      81f5cea8    00000008     --HOLE-- [fill = 00000000]
                      81f5ceb0    00000028                  : csl_udmap.oer5f (.text.CSL_udmapSetChanPeerReg)
                      81f5ced8    00000008     --HOLE-- [fill = 00000000]
                      81f5cee0    00000028     ti.osal.aer5f : ClockP_freertos.oer5f (.text.ClockP_timerCallbackFunction)
                      81f5cf08    00000008     --HOLE-- [fill = 00000000]
                      81f5cf10    00000028     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_validatePriorityPolicer)
                      81f5cf38    00000008     --HOLE-- [fill = 00000000]
                      81f5cf40    00000028                : cpsw_ale.oer5f (.text.CpswAle_validateSetPolicerCommon)
                      81f5cf68    00000008     --HOLE-- [fill = 00000000]
                      81f5cf70    00000028                : cpsw_hostport.oer5f (.text.CpswHostPort_mapBwToCnt)
                      81f5cf98    00000008     --HOLE-- [fill = 00000000]
                      81f5cfa0    00000028                : cpsw_macport.oer5f (.text.CpswMacPort_initCfg)
                      81f5cfc8    00000008     --HOLE-- [fill = 00000000]
                      81f5cfd0    00000028                : cpsw_macport.oer5f (.text.CpswMacPort_mapBwToCnt)
                      81f5cff8    00000008     --HOLE-- [fill = 00000000]
                      81f5d000    00000028     enet_example_utils_full_freertos.aer5f : enet_apprmcfg.oer5f (.text.EnetAppRm_getIoctlPermissionInfo)
                      81f5d028    00000008     --HOLE-- [fill = 00000000]
                      81f5d030    00000028     enet.aer5f : cpsw.oer5f (.text.EnetMacPort_isQsgmii)
                      81f5d058    00000008     --HOLE-- [fill = 00000000]
                      81f5d060    00000028                : cpsw_macport.oer5f (.text.EnetMacPort_isQsgmii)
                      81f5d088    00000008     --HOLE-- [fill = 00000000]
                      81f5d090    00000028                : cpsw.oer5f (.text.EnetMacPort_isRgmii)
                      81f5d0b8    00000008     --HOLE-- [fill = 00000000]
                      81f5d0c0    00000028                : cpsw_macport.oer5f (.text.EnetMacPort_isRgmii)
                      81f5d0e8    00000008     --HOLE-- [fill = 00000000]
                      81f5d0f0    00000028                : icssg_utils.oer5f (.text.EnetMacPort_isRgmii)
                      81f5d118    00000008     --HOLE-- [fill = 00000000]
                      81f5d120    00000028     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.text.EnetMacPort_isRgmii)
                      81f5d148    00000008     --HOLE-- [fill = 00000000]
                      81f5d150    00000028     enet.aer5f : cpsw.oer5f (.text.EnetMacPort_isSgmii)
                      81f5d178    00000008     --HOLE-- [fill = 00000000]
                      81f5d180    00000028                : cpsw_macport.oer5f (.text.EnetMacPort_isSgmii)
                      81f5d1a8    00000008     --HOLE-- [fill = 00000000]
                      81f5d1b0    00000028     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.text.EnetMem_freeRingMem)
                      81f5d1d8    00000008     --HOLE-- [fill = 00000000]
                      81f5d1e0    00000028     enet_multiport.oer5f (.text.EnetMp_mdioLinkStatusChange)
                      81f5d208    00000008     --HOLE-- [fill = 00000000]
                      81f5d210    00000028     enet.aer5f : enet_osal.oer5f (.text.EnetOsal_registerIntr)
                      81f5d238    00000008     --HOLE-- [fill = 00000000]
                      81f5d240    00000028                : enet_utils_dflt.oer5f (.text.EnetUtilsDflt_initCfg)
                      81f5d268    00000008     --HOLE-- [fill = 00000000]
                      81f5d270    00000028                : icssg.oer5f (.text.Icssg_setPromiscMode)
                      81f5d298    00000008     --HOLE-- [fill = 00000000]
                      81f5d2a0    00000028     pm_lib.aer5f : pmlib_clkrate.oer5f (.text.PMLIBClkRateGet)
                      81f5d2c8    00000008     --HOLE-- [fill = 00000000]
                      81f5d2d0    00000028     sciclient.aer5f : sciclient_secureproxy.oer5f (.text.Sciclient_readThread32)
                      81f5d2f8    00000008     --HOLE-- [fill = 00000000]
                      81f5d300    00000028                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmPsGetIfIdx)
                      81f5d328    00000008     --HOLE-- [fill = 00000000]
                      81f5d330    00000028                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmPsGetInp)
                      81f5d358    00000008     --HOLE-- [fill = 00000000]
                      81f5d360    00000028                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmPsGetOutp)
                      81f5d388    00000008     --HOLE-- [fill = 00000000]
                      81f5d390    00000028     ti.csl.aer5f : uart.oer5f (.text.UARTInt2Enable)
                      81f5d3b8    00000008     --HOLE-- [fill = 00000000]
                      81f5d3c0    00000028     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_getParityType)
                      81f5d3e8    00000008     --HOLE-- [fill = 00000000]
                      81f5d3f0    00000028                       : UART_v1.oer5f (.text.UART_getTxTrigLvl)
                      81f5d418    00000008     --HOLE-- [fill = 00000000]
                      81f5d420    00000028     udma.aer5f : udma_ring_common.oer5f (.text.Udma_proxyRead64)
                      81f5d448    00000008     --HOLE-- [fill = 00000000]
                      81f5d450    00000028                : udma_ring_normal.oer5f (.text.Udma_ringGetElementCntNormal)
                      81f5d478    00000008     --HOLE-- [fill = 00000000]
                      81f5d480    00000028                : udma_ring_normal.oer5f (.text.Udma_ringGetMemPtrNormal)
                      81f5d4a8    00000008     --HOLE-- [fill = 00000000]
                      81f5d4b0    00000028                : udma_ring_normal.oer5f (.text.Udma_ringGetModeNormal)
                      81f5d4d8    00000008     --HOLE-- [fill = 00000000]
                      81f5d4e0    00000028                : udma_ring_common.oer5f (.text.Udma_ringGetNum)
                      81f5d508    00000008     --HOLE-- [fill = 00000000]
                      81f5d510    00000028                : udma_ring_normal.oer5f (.text.Udma_ringGetRdIdxNormal)
                      81f5d538    00000008     --HOLE-- [fill = 00000000]
                      81f5d540    00000028                : udma_ring_normal.oer5f (.text.Udma_ringGetWrIdxNormal)
                      81f5d568    00000008     --HOLE-- [fill = 00000000]
                      81f5d570    00000028     enet.aer5f : cpsw_ale.oer5f (.text.memcmp)
                      81f5d598    00000008     --HOLE-- [fill = 00000000]
                      81f5d5a0    00000028     ti.kernel.freertos.aer5f : timers.oer5f (.text.prvTimerTask)
                      81f5d5c8    00000008     --HOLE-- [fill = 00000000]
                      81f5d5d0    00000028                              : tasks.oer5f (.text.pvTaskIncrementMutexHeldCount)
                      81f5d5f8    00000028     libc.a : _printfi.c.obj (.text.strchr)
                      81f5d620    00000028     enet_example_utils_full_freertos.aer5f : enet_apputils.oer5f (.text.strlen)
                      81f5d648    00000008     --HOLE-- [fill = 00000000]
                      81f5d650    00000028     ti.kernel.freertos.aer5f : port.oer5f (.text.vApplicationStackOverflowHook)
                      81f5d678    00000008     --HOLE-- [fill = 00000000]
                      81f5d680    00000024     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_disablePortPassPriTag)
                      81f5d6a4    0000000c     --HOLE-- [fill = 00000000]
                      81f5d6b0    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_enablePortPassPriTag)
                      81f5d6d4    0000000c     --HOLE-- [fill = 00000000]
                      81f5d6e0    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleEthertypeEntry)
                      81f5d704    0000000c     --HOLE-- [fill = 00000000]
                      81f5d710    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleIPv4Entry)
                      81f5d734    0000000c     --HOLE-- [fill = 00000000]
                      81f5d740    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleIPv6Entry)
                      81f5d764    0000000c     --HOLE-- [fill = 00000000]
                      81f5d770    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleMcastAddrEntry)
                      81f5d794    0000000c     --HOLE-- [fill = 00000000]
                      81f5d7a0    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleOutVlanEntry)
                      81f5d7c4    0000000c     --HOLE-- [fill = 00000000]
                      81f5d7d0    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleUnicastAddrEntry)
                      81f5d7f4    0000000c     --HOLE-- [fill = 00000000]
                      81f5d800    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleVlanEntry)
                      81f5d824    0000000c     --HOLE-- [fill = 00000000]
                      81f5d830    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleVlanMcastAddrEntry)
                      81f5d854    0000000c     --HOLE-- [fill = 00000000]
                      81f5d860    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleVlanUnicastAddrEntry)
                      81f5d884    0000000c     --HOLE-- [fill = 00000000]
                      81f5d890    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_mapMacAddr2TableWord)
                      81f5d8b4    0000000c     --HOLE-- [fill = 00000000]
                      81f5d8c0    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_mapTableWord2MacAddr)
                      81f5d8e4    0000000c     --HOLE-- [fill = 00000000]
                      81f5d8f0    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleEthertypeEntry)
                      81f5d914    0000000c     --HOLE-- [fill = 00000000]
                      81f5d920    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleIPv4Entry)
                      81f5d944    0000000c     --HOLE-- [fill = 00000000]
                      81f5d950    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleIPv6Entry)
                      81f5d974    0000000c     --HOLE-- [fill = 00000000]
                      81f5d980    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleMcastAddrEntry)
                      81f5d9a4    0000000c     --HOLE-- [fill = 00000000]
                      81f5d9b0    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleOUIAddrEntry)
                      81f5d9d4    0000000c     --HOLE-- [fill = 00000000]
                      81f5d9e0    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleOutVlanEntry)
                      81f5da04    0000000c     --HOLE-- [fill = 00000000]
                      81f5da10    00000024                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_setAlePolicerType)
                      81f5da34    0000000c     --HOLE-- [fill = 00000000]
                      81f5da40    00000024                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_setAlePolicerType)
                      81f5da64    0000000c     --HOLE-- [fill = 00000000]
                      81f5da70    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAlePortControlTrunk)
                      81f5da94    0000000c     --HOLE-- [fill = 00000000]
                      81f5daa0    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleUnicastAddrEntry)
                      81f5dac4    0000000c     --HOLE-- [fill = 00000000]
                      81f5dad0    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleVlanEntry)
                      81f5daf4    0000000c     --HOLE-- [fill = 00000000]
                      81f5db00    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleVlanMcastAddrEntry)
                      81f5db24    0000000c     --HOLE-- [fill = 00000000]
                      81f5db30    00000024                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleVlanUnicastAddrEntry)
                      81f5db54    0000000c     --HOLE-- [fill = 00000000]
                      81f5db60    00000024                  : csl_serdes3.oer5f (.text.CSL_serdesEnableLanes)
                      81f5db84    0000000c     --HOLE-- [fill = 00000000]
                      81f5db90    00000024                  : csl_udmap.oer5f (.text.CSL_udmapTeardownRxChan)
                      81f5dbb4    0000000c     --HOLE-- [fill = 00000000]
                      81f5dbc0    00000024                  : csl_udmap.oer5f (.text.CSL_udmapTeardownTxChan)
                      81f5dbe4    0000000c     --HOLE-- [fill = 00000000]
                      81f5dbf0    00000024     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_clearGlobalPolicerStats)
                      81f5dc14    0000000c     --HOLE-- [fill = 00000000]
                      81f5dc20    00000024                : cpsw_ale.oer5f (.text.CpswAle_initAleRegs)
                      81f5dc44    0000000c     --HOLE-- [fill = 00000000]
                      81f5dc50    00000024                : cpsw_ale.oer5f (.text.CpswAle_mapNumPktsPerSec2RateLimit)
                      81f5dc74    0000000c     --HOLE-- [fill = 00000000]
                      81f5dc80    00000024                : cpsw_ale.oer5f (.text.CpswAle_mapRateLimit2NumPktsPerSec)
                      81f5dca4    0000000c     --HOLE-- [fill = 00000000]
                      81f5dcb0    00000024                : cpsw_macport.oer5f (.text.CpswMacPort_getSgmiiStatus)
                      81f5dcd4    0000000c     --HOLE-- [fill = 00000000]
                      81f5dce0    00000024                : enet_hostport_udma.oer5f (.text.EnetHostPortDma_openRsvdFlow)
                      81f5dd04    0000000c     --HOLE-- [fill = 00000000]
                      81f5dd10    00000024                : cpsw_macport.oer5f (.text.EnetMacPort_isRmii)
                      81f5dd34    0000000c     --HOLE-- [fill = 00000000]
                      81f5dd40    00000024     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.text.EnetMacPort_isRmii)
                      81f5dd64    0000000c     --HOLE-- [fill = 00000000]
                      81f5dd70    00000024     enet_multiport.oer5f (.text.EnetMp_asyncIoctlCb)
                      81f5dd94    0000000c     --HOLE-- [fill = 00000000]
                      81f5dda0    00000024     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_isLinked)
                      81f5ddc4    0000000c     --HOLE-- [fill = 00000000]
                      81f5ddd0    00000024                   : enetphy.oer5f (.text.EnetPhy_printRegs)
                      81f5ddf4    0000000c     --HOLE-- [fill = 00000000]
                      81f5de00    00000024     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_getRxFlowUdmaInfo)
                      81f5de24    0000000c     --HOLE-- [fill = 00000000]
                      81f5de30    00000024                : enet_utils.oer5f (.text.EnetUtils_deinit)
                      81f5de54    0000000c     --HOLE-- [fill = 00000000]
                      81f5de60    00000024                : icssg_utils.oer5f (.text.IcssgUtils_WriteMem)
                      81f5de84    0000000c     --HOLE-- [fill = 00000000]
                      81f5de90    00000024                : icssg.oer5f (.text.Icssg_setDfltThreadCfg)
                      81f5deb4    0000000c     --HOLE-- [fill = 00000000]
                      81f5dec0    00000024                : icssg.oer5f (.text.Icssg_setSpecialFramePrioCfg)
                      81f5dee4    0000000c     --HOLE-- [fill = 00000000]
                      81f5def0    00000024     ti.kernel.freertos.aer5f : port_Hwi.oer5f (.text.IntDefaultHandler)
                      81f5df14    0000000c     --HOLE-- [fill = 00000000]
                      81f5df20    00000024     enet.aer5f : mdio.oer5f (.text.Mdio_setupStatusChangeMode)
                      81f5df44    0000000c     --HOLE-- [fill = 00000000]
                      81f5df50    00000024     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_utilByteCopy)
                      81f5df74    0000000c     --HOLE-- [fill = 00000000]
                      81f5df80    00000024     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UARTFifoWait)
                      81f5dfa4    0000000c     --HOLE-- [fill = 00000000]
                      81f5dfb0    00000024                       : UART_v1.oer5f (.text.UART_readCancel_v1)
                      81f5dfd4    0000000c     --HOLE-- [fill = 00000000]
                      81f5dfe0    00000024     udma.aer5f : udma_utils.oer5f (.text.UdmaUtils_getRingMemSize)
                      81f5e004    0000000c     --HOLE-- [fill = 00000000]
                      81f5e010    00000024     enet.aer5f : enet_udma_priv.oer5f (.text.Udma_proxyWrite64)
                      81f5e034    0000000c     --HOLE-- [fill = 00000000]
                      81f5e040    00000024     udma.aer5f : udma_ring_common.oer5f (.text.Udma_proxyWrite64)
                      81f5e064    0000000c     --HOLE-- [fill = 00000000]
                      81f5e070    00000024     ti.kernel.freertos.aer5f : queue.oer5f (.text.prvIsQueueEmpty)
                      81f5e094    0000000c     --HOLE-- [fill = 00000000]
                      81f5e0a0    00000024                              : port.oer5f (.text.prvPorttimerTickIsr)
                      81f5e0c4    0000000c     --HOLE-- [fill = 00000000]
                      81f5e0d0    00000024                              : port.oer5f (.text.vApplicationGetIdleTaskMemory)
                      81f5e0f4    0000000c     --HOLE-- [fill = 00000000]
                      81f5e100    00000024                              : port.oer5f (.text.vApplicationGetTimerTaskMemory)
                      81f5e124    0000000c     --HOLE-- [fill = 00000000]
                      81f5e130    00000024                              : list.oer5f (.text.vListInitialise)
                      81f5e154    0000000c     --HOLE-- [fill = 00000000]
                      81f5e160    00000024                              : tasks.oer5f (.text.vTaskInternalSetTimeOutState)
                      81f5e184    0000000c     --HOLE-- [fill = 00000000]
                      81f5e190    00000024                              : tasks.oer5f (.text.xTaskGetTickCountFromISR)
                      81f5e1b4    00000024     libclang_rt.builtins.a : aeabi_uldivmod.S.obj (.text)
                      81f5e1d8    00000008     --HOLE-- [fill = 00000000]
                      81f5e1e0    00000020     ti.board.aer5f : am65xx_idk_pinmux.oer5f (.text.Board_pinmuxGetBaseAddr)
                      81f5e200    00000020     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_clearAleEntry)
                      81f5e220    00000020                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAlePolicerHstatReg)
                      81f5e240    00000020                  : csl_r5.oer5f (.text.CSL_armR5GetCpuID)
                      81f5e260    00000020     udma.aer5f : udma_ch.oer5f (.text.CSL_udmapGetTdResponse)
                      81f5e280    00000020     ti.osal.aer5f : ClockP_freertos.oer5f (.text.ClockP_Params_init)
                      81f5e2a0    00000020     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_validateAleEntryIndex)
                      81f5e2c0    00000020                : cpsw_ale.oer5f (.text.CpswAle_validatePolicerIndex)
                      81f5e2e0    00000020     enetphy.aer5f : dp83867.oer5f (.text.Dp83867_isMacModeSupported)
                      81f5e300    00000020     enet.aer5f : icssg_utils.oer5f (.text.EnetMacPort_isMii)
                      81f5e320    00000020                : cpsw_macport.oer5f (.text.EnetMacPort_isXfi)
                      81f5e340    00000020                : enet_queue.oer5f (.text.EnetQueue_initQ)
                      81f5e360    00000020     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_getEnetHandleByIdx)
                      81f5e380    00000020     ti.osal.aer5f : HwiP_freertos.oer5f (.text.HwiP_Params_init)
                      81f5e3a0    00000020     enet.aer5f : icssg.oer5f (.text.Icssg_getChIdx)
                      81f5e3c0    00000020     ti.osal.aer5f : Utils_freertos.oer5f (.text.Osal_DebugP_assert)
                      81f5e3e0    00000020                   : DebugP_nonos.oer5f (.text.Osal_DebugP_assert_fcn)
                      81f5e400    00000020     ti.drv.uart.aer5f : UART_drv.oer5f (.text.UART_Params_init)
                      81f5e420    00000020                       : UART_drv.oer5f (.text.UART_open)
                      81f5e440    00000020     udma.aer5f : udma_ring_common.oer5f (.text.UdmaRingMonPrms_init)
                      81f5e460    00000020                : udma_ch.oer5f (.text.Udma_chInitRegs)
                      81f5e480    00000020                : udma_rmcfg.oer5f (.text.Udma_rmGetDefBoardCfgPrms)
                      81f5e4a0    00000020     libc.a : assert.c.obj (.text._abort_msg)
                      81f5e4c0    00000020            : args_main.c.obj (.text._args_main)
                      81f5e4e0    00000020     ti.kernel.freertos.aer5f : port.oer5f (.text._system_post_cinit)
                      81f5e500    00000020                              : tasks.oer5f (.text.vTaskEndScheduler)
                      81f5e520    00000020     libc.a : wcslen.c.obj (.text.wcslen)
                      81f5e540    00000020     ti.kernel.freertos.aer5f : tasks.oer5f (.text.xTaskGetTickCount)
                      81f5e560    0000001c     ti.board.aer5f : am65xx_idk_info.oer5f (.text.Board_isSocPG1)
                      81f5e57c    00000004     --HOLE-- [fill = 00000000]
                      81f5e580    0000001c     ti.csl.aer5f : csl_cpsw_ss.oer5f (.text.CSL_CPSW_SS_setSGMIIMode)
                      81f5e59c    00000004     --HOLE-- [fill = 00000000]
                      81f5e5a0    0000001c                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAlePolicerGlobConfig)
                      81f5e5bc    00000004     --HOLE-- [fill = 00000000]
                      81f5e5c0    0000001c                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleStatusNumAleEntries)
                      81f5e5dc    00000004     --HOLE-- [fill = 00000000]
                      81f5e5e0    0000001c                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleStatusRamDepth)
                      81f5e5fc    00000004     --HOLE-- [fill = 00000000]
                      81f5e600    0000001c                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleStatusVlanMask)
                      81f5e61c    00000004     --HOLE-- [fill = 00000000]
                      81f5e620    0000001c                  : csl_cpsw.oer5f (.text.CSL_CPSW_getThruRateReg)
                      81f5e63c    00000004     --HOLE-- [fill = 00000000]
                      81f5e640    0000001c                  : csl_cpsw.oer5f (.text.CSL_CPSW_setVlanLTypeReg)
                      81f5e65c    00000004     --HOLE-- [fill = 00000000]
                      81f5e660    0000001c                  : csl_cpts.oer5f (.text.CSL_CPTS_TSEventPush)
                      81f5e67c    00000004     --HOLE-- [fill = 00000000]
                      81f5e680    0000001c                  : csl_cpts.oer5f (.text.CSL_CPTS_disableCpts)
                      81f5e69c    00000004     --HOLE-- [fill = 00000000]
                      81f5e6a0    0000001c                  : csl_cpts.oer5f (.text.CSL_CPTS_disableInterrupt)
                      81f5e6bc    00000004     --HOLE-- [fill = 00000000]
                      81f5e6c0    0000001c                  : csl_cpts.oer5f (.text.CSL_CPTS_enableCpts)
                      81f5e6dc    00000004     --HOLE-- [fill = 00000000]
                      81f5e6e0    0000001c                  : csl_cpts.oer5f (.text.CSL_CPTS_enableInterrupt)
                      81f5e6fc    00000004     --HOLE-- [fill = 00000000]
                      81f5e700    0000001c                  : csl_cpts.oer5f (.text.CSL_CPTS_popEvent)
                      81f5e71c    00000004     --HOLE-- [fill = 00000000]
                      81f5e720    0000001c                  : csl_cpts.oer5f (.text.CSL_CPTS_setRFTCLKSelectReg)
                      81f5e73c    00000004     --HOLE-- [fill = 00000000]
                      81f5e740    0000001c                  : csl_cpts.oer5f (.text.CSL_CPTS_setTSCompNudge)
                      81f5e75c    00000004     --HOLE-- [fill = 00000000]
                      81f5e760    0000001c     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.CSL_REG32_FEXT_RAW)
                      81f5e77c    00000004     --HOLE-- [fill = 00000000]
                      81f5e780    0000001c     ti.csl.aer5f : csl_cpts.oer5f (.text.CSL_REG32_FEXT_RAW)
                      81f5e79c    00000004     --HOLE-- [fill = 00000000]
                      81f5e7a0    0000001c     udma.aer5f : udma_ring_common.oer5f (.text.CSL_REG32_FEXT_RAW)
                      81f5e7bc    00000004     --HOLE-- [fill = 00000000]
                      81f5e7c0    0000001c                : udma_ring_normal.oer5f (.text.CSL_REG32_FEXT_RAW)
                      81f5e7dc    00000004     --HOLE-- [fill = 00000000]
                      81f5e7e0    0000001c     ti.csl.aer5f : csl_proxy.oer5f (.text.CSL_proxyGetDataAddr)
                      81f5e7fc    00000004     --HOLE-- [fill = 00000000]
                      81f5e800    0000001c                  : csl_vim.oer5f (.text.CSL_vimGetFiqVectorAddress)
                      81f5e81c    00000004     --HOLE-- [fill = 00000000]
                      81f5e820    0000001c     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_disablePortMirror)
                      81f5e83c    00000004     --HOLE-- [fill = 00000000]
                      81f5e840    0000001c                : cpsw_ale.oer5f (.text.CpswAle_getMaxAleEntries)
                      81f5e85c    00000004     --HOLE-- [fill = 00000000]
                      81f5e860    0000001c                : cpsw_ale.oer5f (.text.CpswAle_getMaxPolicers)
                      81f5e87c    00000004     --HOLE-- [fill = 00000000]
                      81f5e880    0000001c                : cpsw_ale.oer5f (.text.CpswAle_mapBw2IdlIncVal)
                      81f5e89c    00000004     --HOLE-- [fill = 00000000]
                      81f5e8a0    0000001c                : cpsw.oer5f (.text.Cpsw_getTxMtuPerPriority)
                      81f5e8bc    00000004     --HOLE-- [fill = 00000000]
                      81f5e8c0    0000001c     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.EnetAppUtils_isAM65xxES1)
                      81f5e8dc    00000004     --HOLE-- [fill = 00000000]
                      81f5e8e0    0000001c     enet.aer5f : cpsw.oer5f (.text.EnetMod_isOpen)
                      81f5e8fc    00000004     --HOLE-- [fill = 00000000]
                      81f5e900    0000001c                : enet_phymdio_dflt.oer5f (.text.EnetMod_isOpen)
                      81f5e91c    00000004     --HOLE-- [fill = 00000000]
                      81f5e920    0000001c                : enet_udma_priv.oer5f (.text.EnetUdma_dmaDescInit)
                      81f5e93c    00000004     --HOLE-- [fill = 00000000]
                      81f5e940    0000001c     ti.csl.aer5f : timer.oer5f (.text.HW_WR_FIELD32_RAW)
                      81f5e95c    00000004     --HOLE-- [fill = 00000000]
                      81f5e960    0000001c                  : uart.oer5f (.text.HW_WR_FIELD32_RAW)
                      81f5e97c    00000004     --HOLE-- [fill = 00000000]
                      81f5e980    0000001c     ti.drv.pruss.aer5f : pruicss_drv.oer5f (.text.HW_WR_FIELD32_RAW)
                      81f5e99c    00000004     --HOLE-- [fill = 00000000]
                      81f5e9a0    0000001c     enet.aer5f : icssg_timesync.oer5f (.text.IcssgTimeSync_initCfg)
                      81f5e9bc    00000004     --HOLE-- [fill = 00000000]
                      81f5e9c0    0000001c                : icssg_utils.oer5f (.text.IcssgUtils_hwqReset)
                      81f5e9dc    00000004     --HOLE-- [fill = 00000000]
                      81f5e9e0    0000001c                : icssg_utils.oer5f (.text.Icssg_getDramAddr)
                      81f5e9fc    00000004     --HOLE-- [fill = 00000000]
                      81f5ea00    0000001c                : icssg.oer5f (.text.Icssg_isVlanAware)
                      81f5ea1c    00000004     --HOLE-- [fill = 00000000]
                      81f5ea20    0000001c     sciclient.aer5f : sciclient_rm.oer5f (.text.Sciclient_rmIrqRelease)
                      81f5ea3c    00000004     --HOLE-- [fill = 00000000]
                      81f5ea40    0000001c     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_dmTimerCheckOverflow)
                      81f5ea5c    00000004     --HOLE-- [fill = 00000000]
                      81f5ea60    0000001c     ti.csl.aer5f : uart.oer5f (.text.UARTBreakCtl)
                      81f5ea7c    00000004     --HOLE-- [fill = 00000000]
                      81f5ea80    0000001c                  : uart.oer5f (.text.UARTDirEnControl)
                      81f5ea9c    00000004     --HOLE-- [fill = 00000000]
                      81f5eaa0    0000001c                  : uart.oer5f (.text.UARTDirPolSet)
                      81f5eabc    00000004     --HOLE-- [fill = 00000000]
                      81f5eac0    0000001c                  : uart.oer5f (.text.UARTDivisorLatchDisable)
                      81f5eadc    00000004     --HOLE-- [fill = 00000000]
                      81f5eae0    0000001c                  : uart.oer5f (.text.UARTLoopbackModeControl)
                      81f5eafc    00000004     --HOLE-- [fill = 00000000]
                      81f5eb00    0000001c     ti.kernel.freertos.aer5f : queue.oer5f (.text.prvGetDisinheritPriorityAfterTimeout)
                      81f5eb1c    00000004     --HOLE-- [fill = 00000000]
                      81f5eb20    0000001c                              : port.oer5f (.text.prvTaskExitError)
                      81f5eb3c    0000001c     libc.a : _printfi.c.obj (.text.strlen)
                      81f5eb58    0000001c            : aeabi_portable.c.obj (.text.strlen)
                      81f5eb74    0000001c     libsysbm.a : hostrename.c.obj (.text.strlen)
                      81f5eb90    0000001c     libclang_rt.builtins.a : aeabi_memset.S.obj (.text)
                      81f5ebac    00000004     --HOLE-- [fill = 00000000]
                      81f5ebb0    00000018     ti.board.aer5f : board_ethernet_config.oer5f (.text.Board_mdioInit)
                      81f5ebc8    00000008     --HOLE-- [fill = 00000000]
                      81f5ebd0    00000018                    : board_ethernet_config.oer5f (.text.Board_navssThreadmapConfig)
                      81f5ebe8    00000008     --HOLE-- [fill = 00000000]
                      81f5ebf0    00000018     ti.csl.aer5f : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_disableCastagnoliCRC)
                      81f5ec08    00000008     --HOLE-- [fill = 00000000]
                      81f5ec10    00000018                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_disableLoopback)
                      81f5ec28    00000008     --HOLE-- [fill = 00000000]
                      81f5ec30    00000018                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_disableTxShortGap)
                      81f5ec48    00000008     --HOLE-- [fill = 00000000]
                      81f5ec50    00000018                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_disableTxShortGapLimit)
                      81f5ec68    00000008     --HOLE-- [fill = 00000000]
                      81f5ec70    00000018                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_enableCastagnoliCRC)
                      81f5ec88    00000008     --HOLE-- [fill = 00000000]
                      81f5ec90    00000018                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_enableIdleMode)
                      81f5eca8    00000008     --HOLE-- [fill = 00000000]
                      81f5ecb0    00000018                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_enableLoopback)
                      81f5ecc8    00000008     --HOLE-- [fill = 00000000]
                      81f5ecd0    00000018                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_enableTxShortGap)
                      81f5ece8    00000008     --HOLE-- [fill = 00000000]
                      81f5ecf0    00000018                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_enableTxShortGapLimit)
                      81f5ed08    00000008     --HOLE-- [fill = 00000000]
                      81f5ed10    00000018                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_isMACResetDone)
                      81f5ed28    00000008     --HOLE-- [fill = 00000000]
                      81f5ed30    00000018                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_resetMac)
                      81f5ed48    00000008     --HOLE-- [fill = 00000000]
                      81f5ed50    00000018                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_setRxMaxLen)
                      81f5ed68    00000008     --HOLE-- [fill = 00000000]
                      81f5ed70    00000018                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_setTxGap)
                      81f5ed88    00000008     --HOLE-- [fill = 00000000]
                      81f5ed90    00000018                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getAleEthertypeEntry_4G)
                      81f5eda8    00000008     --HOLE-- [fill = 00000000]
                      81f5edb0    00000018                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getAleEthertypeEntry_9G)
                      81f5edc8    00000008     --HOLE-- [fill = 00000000]
                      81f5edd0    00000018                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleOUIAddrEntry)
                      81f5ede8    00000008     --HOLE-- [fill = 00000000]
                      81f5edf0    00000018                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAlePortMirrorSouce)
                      81f5ee08    00000008     --HOLE-- [fill = 00000000]
                      81f5ee10    00000018                  : csl_cpts.oer5f (.text.CSL_CPTS_isRawInterruptStatusBitSet)
                      81f5ee28    00000008     --HOLE-- [fill = 00000000]
                      81f5ee30    00000018                  : csl_intaggr.oer5f (.text.CSL_intaggrIsValidStatusBitNum)
                      81f5ee48    00000008     --HOLE-- [fill = 00000000]
                      81f5ee50    00000018                  : csl_ringacc.oer5f (.text.CSL_ringaccInitRingObj)
                      81f5ee68    00000008     --HOLE-- [fill = 00000000]
                      81f5ee70    00000018                  : csl_ringacc.oer5f (.text.CSL_ringaccIsRingFull)
                      81f5ee88    00000008     --HOLE-- [fill = 00000000]
                      81f5ee90    00000018                  : csl_ringacc.oer5f (.text.CSL_ringaccRefreshRingOcc)
                      81f5eea8    00000008     --HOLE-- [fill = 00000000]
                      81f5eeb0    00000018     enet.aer5f : enet_udma_priv.oer5f (.text.CSL_udmapCppi5SetReturnPolicy)
                      81f5eec8    00000008     --HOLE-- [fill = 00000000]
                      81f5eed0    00000018     ti.csl.aer5f : csl_udmap.oer5f (.text.CSL_udmapDisableTxChan)
                      81f5eee8    00000008     --HOLE-- [fill = 00000000]
                      81f5eef0    00000018     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_getReceiveFilter)
                      81f5ef08    00000008     --HOLE-- [fill = 00000000]
                      81f5ef10    00000018                : cpsw_macport.oer5f (.text.CpswMacPort_isPortEnabled)
                      81f5ef28    00000008     --HOLE-- [fill = 00000000]
                      81f5ef30    00000018     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.EnetAppUtils_getNavSSInstanceId)
                      81f5ef48    00000008     --HOLE-- [fill = 00000000]
                      81f5ef50    00000018                                            : enet_apputils.oer5f (.text.EnetAppUtils_printStatsNonZero)
                      81f5ef68    00000008     --HOLE-- [fill = 00000000]
                      81f5ef70    00000018                                            : enet_apputils.oer5f (.text.EnetAppUtils_printStatsWithIdxNonZero)
                      81f5ef88    00000008     --HOLE-- [fill = 00000000]
                      81f5ef90    00000018     enet.aer5f : enet_hostport_udma.oer5f (.text.EnetHostPortDma_closeRsvdFlow)
                      81f5efa8    00000008     --HOLE-- [fill = 00000000]
                      81f5efb0    00000018                : enet_osal.oer5f (.text.EnetOsal_createMutex)
                      81f5efc8    00000008     --HOLE-- [fill = 00000000]
                      81f5efd0    00000018                : enet_osal.oer5f (.text.EnetOsal_deinit)
                      81f5efe8    00000008     --HOLE-- [fill = 00000000]
                      81f5eff0    00000018                : enet_osal.oer5f (.text.EnetOsal_deleteMutex)
                      81f5f008    00000008     --HOLE-- [fill = 00000000]
                      81f5f010    00000018                : enet_osal.oer5f (.text.EnetOsal_disableAllIntr)
                      81f5f028    00000008     --HOLE-- [fill = 00000000]
                      81f5f030    00000018                : enet_osal.oer5f (.text.EnetOsal_lockMutex)
                      81f5f048    00000008     --HOLE-- [fill = 00000000]
                      81f5f050    00000018                : enet_osal.oer5f (.text.EnetOsal_restoreAllIntr)
                      81f5f068    00000008     --HOLE-- [fill = 00000000]
                      81f5f070    00000018                : enet_osal.oer5f (.text.EnetOsal_unlockMutex)
                      81f5f088    00000008     --HOLE-- [fill = 00000000]
                      81f5f090    00000018                : enet_osal.oer5f (.text.EnetOsal_unregisterIntr)
                      81f5f0a8    00000008     --HOLE-- [fill = 00000000]
                      81f5f0b0    00000018                : enet_rm.oer5f (.text.EnetRm_initResourceNode)
                      81f5f0c8    00000008     --HOLE-- [fill = 00000000]
                      81f5f0d0    00000018                : enet_udma_priv.oer5f (.text.EnetUdma_freeProxy)
                      81f5f0e8    00000008     --HOLE-- [fill = 00000000]
                      81f5f0f0    00000018                : enet_udma.oer5f (.text.EnetUdma_getRxChFlowStartIdx)
                      81f5f108    00000008     --HOLE-- [fill = 00000000]
                      81f5f110    00000018                : enet_udma.oer5f (.text.EnetUdma_getRxFlowCnt)
                      81f5f128    00000008     --HOLE-- [fill = 00000000]
                      81f5f130    00000018                : cpsw_ale.oer5f (.text.EnetUtils_cmpMacAddr)
                      81f5f148    00000008     --HOLE-- [fill = 00000000]
                      81f5f150    00000018                : enet_utils.oer5f (.text.EnetUtils_physToVirt)
                      81f5f168    00000008     --HOLE-- [fill = 00000000]
                      81f5f170    00000018                : enet_utils.oer5f (.text.EnetUtils_virtToPhys)
                      81f5f188    00000008     --HOLE-- [fill = 00000000]
                      81f5f190    00000018     ti.board.aer5f : board_clock.oer5f (.text.HW_WR_REG32_RAW)
                      81f5f1a8    00000008     --HOLE-- [fill = 00000000]
                      81f5f1b0    00000018     ti.csl.aer5f : interrupt.oer5f (.text.Intc_IntSetSrcType)
                      81f5f1c8    00000008     --HOLE-- [fill = 00000000]
                      81f5f1d0    00000018                  : interrupt.oer5f (.text.Intc_SystemDisable)
                      81f5f1e8    00000008     --HOLE-- [fill = 00000000]
                      81f5f1f0    00000018                  : interrupt.oer5f (.text.Intc_SystemEnable)
                      81f5f208    00000008     --HOLE-- [fill = 00000000]
                      81f5f210    00000018     ti.osal.aer5f : LoadP_freertos.oer5f (.text.LoadP_removeTask)
                      81f5f228    00000008     --HOLE-- [fill = 00000000]
                      81f5f230    00000018     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_getIrAddr)
                      81f5f248    00000008     --HOLE-- [fill = 00000000]
                      81f5f250    00000018                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmPsInit)
                      81f5f268    00000008     --HOLE-- [fill = 00000000]
                      81f5f270    00000018                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmPsIsEmpty)
                      81f5f288    00000008     --HOLE-- [fill = 00000000]
                      81f5f290    00000018     udma.aer5f : udma_ring_normal.oer5f (.text.Udma_ringFlushRawNormal)
                      81f5f2a8    00000008     --HOLE-- [fill = 00000000]
                      81f5f2b0    00000018     ti.kernel.freertos.aer5f : port.oer5f (.text.vPortYeildFromISR)
                      81f5f2c8    00000008     --HOLE-- [fill = 00000000]
                      81f5f2d0    00000018                              : tasks.oer5f (.text.vTaskSuspendAll)
                      81f5f2e8    00000008     --HOLE-- [fill = 00000000]
                      81f5f2f0    00000018                              : port.oer5f (.text.xPortInIsrContext)
                      81f5f308    00000018     libc.a : copy_zero_init.c.obj (.text:decompress:ZI)
                      81f5f320    00000014     ti.board.aer5f : board_pll.oer5f (.text.Board_PLLInit)
                      81f5f334    0000000c     --HOLE-- [fill = 00000000]
                      81f5f340    00000014                    : board_lld_init.oer5f (.text.Board_uartStdioInit)
                      81f5f354    0000000c     --HOLE-- [fill = 00000000]
                      81f5f360    00000014     ti.csl.aer5f : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_getRxMaxLen)
                      81f5f374    0000000c     --HOLE-- [fill = 00000000]
                      81f5f380    00000014                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_getTxGap)
                      81f5f394    0000000c     --HOLE-- [fill = 00000000]
                      81f5f3a0    00000014                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_isGMIIEnabled)
                      81f5f3b4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f3c0    00000014                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_isTxShortGapEnabled)
                      81f5f3d4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f3e0    00000014                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_isTxShortGapLimitEnabled)
                      81f5f3f4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f400    00000014                  : csl_cpsw.oer5f (.text.CSL_CPSW_disableAlePolicerThread)
                      81f5f414    0000000c     --HOLE-- [fill = 00000000]
                      81f5f420    00000014                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getALEEntryType_4G)
                      81f5f434    0000000c     --HOLE-- [fill = 00000000]
                      81f5f440    00000014                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getALEEntryType_9G)
                      81f5f454    0000000c     --HOLE-- [fill = 00000000]
                      81f5f460    00000014                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleIPv6HighEntryIndex)
                      81f5f474    0000000c     --HOLE-- [fill = 00000000]
                      81f5f480    00000014                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAlePortState)
                      81f5f494    0000000c     --HOLE-- [fill = 00000000]
                      81f5f4a0    00000014                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleStatusNumPolicers)
                      81f5f4b4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f4c0    00000014                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_initAleTblWds)
                      81f5f4d4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f4e0    00000014                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_initAleTblWds)
                      81f5f4f4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f500    00000014                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAlePortState)
                      81f5f514    0000000c     --HOLE-- [fill = 00000000]
                      81f5f520    00000014                  : csl_cpsw.oer5f (.text.CSL_CPSW_setPort0FlowIdOffset)
                      81f5f534    0000000c     --HOLE-- [fill = 00000000]
                      81f5f540    00000014                  : csl_cpsw.oer5f (.text.CSL_CPSW_setPort0RxMaxLen)
                      81f5f554    0000000c     --HOLE-- [fill = 00000000]
                      81f5f560    00000014                  : csl_mdio.oer5f (.text.CSL_MDIO_clearUnmaskedLinkStatusChangeInt)
                      81f5f574    0000000c     --HOLE-- [fill = 00000000]
                      81f5f580    00000014                  : csl_mdio.oer5f (.text.CSL_MDIO_enableLinkStatusChangeInterrupt)
                      81f5f594    0000000c     --HOLE-- [fill = 00000000]
                      81f5f5a0    00000014                  : csl_mdio.oer5f (.text.CSL_MDIO_isPhyRegAccessComplete)
                      81f5f5b4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f5c0    00000014                  : csl_mdio.oer5f (.text.CSL_MDIO_setClkDivVal)
                      81f5f5d4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f5e0    00000014                  : csl_mdio.oer5f (.text.CSL_MDIO_setPollIPG)
                      81f5f5f4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f600    00000014                  : csl_ringacc.oer5f (.text.CSL_REG32_FEXT_RAW)
                      81f5f614    0000000c     --HOLE-- [fill = 00000000]
                      81f5f620    00000014                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_DisableTestPattern)
                      81f5f634    0000000c     --HOLE-- [fill = 00000000]
                      81f5f640    00000014                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_disableAutoNegotiation)
                      81f5f654    0000000c     --HOLE-- [fill = 00000000]
                      81f5f660    00000014                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_disableLoopback)
                      81f5f674    0000000c     --HOLE-- [fill = 00000000]
                      81f5f680    00000014                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_disableMasterMode)
                      81f5f694    0000000c     --HOLE-- [fill = 00000000]
                      81f5f6a0    00000014                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_enableAutoNegotiation)
                      81f5f6b4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f6c0    00000014                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_enableLoopback)
                      81f5f6d4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f6e0    00000014                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_enableMasterMode)
                      81f5f6f4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f700    00000014                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_endRxTxSoftReset)
                      81f5f714    0000000c     --HOLE-- [fill = 00000000]
                      81f5f720    00000014                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_startRxTxSoftReset)
                      81f5f734    0000000c     --HOLE-- [fill = 00000000]
                      81f5f740    00000014                  : csl_proxy.oer5f (.text.CSL_proxyGetNumThreads)
                      81f5f754    0000000c     --HOLE-- [fill = 00000000]
                      81f5f760    00000014                  : csl_ringacc.oer5f (.text.CSL_ringaccGetRingElementAddr)
                      81f5f774    0000000c     --HOLE-- [fill = 00000000]
                      81f5f780    00000014                  : csl_sec_proxy.oer5f (.text.CSL_secProxyGetDataAddr)
                      81f5f794    0000000c     --HOLE-- [fill = 00000000]
                      81f5f7a0    00000014     enet.aer5f : enet_udma_priv.oer5f (.text.CSL_udmapCppi5SetDescType)
                      81f5f7b4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f7c0    00000014                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5SetPsDataLen)
                      81f5f7d4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f7e0    00000014                : cpsw_cpts.oer5f (.text.CpswCpts_initCfg)
                      81f5f7f4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f800    00000014                : cpsw_hostport.oer5f (.text.CpswHostPort_getRxPriority)
                      81f5f814    0000000c     --HOLE-- [fill = 00000000]
                      81f5f820    00000014                : cpsw_hostport.oer5f (.text.CpswHostPort_getTxPriority)
                      81f5f834    0000000c     --HOLE-- [fill = 00000000]
                      81f5f840    00000014                : cpsw_hostport.oer5f (.text.CpswHostPort_mapCntToBw)
                      81f5f854    0000000c     --HOLE-- [fill = 00000000]
                      81f5f860    00000014                : cpsw_macport.oer5f (.text.CpswMacPort_mapCntToBw)
                      81f5f874    0000000c     --HOLE-- [fill = 00000000]
                      81f5f880    00000014                : cpsw_macport_intervlan.oer5f (.text.CpswMacPort_openInterVlan)
                      81f5f894    0000000c     --HOLE-- [fill = 00000000]
                      81f5f8a0    00000014     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.text.EnetBoard_getPhyCfg)
                      81f5f8b4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f8c0    00000014     enet_multiport.oer5f (.text.EnetMp_macMode2MacMii)
                      81f5f8d4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f8e0    00000014     enet.aer5f : enet_osal_dflt.oer5f (.text.EnetOsalDflt_disableIntr)
                      81f5f8f4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f900    00000014                : enet_osal_dflt.oer5f (.text.EnetOsalDflt_enableIntr)
                      81f5f914    0000000c     --HOLE-- [fill = 00000000]
                      81f5f920    00000014                : enet_udma_priv.oer5f (.text.EnetUdma_dmaDescQInit)
                      81f5f934    0000000c     --HOLE-- [fill = 00000000]
                      81f5f940    00000014                : cpsw_macport_intervlan.oer5f (.text.EnetUtils_cmpMacAddr)
                      81f5f954    0000000c     --HOLE-- [fill = 00000000]
                      81f5f960    00000014                : cpsw_ale.oer5f (.text.EnetUtils_copyMacAddr)
                      81f5f974    0000000c     --HOLE-- [fill = 00000000]
                      81f5f980    00000014                : cpsw_macport_intervlan.oer5f (.text.EnetUtils_copyMacAddr)
                      81f5f994    0000000c     --HOLE-- [fill = 00000000]
                      81f5f9a0    00000014     enet_example_utils_full_freertos.aer5f : enet_ioctlutils.oer5f (.text.EnetUtils_copyMacAddr)
                      81f5f9b4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f9c0    00000014                                            : enet_udmautils.oer5f (.text.EnetUtils_copyMacAddr)
                      81f5f9d4    0000000c     --HOLE-- [fill = 00000000]
                      81f5f9e0    00000014     enet_multiport.oer5f (.text.EnetUtils_copyMacAddr)
                      81f5f9f4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fa00    00000014     enet_example_utils_full_freertos.aer5f : enet_apputils_k3.oer5f (.text.Enet_isCpswFamily)
                      81f5fa14    0000000c     --HOLE-- [fill = 00000000]
                      81f5fa20    00000014                                            : enet_udmautils.oer5f (.text.Enet_isCpswFamily)
                      81f5fa34    0000000c     --HOLE-- [fill = 00000000]
                      81f5fa40    00000014     enet_multiport.oer5f (.text.Enet_isCpswFamily)
                      81f5fa54    0000000c     --HOLE-- [fill = 00000000]
                      81f5fa60    00000014     enet.aer5f : enet_udma.oer5f (.text.Enet_isIcssFamily)
                      81f5fa74    0000000c     --HOLE-- [fill = 00000000]
                      81f5fa80    00000014                : enet_udma_priv.oer5f (.text.Enet_isIcssFamily)
                      81f5fa94    0000000c     --HOLE-- [fill = 00000000]
                      81f5faa0    00000014     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.Enet_isIcssFamily)
                      81f5fab4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fac0    00000014     enet_multiport.oer5f (.text.Enet_isIcssFamily)
                      81f5fad4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fae0    00000014     ti.board.aer5f : board_ethernet_config.oer5f (.text.HW_RD_FIELD32_RAW)
                      81f5faf4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fb00    00000014     ti.csl.aer5f : timer.oer5f (.text.HW_RD_FIELD32_RAW)
                      81f5fb14    0000000c     --HOLE-- [fill = 00000000]
                      81f5fb20    00000014                  : uart.oer5f (.text.HW_RD_FIELD32_RAW)
                      81f5fb34    0000000c     --HOLE-- [fill = 00000000]
                      81f5fb40    00000014     enet.aer5f : icssg_tas.oer5f (.text.IcssgTas_reset)
                      81f5fb54    0000000c     --HOLE-- [fill = 00000000]
                      81f5fb60    00000014                : icssg_timesync.oer5f (.text.IcssgTimeSync_close)
                      81f5fb74    0000000c     --HOLE-- [fill = 00000000]
                      81f5fb80    00000014                : icssg_utils.oer5f (.text.Icssg_wr16)
                      81f5fb94    0000000c     --HOLE-- [fill = 00000000]
                      81f5fba0    00000014                : icssg_utils.oer5f (.text.Icssg_wr32)
                      81f5fbb4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fbc0    00000014                : icssg_utils.oer5f (.text.Icssg_wr8)
                      81f5fbd4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fbe0    00000014     ti.osal.aer5f : LoadP_freertos.oer5f (.text.LoadP_calcCounterDiff)
                      81f5fbf4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fc00    00000014                   : RegisterIntr_nonos.oer5f (.text.Osal_DeleteInterrupt)
                      81f5fc14    0000000c     --HOLE-- [fill = 00000000]
                      81f5fc20    00000014     ti.drv.pruss.aer5f : pruicss_drv.oer5f (.text.PRUICSS_socGetInitCfg)
                      81f5fc34    0000000c     --HOLE-- [fill = 00000000]
                      81f5fc40    00000014     sciclient.aer5f : sciclient_secureproxy.oer5f (.text.Sciclient_readThreadCount)
                      81f5fc54    0000000c     --HOLE-- [fill = 00000000]
                      81f5fc60    00000014                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIaIsIa)
                      81f5fc74    0000000c     --HOLE-- [fill = 00000000]
                      81f5fc80    00000014                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrIsIr)
                      81f5fc94    0000000c     --HOLE-- [fill = 00000000]
                      81f5fca0    00000014                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmPsGetIrqNode)
                      81f5fcb4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fcc0    00000014                     : sciclient_indirect.oer5f (.text.Sciclient_service)
                      81f5fcd4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fce0    00000014                     : sciclient_secureproxy.oer5f (.text.Sciclient_threadStatusReg)
                      81f5fcf4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fd00    00000014                     : sciclient_secureproxy.oer5f (.text.Sciclient_verifyThread)
                      81f5fd14    0000000c     --HOLE-- [fill = 00000000]
                      81f5fd20    00000014     ti.csl.aer5f : uart.oer5f (.text.UARTInt2StatusGet)
                      81f5fd34    0000000c     --HOLE-- [fill = 00000000]
                      81f5fd40    00000014                  : uart.oer5f (.text.UARTTxFIFOFullStatusGet)
                      81f5fd54    0000000c     --HOLE-- [fill = 00000000]
                      81f5fd60    00000014     ti.drv.uart.aer5f : UART_drv.oer5f (.text.UART_readPolling)
                      81f5fd74    0000000c     --HOLE-- [fill = 00000000]
                      81f5fd80    00000014                       : UART_drv.oer5f (.text.UART_write)
                      81f5fd94    0000000c     --HOLE-- [fill = 00000000]
                      81f5fda0    00000014                       : UART_drv.oer5f (.text.UART_writePolling)
                      81f5fdb4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fdc0    00000014     udma.aer5f : udma_osal.oer5f (.text.Udma_osalDisableIntr)
                      81f5fdd4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fde0    00000014                : udma_ring_common.oer5f (.text.Udma_ringGetElementCnt)
                      81f5fdf4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fe00    00000014                : udma_ring_common.oer5f (.text.Udma_ringGetForwardRingOcc)
                      81f5fe14    0000000c     --HOLE-- [fill = 00000000]
                      81f5fe20    00000014                : udma_ring_common.oer5f (.text.Udma_ringGetMemPtr)
                      81f5fe34    0000000c     --HOLE-- [fill = 00000000]
                      81f5fe40    00000014                : udma_ring_common.oer5f (.text.Udma_ringGetMode)
                      81f5fe54    0000000c     --HOLE-- [fill = 00000000]
                      81f5fe60    00000014                : udma_ring_common.oer5f (.text.Udma_ringGetRdIdx)
                      81f5fe74    0000000c     --HOLE-- [fill = 00000000]
                      81f5fe80    00000014                : udma_ring_common.oer5f (.text.Udma_ringGetReverseRingOcc)
                      81f5fe94    0000000c     --HOLE-- [fill = 00000000]
                      81f5fea0    00000014                : udma_ring_common.oer5f (.text.Udma_ringGetWrIdx)
                      81f5feb4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fec0    00000014                : udma_ring_common.oer5f (.text.Udma_ringPrime)
                      81f5fed4    0000000c     --HOLE-- [fill = 00000000]
                      81f5fee0    00000014                : udma_ring_common.oer5f (.text.Udma_ringPrimeRead)
                      81f5fef4    0000000c     --HOLE-- [fill = 00000000]
                      81f5ff00    00000014                : udma_ring_common.oer5f (.text.Udma_ringSetDoorBell)
                      81f5ff14    00000014     libc.a : sprintf.c.obj (.text._outc)
                      81f5ff28    00000008     --HOLE-- [fill = 00000000]
                      81f5ff30    00000014     ti.csl.aer5f : csl_proxy.oer5f (.text.bIsPowerOfTwo)
                      81f5ff44    0000000c     --HOLE-- [fill = 00000000]
                      81f5ff50    00000014     ti.osal.aer5f : Arch_util.oer5f (.text.osalArch_Init)
                      81f5ff64    00000014     libsysbm.a : hostrename.c.obj (.text.strcpy)
                      81f5ff78    00000008     --HOLE-- [fill = 00000000]
                      81f5ff80    00000014     ti.kernel.freertos.aer5f : tasks.oer5f (.text.ulTaskGetIdleRunTimeCounter)
                      81f5ff94    0000000c     --HOLE-- [fill = 00000000]
                      81f5ffa0    00000014                              : tasks.oer5f (.text.vTaskMissedYield)
                      81f5ffb4    00000014     libc.a : copy_decompress_none.c.obj (.text:decompress:none)
                      81f5ffc8    00000008     --HOLE-- [fill = 00000000]
                      81f5ffd0    00000010     ti.csl.aer5f : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_getMacControlReg)
                      81f5ffe0    00000010                  : csl_cpgmac_sl.oer5f (.text.CSL_CPGMAC_SL_setMacControlReg)
                      81f5fff0    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_clearAleTable)
                      81f60000    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_disableAleBypass)
                      81f60010    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_disableAleRateLimit)
                      81f60020    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_disableAleTxRateLimit)
                      81f60030    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_disableAleVlanAware)
                      81f60040    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_disableP0TxCastagnoliCRC)
                      81f60050    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_disablePort0)
                      81f60060    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_disableVlanAware)
                      81f60070    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_enableAleBypass)
                      81f60080    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_enableAleRateLimit)
                      81f60090    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_enableAleTxRateLimit)
                      81f600a0    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_enableAleVlanAware)
                      81f600b0    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_enableP0TxCastagnoliCRC)
                      81f600c0    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_enablePort0)
                      81f600d0    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_enableVlanAware)
                      81f600e0    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_getPort0FlowIdOffset)
                      81f600f0    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_getPort0RxMaxLen)
                      81f60100    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_isAleAgeOutDone)
                      81f60110    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleCtrl2MirrorMatchIndex)
                      81f60120    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleOAMLpbkControl)
                      81f60130    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAlePrescaleReg)
                      81f60140    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleUnknwnVlanMemberReg)
                      81f60150    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleUnknwnVlanRegMcastReg)
                      81f60160    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleUnknwnVlanUnregMcastReg)
                      81f60170    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleUnknwnVlanUntagReg)
                      81f60180    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_setGapThreshold)
                      81f60190    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_setVlanType)
                      81f601a0    00000010                  : csl_cpsw.oer5f (.text.CSL_CPSW_startAleAgeOutNow)
                      81f601b0    00000010                  : csl_mdio.oer5f (.text.CSL_MDIO_disableLinkStatusChangeInterrupt)
                      81f601c0    00000010                  : csl_mdio.oer5f (.text.CSL_MDIO_disableStateChangeMode)
                      81f601d0    00000010                  : csl_mdio.oer5f (.text.CSL_MDIO_disableStateMachine)
                      81f601e0    00000010                  : csl_mdio.oer5f (.text.CSL_MDIO_disableStatusChangeModeInterrupt)
                      81f601f0    00000010                  : csl_mdio.oer5f (.text.CSL_MDIO_enableStateChangeMode)
                      81f60200    00000010                  : csl_mdio.oer5f (.text.CSL_MDIO_enableStateMachine)
                      81f60210    00000010                  : csl_mdio.oer5f (.text.CSL_MDIO_enableStatusChangeModeInterrupt)
                      81f60220    00000010                  : csl_mdio.oer5f (.text.CSL_MDIO_getLinkStatusChangePhyAddr)
                      81f60230    00000010                  : csl_mdio.oer5f (.text.CSL_MDIO_isPhyAlive)
                      81f60240    00000010                  : csl_mdio.oer5f (.text.CSL_MDIO_isPhyLinked)
                      81f60250    00000010                  : csl_mdio.oer5f (.text.CSL_MDIO_isUnmaskedLinkStatusChangeIntSet)
                      81f60260    00000010     enet.aer5f : icssg.oer5f (.text.CSL_REG32_FEXT_RAW)
                      81f60270    00000010     enet_example_utils_full_freertos.aer5f : enet_apputils_k3.oer5f (.text.CSL_REG32_FEXT_RAW)
                      81f60280    00000010     sciclient.aer5f : sciclient.oer5f (.text.CSL_REG32_FEXT_RAW)
                      81f60290    00000010     ti.csl.aer5f : csl_proxy.oer5f (.text.CSL_REG32_FEXT_RAW)
                      81f602a0    00000010                  : csl_udmap.oer5f (.text.CSL_REG32_FEXT_RAW)
                      81f602b0    00000010     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.text.CSL_REG32_RD_RAW)
                      81f602c0    00000010     ti.board.aer5f : am65xx_idk_info.oer5f (.text.CSL_REG32_RD_RAW)
                      81f602d0    00000010                    : board_ethernet_config.oer5f (.text.CSL_REG32_RD_RAW)
                      81f602e0    00000010     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.text.CSL_REG32_WR_RAW)
                      81f602f0    00000010     ti.csl.aer5f : csl_cpsgmii.oer5f (.text.CSL_SGMII_getRxTxSoftResetStatus)
                      81f60300    00000010                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_getSerdesPLLLockStatus)
                      81f60310    00000010                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_isAutoNegotiationEnabled)
                      81f60320    00000010                  : csl_cpsgmii.oer5f (.text.CSL_SGMII_isMasterModeEnabled)
                      81f60330    00000010                  : csl_ringacc.oer5f (.text.CSL_ringaccIsRingEmpty)
                      81f60340    00000010                  : csl_serdes3.oer5f (.text.CSL_serdesGetPLLStatus)
                      81f60350    00000010                  : csl_serdes3.oer5f (.text.CSL_serdesWaitForCMUOK)
                      81f60360    00000010     enet.aer5f : enet_udma_priv.oer5f (.text.CSL_udmapCppi5GetPsDataLen)
                      81f60370    00000010                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5HostSetPktLen)
                      81f60380    00000010                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5LinkDesc)
                      81f60390    00000010                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5SetBufferAddr)
                      81f603a0    00000010                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5SetBufferLen)
                      81f603b0    00000010                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5SetEpiDataPresent)
                      81f603c0    00000010                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5SetIds)
                      81f603d0    00000010                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5SetOrgBufferAddr)
                      81f603e0    00000010                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5SetPsDataLoc)
                      81f603f0    00000010                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5SetPsFlags)
                      81f60400    00000010                : cpsw_ale.oer5f (.text.CpswAle_mapIdlIncVal2Bw)
                      81f60410    00000010                : cpsw_cpts.oer5f (.text.CpswCpts_close)
                      81f60420    00000010                : cpsw_hostport.oer5f (.text.CpswHostPort_rejoin)
                      81f60430    00000010                : cpsw_macport.oer5f (.text.CpswMacPort_getRxPriority)
                      81f60440    00000010                : cpsw_macport.oer5f (.text.CpswMacPort_getTxPriority)
                      81f60450    00000010                : cpsw_macport.oer5f (.text.CpswMacPort_rejoin)
                      81f60460    00000010     enetphy.aer5f : dp83822.oer5f (.text.Dp83822_isMacModeSupported)
                      81f60470    00000010     enet_multiport.oer5f (.text.EnetMp_rxIsrFxn)
                      81f60480    00000010     enet.aer5f : enet_osal_dflt.oer5f (.text.EnetOsalDflt_unregisterIntr)
                      81f60490    00000010                : cpsw_macport_intervlan.oer5f (.text.EnetUtils_clearMacAddr)
                      81f604a0    00000010                : icssg_utils.oer5f (.text.Icssg_getRgmiiCfgAddr)
                      81f604b0    00000010                : icssg_utils.oer5f (.text.Icssg_getVlanTableAddr)
                      81f604c0    00000010                : icssg_utils.oer5f (.text.Icssg_rd16)
                      81f604d0    00000010                : icssg_utils.oer5f (.text.Icssg_rd32)
                      81f604e0    00000010                : icssg_utils.oer5f (.text.Icssg_rd8)
                      81f604f0    00000010                : icssg_utils.oer5f (.text.Icssg_wr64)
                      81f60500    00000010     ti.osal.aer5f : Arch_util.oer5f (.text.OsalArch_clearInterrupt)
                      81f60510    00000010                   : Arch_util.oer5f (.text.OsalArch_disableInterrupt)
                      81f60520    00000010                   : Arch_util.oer5f (.text.OsalArch_enableInterrupt)
                      81f60530    00000010                   : RegisterIntr_nonos.oer5f (.text.Osal_ClearInterrupt)
                      81f60540    00000010                   : RegisterIntr_nonos.oer5f (.text.Osal_DisableInterrupt)
                      81f60550    00000010                   : RegisterIntr_nonos.oer5f (.text.Osal_EnableInterrupt)
                      81f60560    00000010     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmPsGetPsp)
                      81f60570    00000010     ti.csl.aer5f : timer.oer5f (.text.TIMERIntStatusGet)
                      81f60580    00000010                  : timer.oer5f (.text.TIMERWritePostedStatusGet)
                      81f60590    00000010     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_init_v1)
                      81f605a0    00000010     udma.aer5f : udma_ch.oer5f (.text.Udma_chGetUtcInst)
                      81f605b0    00000010                : udma_osal.oer5f (.text.Udma_osalMutexLock)
                      81f605c0    00000010                : udma_osal.oer5f (.text.Udma_osalUnRegisterIntr)
                      81f605d0    00000010     enet.aer5f : enet_udma_priv.oer5f (.text.Udma_proxyQueue)
                      81f605e0    00000010     udma.aer5f : udma_ring_normal.oer5f (.text.Udma_ringHandleClearRegsNormal)
                      81f605f0    00000010     enetphy.aer5f : vsc8514.oer5f (.text.Vsc8514_isMacModeSupported)
                      81f60600    00000010     ti.kernel.freertos.aer5f : port.oer5f (.text.vApplicationIdleHook)
                      81f60610    00000010                              : tasks.oer5f (.text.xTaskGetCurrentTaskHandle)
                      81f60620    0000000c     ti.csl.aer5f : csl_cpsw.oer5f (.text.CSL_CPSW_getAlePrescaleReg)
                      81f6062c    00000004     --HOLE-- [fill = 00000000]
                      81f60630    0000000c                  : csl_cpsw.oer5f (.text.CSL_CPSW_getGapThreshold)
                      81f6063c    00000004     --HOLE-- [fill = 00000000]
                      81f60640    0000000c                  : csl_cpsw.oer5f (.text.CSL_CPSW_getTxStartWords)
                      81f6064c    00000004     --HOLE-- [fill = 00000000]
                      81f60650    0000000c                  : csl_cpsw.oer5f (.text.CSL_CPSW_isAleBypassEnabled)
                      81f6065c    00000004     --HOLE-- [fill = 00000000]
                      81f60660    0000000c                  : csl_cpsw.oer5f (.text.CSL_CPSW_isAleRateLimitEnabled)
                      81f6066c    00000004     --HOLE-- [fill = 00000000]
                      81f60670    0000000c                  : csl_cpsw.oer5f (.text.CSL_CPSW_isAleTxRateLimitEnabled)
                      81f6067c    00000004     --HOLE-- [fill = 00000000]
                      81f60680    0000000c                  : csl_cpsw.oer5f (.text.CSL_CPSW_isAleVlanAwareEnabled)
                      81f6068c    00000004     --HOLE-- [fill = 00000000]
                      81f60690    0000000c                  : csl_cpsw.oer5f (.text.CSL_CPSW_isVlanAwareEnabled)
                      81f6069c    00000004     --HOLE-- [fill = 00000000]
                      81f606a0    0000000c                  : csl_mdio.oer5f (.text.CSL_MDIO_isStateChangeModeEnabled)
                      81f606ac    00000004     --HOLE-- [fill = 00000000]
                      81f606b0    0000000c                  : csl_mdio.oer5f (.text.CSL_MDIO_setPollEnableMask)
                      81f606bc    00000004     --HOLE-- [fill = 00000000]
                      81f606c0    0000000c     enet.aer5f : enet_udma_priv.oer5f (.text.CSL_udmapCppi5GetBufferLen)
                      81f606cc    00000004     --HOLE-- [fill = 00000000]
                      81f606d0    0000000c                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5GetDescType)
                      81f606dc    00000004     --HOLE-- [fill = 00000000]
                      81f606e0    0000000c                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5GetPsDataLoc)
                      81f606ec    00000004     --HOLE-- [fill = 00000000]
                      81f606f0    0000000c                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5IsEpiDataPresent)
                      81f606fc    00000004     --HOLE-- [fill = 00000000]
                      81f60700    0000000c                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5SetSrcTag)
                      81f6070c    00000004     --HOLE-- [fill = 00000000]
                      81f60710    0000000c     ti.osal.aer5f : CacheP_nonos.oer5f (.text.CacheP_Inv)
                      81f6071c    00000004     --HOLE-- [fill = 00000000]
                      81f60720    0000000c                   : CacheP_nonos.oer5f (.text.CacheP_wb)
                      81f6072c    00000004     --HOLE-- [fill = 00000000]
                      81f60730    0000000c                   : CacheP_nonos.oer5f (.text.CacheP_wbInv)
                      81f6073c    00000004     --HOLE-- [fill = 00000000]
                      81f60740    0000000c     enet.aer5f : cpsw_ale.oer5f (.text.CpswAle_disableBcastMcastLimit)
                      81f6074c    00000004     --HOLE-- [fill = 00000000]
                      81f60750    0000000c                : cpsw_ale.oer5f (.text.CpswAle_disableThreadPolicerConfig)
                      81f6075c    00000004     --HOLE-- [fill = 00000000]
                      81f60760    0000000c                : cpsw_ale.oer5f (.text.CpswAle_getPortState)
                      81f6076c    00000004     --HOLE-- [fill = 00000000]
                      81f60770    0000000c                : cpsw_ale.oer5f (.text.CpswAle_mapIPv4AddrOctet2RegWord)
                      81f6077c    00000004     --HOLE-- [fill = 00000000]
                      81f60780    0000000c                : cpsw_ale.oer5f (.text.CpswAle_maskIPv4AddrRegWord)
                      81f6078c    00000004     --HOLE-- [fill = 00000000]
                      81f60790    0000000c                : cpsw_ale.oer5f (.text.CpswAle_setAlePortState)
                      81f6079c    00000004     --HOLE-- [fill = 00000000]
                      81f607a0    0000000c                : cpsw_ale.oer5f (.text.CpswAle_setOAMLpbk)
                      81f607ac    00000004     --HOLE-- [fill = 00000000]
                      81f607b0    0000000c                : cpsw_ale.oer5f (.text.CpswAle_validateVlanPolicer)
                      81f607bc    00000004     --HOLE-- [fill = 00000000]
                      81f607c0    0000000c     enet_example_utils_full_freertos.aer5f : enet_apputils.oer5f (.text.EnetAppUtils_getChar)
                      81f607cc    00000004     --HOLE-- [fill = 00000000]
                      81f607d0    0000000c     enet_multiport.oer5f (.text.EnetMp_timerCallback)
                      81f607dc    00000004     --HOLE-- [fill = 00000000]
                      81f607e0    0000000c     enet.aer5f : enet_osal_dflt.oer5f (.text.EnetOsalDflt_cacheInv)
                      81f607ec    00000004     --HOLE-- [fill = 00000000]
                      81f607f0    0000000c                : enet_osal_dflt.oer5f (.text.EnetOsalDflt_cacheWb)
                      81f607fc    00000004     --HOLE-- [fill = 00000000]
                      81f60800    0000000c                : enet_osal_dflt.oer5f (.text.EnetOsalDflt_cacheWbInv)
                      81f6080c    00000004     --HOLE-- [fill = 00000000]
                      81f60810    0000000c                : enet_osal_dflt.oer5f (.text.EnetOsalDflt_disableAllIntr)
                      81f6081c    00000004     --HOLE-- [fill = 00000000]
                      81f60820    0000000c                : enet_osal_dflt.oer5f (.text.EnetOsalDflt_restoreAllIntr)
                      81f6082c    00000004     --HOLE-- [fill = 00000000]
                      81f60830    0000000c                : enet_phymdio_dflt.oer5f (.text.EnetPhyMdioDflt_getPhyMdio)
                      81f6083c    00000004     --HOLE-- [fill = 00000000]
                      81f60840    0000000c     enetphy.aer5f : enetphy.oer5f (.text.EnetPhy_defaultState)
                      81f6084c    00000004     --HOLE-- [fill = 00000000]
                      81f60850    0000000c                   : enetphy.oer5f (.text.EnetPhy_releaseHandle)
                      81f6085c    00000004     --HOLE-- [fill = 00000000]
                      81f60860    0000000c     enet.aer5f : enet_rm.oer5f (.text.EnetRm_initAttachObj)
                      81f6086c    00000004     --HOLE-- [fill = 00000000]
                      81f60870    0000000c                : enet_udma_priv.oer5f (.text.EnetUdma_unregisterEvent)
                      81f6087c    00000004     --HOLE-- [fill = 00000000]
                      81f60880    0000000c                : cpsw_ale.oer5f (.text.EnetUtils_isMcastAddr)
                      81f6088c    00000004     --HOLE-- [fill = 00000000]
                      81f60890    0000000c                : cpsw_macport_intervlan.oer5f (.text.EnetUtils_isMcastAddr)
                      81f6089c    00000004     --HOLE-- [fill = 00000000]
                      81f608a0    0000000c                : enet_utils.oer5f (.text.EnetUtils_min)
                      81f608ac    00000004     --HOLE-- [fill = 00000000]
                      81f608b0    0000000c                : enet.oer5f (.text.Enet_initOsalCfg)
                      81f608bc    00000004     --HOLE-- [fill = 00000000]
                      81f608c0    0000000c                : enet.oer5f (.text.Enet_initUtilsCfg)
                      81f608cc    00000004     --HOLE-- [fill = 00000000]
                      81f608d0    0000000c     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.text.HW_RD_REG32_RAW)
                      81f608dc    00000004     --HOLE-- [fill = 00000000]
                      81f608e0    0000000c     sciclient.aer5f : sciclient.oer5f (.text.HW_RD_REG32_RAW)
                      81f608ec    00000004     --HOLE-- [fill = 00000000]
                      81f608f0    0000000c                     : sciclient_secureproxy.oer5f (.text.HW_RD_REG32_RAW)
                      81f608fc    00000004     --HOLE-- [fill = 00000000]
                      81f60900    0000000c     ti.board.aer5f : am65xx_idk_pinmux.oer5f (.text.HW_RD_REG32_RAW)
                      81f6090c    00000004     --HOLE-- [fill = 00000000]
                      81f60910    0000000c                    : board_ddr.oer5f (.text.HW_RD_REG32_RAW)
                      81f6091c    00000004     --HOLE-- [fill = 00000000]
                      81f60920    0000000c     ti.csl.aer5f : timer.oer5f (.text.HW_RD_REG32_RAW)
                      81f6092c    00000004     --HOLE-- [fill = 00000000]
                      81f60930    0000000c                  : uart.oer5f (.text.HW_RD_REG32_RAW)
                      81f6093c    00000004     --HOLE-- [fill = 00000000]
                      81f60940    0000000c     ti.osal.aer5f : TimerP_nonos.oer5f (.text.HW_RD_REG32_RAW)
                      81f6094c    00000004     --HOLE-- [fill = 00000000]
                      81f60950    0000000c     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.text.HW_WR_REG32_RAW)
                      81f6095c    00000004     --HOLE-- [fill = 00000000]
                      81f60960    0000000c     ti.board.aer5f : am65xx_idk_pinmux.oer5f (.text.HW_WR_REG32_RAW)
                      81f6096c    00000004     --HOLE-- [fill = 00000000]
                      81f60970    0000000c                    : board_ddr.oer5f (.text.HW_WR_REG32_RAW)
                      81f6097c    00000004     --HOLE-- [fill = 00000000]
                      81f60980    0000000c                    : board_ethernet_config.oer5f (.text.HW_WR_REG32_RAW)
                      81f6098c    00000004     --HOLE-- [fill = 00000000]
                      81f60990    0000000c     ti.csl.aer5f : timer.oer5f (.text.HW_WR_REG32_RAW)
                      81f6099c    00000004     --HOLE-- [fill = 00000000]
                      81f609a0    0000000c                  : uart.oer5f (.text.HW_WR_REG32_RAW)
                      81f609ac    00000004     --HOLE-- [fill = 00000000]
                      81f609b0    0000000c     ti.drv.pruss.aer5f : pruicss_drv.oer5f (.text.HW_WR_REG32_RAW)
                      81f609bc    00000004     --HOLE-- [fill = 00000000]
                      81f609c0    0000000c     ti.osal.aer5f : TimerP_nonos.oer5f (.text.HW_WR_REG32_RAW)
                      81f609cc    00000004     --HOLE-- [fill = 00000000]
                      81f609d0    0000000c                   : HwiP_freertos.oer5f (.text.HwiP_clearInterrupt)
                      81f609dc    00000004     --HOLE-- [fill = 00000000]
                      81f609e0    0000000c                   : HwiP_freertos.oer5f (.text.HwiP_disableInterrupt)
                      81f609ec    00000004     --HOLE-- [fill = 00000000]
                      81f609f0    0000000c                   : HwiP_freertos.oer5f (.text.HwiP_enableInterrupt)
                      81f609fc    00000004     --HOLE-- [fill = 00000000]
                      81f60a00    0000000c     enet.aer5f : icssg_utils.oer5f (.text.Icssg_getCfgAddr)
                      81f60a0c    00000004     --HOLE-- [fill = 00000000]
                      81f60a10    0000000c                : icssg_utils.oer5f (.text.Icssg_getSharedRamAddr)
                      81f60a1c    00000004     --HOLE-- [fill = 00000000]
                      81f60a20    0000000c     ti.csl.aer5f : interrupt.oer5f (.text.Intc_SystemRestore)
                      81f60a2c    00000004     --HOLE-- [fill = 00000000]
                      81f60a30    0000000c     ti.osal.aer5f : TaskP_freertos.oer5f (.text.OS_start)
                      81f60a3c    00000004     --HOLE-- [fill = 00000000]
                      81f60a40    0000000c                   : TaskP_freertos.oer5f (.text.OS_stop)
                      81f60a4c    00000004     --HOLE-- [fill = 00000000]
                      81f60a50    0000000c                   : Arch_util.oer5f (.text.OsalArch_globalDisableInterrupt)
                      81f60a5c    00000004     --HOLE-- [fill = 00000000]
                      81f60a60    0000000c                   : Arch_util.oer5f (.text.OsalArch_globalRestoreInterrupt)
                      81f60a6c    00000004     --HOLE-- [fill = 00000000]
                      81f60a70    0000000c     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrIntControlReg)
                      81f60a7c    00000004     --HOLE-- [fill = 00000000]
                      81f60a80    0000000c                     : sciclient_rm.oer5f (.text.Sciclient_rmIrqSet)
                      81f60a8c    00000004     --HOLE-- [fill = 00000000]
                      81f60a90    0000000c                     : sciclient_rm.oer5f (.text.Sciclient_rmIrqTranslateIrOutput)
                      81f60a9c    00000004     --HOLE-- [fill = 00000000]
                      81f60aa0    0000000c                     : sciclient_rm.oer5f (.text.Sciclient_rmIrqTranslateIrqInput)
                      81f60aac    00000004     --HOLE-- [fill = 00000000]
                      81f60ab0    0000000c                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmParamIsValid)
                      81f60abc    00000004     --HOLE-- [fill = 00000000]
                      81f60ac0    0000000c     ti.osal.aer5f : TaskP_freertos.oer5f (.text.TaskP_sleep)
                      81f60acc    00000004     --HOLE-- [fill = 00000000]
                      81f60ad0    0000000c                   : TimerP_default.oer5f (.text.TimerP_getDefaultFreqLo)
                      81f60adc    00000004     --HOLE-- [fill = 00000000]
                      81f60ae0    0000000c     ti.csl.aer5f : uart.oer5f (.text.UARTDivideRoundCloset)
                      81f60aec    00000004     --HOLE-- [fill = 00000000]
                      81f60af0    0000000c                  : uart.oer5f (.text.UARTFIFOCharPut)
                      81f60afc    00000004     --HOLE-- [fill = 00000000]
                      81f60b00    0000000c     ti.drv.uart.aer5f : UART_stdio.oer5f (.text.UART_getc)
                      81f60b0c    00000004     --HOLE-- [fill = 00000000]
                      81f60b10    0000000c                       : UART_stdio.oer5f (.text.UART_putc)
                      81f60b1c    00000004     --HOLE-- [fill = 00000000]
                      81f60b20    0000000c     udma.aer5f : udma_osal.oer5f (.text.Udma_osalMutexDelete)
                      81f60b2c    00000004     --HOLE-- [fill = 00000000]
                      81f60b30    0000000c                : udma_osal.oer5f (.text.Udma_osalMutexUnlock)
                      81f60b3c    00000004     --HOLE-- [fill = 00000000]
                      81f60b40    0000000c     enetphy.aer5f : vsc8514.oer5f (.text.Vsc8514_isResetComplete)
                      81f60b4c    00000004     --HOLE-- [fill = 00000000]
                      81f60b50    0000000c                   : vsc8514.oer5f (.text.Vsc8514_reset)
                      81f60b5c    00000004     --HOLE-- [fill = 00000000]
                      81f60b60    0000000c     ti.kernel.freertos.aer5f : port.oer5f (.text.uiPortGetRunTimeCounterValue)
                      81f60b6c    00000004     --HOLE-- [fill = 00000000]
                      81f60b70    0000000c                              : list.oer5f (.text.vListInitialiseItem)
                      81f60b7c    00000004     --HOLE-- [fill = 00000000]
                      81f60b80    00000008     ti.board.aer5f : am65xx_idk_clock.oer5f (.text.Board_getNumClkConfigs)
                      81f60b88    00000008     --HOLE-- [fill = 00000000]
                      81f60b90    00000008     ti.csl.aer5f : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_extractVid_4G)
                      81f60b98    00000008     --HOLE-- [fill = 00000000]
                      81f60ba0    00000008                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_extractVid_9G)
                      81f60ba8    00000008     --HOLE-- [fill = 00000000]
                      81f60bb0    00000008                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleControlReg)
                      81f60bb8    00000008     --HOLE-- [fill = 00000000]
                      81f60bc0    00000008                  : csl_cpsw.oer5f (.text.CSL_CPSW_getAleIPv6LowEntryIndex)
                      81f60bc8    00000008     --HOLE-- [fill = 00000000]
                      81f60bd0    00000008                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getEthertypeMax_4G)
                      81f60bd8    00000008     --HOLE-- [fill = 00000000]
                      81f60be0    00000008                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getEthertypeMax_9G)
                      81f60be8    00000008     --HOLE-- [fill = 00000000]
                      81f60bf0    00000008                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getIpv4IgnBitsMax_4G)
                      81f60bf8    00000008     --HOLE-- [fill = 00000000]
                      81f60c00    00000008                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getIpv4IgnBitsMax_9G)
                      81f60c08    00000008     --HOLE-- [fill = 00000000]
                      81f60c10    00000008                  : csl_cpsw_ale_4g_tblcfg.oer5f (.text.CSL_CPSW_getIpv6IgnBitsMax_4G)
                      81f60c18    00000008     --HOLE-- [fill = 00000000]
                      81f60c20    00000008                  : csl_cpsw_ale_9g_tblcfg.oer5f (.text.CSL_CPSW_getIpv6IgnBitsMax_9G)
                      81f60c28    00000008     --HOLE-- [fill = 00000000]
                      81f60c30    00000008                  : csl_cpsw.oer5f (.text.CSL_CPSW_setAleControlReg)
                      81f60c38    00000008     --HOLE-- [fill = 00000000]
                      81f60c40    00000008                  : csl_mdio.oer5f (.text.CSL_MDIO_getClause45EnableMask)
                      81f60c48    00000008     --HOLE-- [fill = 00000000]
                      81f60c50    00000008                  : csl_mdio.oer5f (.text.CSL_MDIO_getPollEnableMask)
                      81f60c58    00000008     --HOLE-- [fill = 00000000]
                      81f60c60    00000008                  : csl_mdio.oer5f (.text.CSL_MDIO_setClause45EnableMask)
                      81f60c68    00000008     --HOLE-- [fill = 00000000]
                      81f60c70    00000008     enet.aer5f : icssg_utils.oer5f (.text.CSL_REG16_RD_RAW)
                      81f60c78    00000008     --HOLE-- [fill = 00000000]
                      81f60c80    00000008     enetphy.aer5f : vsc8514.oer5f (.text.CSL_REG16_RD_RAW)
                      81f60c88    00000008     --HOLE-- [fill = 00000000]
                      81f60c90    00000008     enet.aer5f : icssg_utils.oer5f (.text.CSL_REG16_WR_RAW)
                      81f60c98    00000008     --HOLE-- [fill = 00000000]
                      81f60ca0    00000008     enetphy.aer5f : vsc8514.oer5f (.text.CSL_REG16_WR_RAW)
                      81f60ca8    00000008     --HOLE-- [fill = 00000000]
                      81f60cb0    00000008     enet.aer5f : icssg.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60cb8    00000008     --HOLE-- [fill = 00000000]
                      81f60cc0    00000008                : icssg_stats.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60cc8    00000008     --HOLE-- [fill = 00000000]
                      81f60cd0    00000008                : icssg_utils.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60cd8    00000008     --HOLE-- [fill = 00000000]
                      81f60ce0    00000008     enet_example_utils_full_freertos.aer5f : enet_apputils_k3.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60ce8    00000008     --HOLE-- [fill = 00000000]
                      81f60cf0    00000008     enetsoc.aer5f : enet_soc.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60cf8    00000008     --HOLE-- [fill = 00000000]
                      81f60d00    00000008     sciclient.aer5f : sciclient.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60d08    00000008     --HOLE-- [fill = 00000000]
                      81f60d10    00000008                     : sciclient_rm_irq.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60d18    00000008     --HOLE-- [fill = 00000000]
                      81f60d20    00000008     ti.csl.aer5f : csl_cpts.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60d28    00000008     --HOLE-- [fill = 00000000]
                      81f60d30    00000008                  : csl_dru.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60d38    00000008     --HOLE-- [fill = 00000000]
                      81f60d40    00000008                  : csl_proxy.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60d48    00000008     --HOLE-- [fill = 00000000]
                      81f60d50    00000008                  : csl_ringacc.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60d58    00000008     --HOLE-- [fill = 00000000]
                      81f60d60    00000008                  : csl_udmap.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60d68    00000008     --HOLE-- [fill = 00000000]
                      81f60d70    00000008                  : csl_vim.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60d78    00000008     --HOLE-- [fill = 00000000]
                      81f60d80    00000008     ti.drv.pruss.aer5f : pruicss_drv.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60d88    00000008     --HOLE-- [fill = 00000000]
                      81f60d90    00000008     udma.aer5f : udma_ch.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60d98    00000008     --HOLE-- [fill = 00000000]
                      81f60da0    00000008                : udma_ring_common.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60da8    00000008     --HOLE-- [fill = 00000000]
                      81f60db0    00000008                : udma_ring_normal.oer5f (.text.CSL_REG32_RD_RAW)
                      81f60db8    00000008     --HOLE-- [fill = 00000000]
                      81f60dc0    00000008     enet.aer5f : enet_udma_priv.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60dc8    00000008     --HOLE-- [fill = 00000000]
                      81f60dd0    00000008                : icssg.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60dd8    00000008     --HOLE-- [fill = 00000000]
                      81f60de0    00000008                : icssg_stats.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60de8    00000008     --HOLE-- [fill = 00000000]
                      81f60df0    00000008                : icssg_utils.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60df8    00000008     --HOLE-- [fill = 00000000]
                      81f60e00    00000008     enet_example_utils_full_freertos.aer5f : enet_apputils_k3.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60e08    00000008     --HOLE-- [fill = 00000000]
                      81f60e10    00000008     sciclient.aer5f : sciclient_secureproxy.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60e18    00000008     --HOLE-- [fill = 00000000]
                      81f60e20    00000008     ti.board.aer5f : board_ethernet_config.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60e28    00000008     --HOLE-- [fill = 00000000]
                      81f60e30    00000008     ti.csl.aer5f : csl_cpts.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60e38    00000008     --HOLE-- [fill = 00000000]
                      81f60e40    00000008                  : csl_dru.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60e48    00000008     --HOLE-- [fill = 00000000]
                      81f60e50    00000008                  : csl_proxy.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60e58    00000008     --HOLE-- [fill = 00000000]
                      81f60e60    00000008                  : csl_ringacc.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60e68    00000008     --HOLE-- [fill = 00000000]
                      81f60e70    00000008                  : csl_udmap.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60e78    00000008     --HOLE-- [fill = 00000000]
                      81f60e80    00000008                  : csl_vim.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60e88    00000008     --HOLE-- [fill = 00000000]
                      81f60e90    00000008     ti.csl.init.aer5f : startup.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60e98    00000008     --HOLE-- [fill = 00000000]
                      81f60ea0    00000008     ti.drv.pruss.aer5f : pruicss_drv.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60ea8    00000008     --HOLE-- [fill = 00000000]
                      81f60eb0    00000008     udma.aer5f : udma_ch.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60eb8    00000008     --HOLE-- [fill = 00000000]
                      81f60ec0    00000008                : udma_ring_common.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60ec8    00000008     --HOLE-- [fill = 00000000]
                      81f60ed0    00000008                : udma_ring_normal.oer5f (.text.CSL_REG32_WR_RAW)
                      81f60ed8    00000008     --HOLE-- [fill = 00000000]
                      81f60ee0    00000008     enet.aer5f : icssg_stats.oer5f (.text.CSL_REG64_RD_RAW)
                      81f60ee8    00000008     --HOLE-- [fill = 00000000]
                      81f60ef0    00000008     ti.csl.aer5f : csl_dru.oer5f (.text.CSL_REG64_RD_RAW)
                      81f60ef8    00000008     --HOLE-- [fill = 00000000]
                      81f60f00    00000008                  : csl_intaggr.oer5f (.text.CSL_REG64_RD_RAW)
                      81f60f08    00000008     --HOLE-- [fill = 00000000]
                      81f60f10    00000008                  : csl_ringacc.oer5f (.text.CSL_REG64_RD_RAW)
                      81f60f18    00000008     --HOLE-- [fill = 00000000]
                      81f60f20    00000008     enet.aer5f : icssg_utils.oer5f (.text.CSL_REG64_WR_RAW)
                      81f60f28    00000008     --HOLE-- [fill = 00000000]
                      81f60f30    00000008     ti.csl.aer5f : csl_dru.oer5f (.text.CSL_REG64_WR_RAW)
                      81f60f38    00000008     --HOLE-- [fill = 00000000]
                      81f60f40    00000008                  : csl_intaggr.oer5f (.text.CSL_REG64_WR_RAW)
                      81f60f48    00000008     --HOLE-- [fill = 00000000]
                      81f60f50    00000008                  : csl_ringacc.oer5f (.text.CSL_REG64_WR_RAW)
                      81f60f58    00000008     --HOLE-- [fill = 00000000]
                      81f60f60    00000008     enet.aer5f : icssg_utils.oer5f (.text.CSL_REG8_RD_RAW)
                      81f60f68    00000008     --HOLE-- [fill = 00000000]
                      81f60f70    00000008                : icssg_utils.oer5f (.text.CSL_REG8_WR_RAW)
                      81f60f78    00000008     --HOLE-- [fill = 00000000]
                      81f60f80    00000008     ti.csl.aer5f : csl_ringacc.oer5f (.text.CSL_archMemoryFence)
                      81f60f88    00000008     --HOLE-- [fill = 00000000]
                      81f60f90    00000008     enet.aer5f : enet_udma_priv.oer5f (.text.CSL_udmapCppi5GetBufferAddr)
                      81f60f98    00000008     --HOLE-- [fill = 00000000]
                      81f60fa0    00000008                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5GetSrcTag)
                      81f60fa8    00000008     --HOLE-- [fill = 00000000]
                      81f60fb0    00000008                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5SetDstTag)
                      81f60fb8    00000008     --HOLE-- [fill = 00000000]
                      81f60fc0    00000008                : enet_udma_priv.oer5f (.text.CSL_udmapCppi5SetOrgBufferLen)
                      81f60fc8    00000008     --HOLE-- [fill = 00000000]
                      81f60fd0    00000008                : cpsw_ale.oer5f (.text.CpswAle_mapPolicer2CslMask)
                      81f60fd8    00000008     --HOLE-- [fill = 00000000]
                      81f60fe0    00000008                : cpsw_ale.oer5f (.text.CpswAle_rejoin)
                      81f60fe8    00000008     --HOLE-- [fill = 00000000]
                      81f60ff0    00000008                : cpsw_cpts.oer5f (.text.CpswCpts_rejoin)
                      81f60ff8    00000008     --HOLE-- [fill = 00000000]
                      81f61000    00000008                : enet_osal_dflt.oer5f (.text.EnetOsalDflt_isCacheCoherent)
                      81f61008    00000008     --HOLE-- [fill = 00000000]
                      81f61010    00000008                : enet_osal_dflt.oer5f (.text.EnetOsalDflt_timerRead)
                      81f61018    00000008     --HOLE-- [fill = 00000000]
                      81f61020    00000008                : enet_rm.oer5f (.text.EnetRm_rejoin)
                      81f61028    00000008     --HOLE-- [fill = 00000000]
                      81f61030    00000008     enetsoc.aer5f : enet_soc.oer5f (.text.EnetSoc_getCoreId)
                      81f61038    00000008     --HOLE-- [fill = 00000000]
                      81f61040    00000008                   : enet_soc.oer5f (.text.EnetSoc_getEnetNum)
                      81f61048    00000008     --HOLE-- [fill = 00000000]
                      81f61050    00000008                   : enet_soc.oer5f (.text.EnetSoc_getIntrTriggerType)
                      81f61058    00000008     --HOLE-- [fill = 00000000]
                      81f61060    00000008                   : enet_soc.oer5f (.text.EnetSoc_mapPort2QsgmiiId)
                      81f61068    00000008     --HOLE-- [fill = 00000000]
                      81f61070    00000008                   : enet_soc.oer5f (.text.EnetSoc_validateQsgmiiCfg)
                      81f61078    00000008     --HOLE-- [fill = 00000000]
                      81f61080    00000008     enet.aer5f : enet_udma_priv.oer5f (.text.EnetUdma_dmaDescQCount)
                      81f61088    00000008     --HOLE-- [fill = 00000000]
                      81f61090    00000008                : enet_utils_dflt.oer5f (.text.EnetUtilsDflt_virtToPhysDflt)
                      81f61098    00000008     --HOLE-- [fill = 00000000]
                      81f610a0    00000008                : enet_utils.oer5f (.text.EnetUtils_virtToPhysDflt)
                      81f610a8    00000008     --HOLE-- [fill = 00000000]
                      81f610b0    00000008                : enet.oer5f (.text.Enet_getPerHandle)
                      81f610b8    00000008     --HOLE-- [fill = 00000000]
                      81f610c0    00000008     enetphy.aer5f : generic_phy.oer5f (.text.GenericPhy_isMacModeSupported)
                      81f610c8    00000008     --HOLE-- [fill = 00000000]
                      81f610d0    00000008                   : generic_phy.oer5f (.text.GenericPhy_isPhyDevSupported)
                      81f610d8    00000008     --HOLE-- [fill = 00000000]
                      81f610e0    00000008     enet.aer5f : icssg_stats.oer5f (.text.IcssgStats_rejoin)
                      81f610e8    00000008     --HOLE-- [fill = 00000000]
                      81f610f0    00000008                : icssg_tas.oer5f (.text.IcssgTas_rejoin)
                      81f610f8    00000008     --HOLE-- [fill = 00000000]
                      81f61100    00000008                : icssg_timesync.oer5f (.text.IcssgTimeSync_rejoin)
                      81f61108    00000008     --HOLE-- [fill = 00000000]
                      81f61110    00000008                : mdio.oer5f (.text.Mdio_rejoin)
                      81f61118    00000008     --HOLE-- [fill = 00000000]
                      81f61120    00000008     ti.osal.aer5f : TimerP_default.oer5f (.text.TimerP_getDefaultFreqHi)
                      81f61128    00000008     --HOLE-- [fill = 00000000]
                      81f61130    00000008     ti.drv.uart.aer5f : UART_v1.oer5f (.text.UART_control_v1)
                      81f61138    00000008     --HOLE-- [fill = 00000000]
                      81f61140    00000008     udma.aer5f : udma.oer5f (.text.Udma_defaultVirtToPhyFxn)
                      81f61148    00000008     --HOLE-- [fill = 00000000]
                      81f61150    00000008                : udma_utils.oer5f (.text.Udma_defaultVirtToPhyFxn)
                      81f61158    00000008     --HOLE-- [fill = 00000000]
                      81f61160    00000008                : udma_soc.oer5f (.text.Udma_getCoreId)
                      81f61168    00000008     --HOLE-- [fill = 00000000]
                      81f61170    00000008                : udma_soc.oer5f (.text.Udma_getGlobalEventOffset)
                      81f61178    00000008     --HOLE-- [fill = 00000000]
                      81f61180    00000008                : udma_soc.oer5f (.text.Udma_isCacheCoherent)
                      81f61188    00000008     --HOLE-- [fill = 00000000]
                      81f61190    00000004     enet.aer5f : cpsw_stats.oer5f (.text.CpswStats_close)
                      81f61194    0000000c     --HOLE-- [fill = 00000000]
                      81f611a0    00000004                : cpsw_intervlan.oer5f (.text.Cpsw_normRouteId)
                      81f611a4    0000000c     --HOLE-- [fill = 00000000]
                      81f611b0    00000004     ti.osal.aer5f : DebugP_nonos.oer5f (.text.DebugP_log0)
                      81f611b4    0000000c     --HOLE-- [fill = 00000000]
                      81f611c0    00000004                   : DebugP_nonos.oer5f (.text.DebugP_log1)
                      81f611c4    0000000c     --HOLE-- [fill = 00000000]
                      81f611d0    00000004     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.text.EnetBoard_deinit)
                      81f611d4    0000000c     --HOLE-- [fill = 00000000]
                      81f611e0    00000004     enet.aer5f : enet_utils_dflt.oer5f (.text.EnetUtilsDflt_physToVirtDflt)
                      81f611e4    0000000c     --HOLE-- [fill = 00000000]
                      81f611f0    00000004                : enet_utils.oer5f (.text.EnetUtils_delay)
                      81f611f4    0000000c     --HOLE-- [fill = 00000000]
                      81f61200    00000004                : enet_utils.oer5f (.text.EnetUtils_physToVirtDflt)
                      81f61204    0000000c     --HOLE-- [fill = 00000000]
                      81f61210    00000004                : icssg_stats.oer5f (.text.IcssgStats_close)
                      81f61214    0000000c     --HOLE-- [fill = 00000000]
                      81f61220    00000004                : icssg_tas.oer5f (.text.IcssgTas_close)
                      81f61224    0000000c     --HOLE-- [fill = 00000000]
                      81f61230    00000004     ti.osal.aer5f : TimerP_default.oer5f (.text.TimerP_mapId)
                      81f61234    0000000c     --HOLE-- [fill = 00000000]
                      81f61240    00000004                   : TimerP_default.oer5f (.text.TimerP_updateDefaultInfoTbl)
                      81f61244    0000000c     --HOLE-- [fill = 00000000]
                      81f61250    00000004     ti.drv.uart.aer5f : UART_soc.oer5f (.text.UART_socInit)
                      81f61254    0000000c     --HOLE-- [fill = 00000000]
                      81f61260    00000004     udma.aer5f : udma.oer5f (.text.Udma_defaultPhyToVirtFxn)
                      81f61264    0000000c     --HOLE-- [fill = 00000000]
                      81f61270    00000004                : udma_utils.oer5f (.text.Udma_defaultPhyToVirtFxn)
                      81f61274    0000000c     --HOLE-- [fill = 00000000]
                      81f61280    00000004     libclang_rt.builtins.a : aeabi_div0.c.obj (.text.__aeabi_idiv0)
                      81f61284    0000000c     --HOLE-- [fill = 00000000]
                      81f61290    00000004                            : aeabi_div0.c.obj (.text.__aeabi_ldiv0)
                      81f61294    0000000c     --HOLE-- [fill = 00000000]
                      81f612a0    00000004     ti.kernel.freertos.aer5f : port.oer5f (.text.vPortConfigTimerForRunTimeStats)
                      81f612a4    0000000c     --HOLE-- [fill = 00000000]
                      81f612b0    00000004                              : port.oer5f (.text.vPortEndScheduler)
                      81f612b4    0000000c     --HOLE-- [fill = 00000000]
                      81f612c0    00000004                              : port.oer5f (.text.vPortValidateInterruptPriority)
                      81f612c4    0000000c     --HOLE-- [fill = 00000000]
    
    .rodata    0    7010b000    00021ec0     
                      7010b000    00002096     enet_example_utils_full_freertos.aer5f : enet_apputils.oer5f (.rodata.str1.1)
                      7010d096    00000002     --HOLE-- [fill = 00000000]
                      7010d098    00001724     enetsoc.aer5f : enet_soc.oer5f (.rodata.RX_PRU_SLICE1_b00_Swt)
                      7010e7bc    000016d4                   : enet_soc.oer5f (.rodata.RX_PRU_SLICE0_b00_Swt)
                      7010fe90    00001375     enet.aer5f : icssg.oer5f (.rodata.str1.1)
                      70111205    00001318                : cpsw.oer5f (.rodata.str1.1)
                      7011251d    00000003     --HOLE-- [fill = 00000000]
                      70112520    000012b0     enetsoc.aer5f : enet_soc.oer5f (.rodata.TX_PRU_SLICE0_b00_DMac)
                      701137d0    00001230                   : enet_soc.oer5f (.rodata.RX_PRU_SLICE1_b00_DMac)
                      70114a00    000011d0                   : enet_soc.oer5f (.rodata.RX_PRU_SLICE0_b00_DMac)
                      70115bd0    000011a8                   : enet_soc.oer5f (.rodata.TX_PRU_SLICE0_b00_Swt)
                      70116d78    00001070                   : enet_soc.oer5f (.rodata.TX_PRU_SLICE1_b00_DMac)
                      70117de8    00000fef     enet.aer5f : enet_udma.oer5f (.rodata.str1.1)
                      70118dd7    00000f87     enet_multiport.oer5f (.rodata.str1.1)
                      70119d5e    00000002     --HOLE-- [fill = 00000000]
                      70119d60    00000f74     enetsoc.aer5f : enet_soc.oer5f (.rodata.TX_PRU_SLICE1_b00_Swt)
                      7011acd4    00000f28     udma.aer5f : udma_ch.oer5f (.rodata.str1.1)
                      7011bbfc    00000f21     enet.aer5f : cpsw_ale.oer5f (.rodata.str1.1)
                      7011cb1d    00000003     --HOLE-- [fill = 00000000]
                      7011cb20    00000dc0     enetsoc.aer5f : enet_soc.oer5f (.rodata.RTU0_SLICE0_b00_Swt)
                      7011d8e0    00000cdf     enet.aer5f : cpsw_macport.oer5f (.rodata.str1.1)
                      7011e5bf    00000cd2     udma.aer5f : udma_rm.oer5f (.rodata.str1.1)
                      7011f291    00000003     --HOLE-- [fill = 00000000]
                      7011f294    00000cb4     enetsoc.aer5f : enet_soc.oer5f (.rodata.RTU0_SLICE1_b00_Swt)
                      7011ff48    00000c00                   : enet_soc.oer5f (.rodata.RTU0_SLICE0_b00_DMac)
                      70120b48    00000bfe     enetphy.aer5f : enetphy.oer5f (.rodata.str1.1)
                      70121746    00000bdf     enet.aer5f : enet_udma_priv.oer5f (.rodata.str1.1)
                      70122325    00000b0e     udma.aer5f : udma_event.oer5f (.rodata.str1.1)
                      70122e33    00000001     --HOLE-- [fill = 00000000]
                      70122e34    00000b00     enetsoc.aer5f : enet_soc.oer5f (.rodata.RTU0_SLICE1_b00_DMac)
                      70123934    000009ed     enet.aer5f : enet_rm.oer5f (.rodata.str1.1)
                      70124321    000008a9                : icssg_utils.oer5f (.rodata.str1.1)
                      70124bca    0000088a     enetphy.aer5f : dp83867.oer5f (.rodata.str1.1)
                      70125454    000007ba     enet.aer5f : cpsw_intervlan.oer5f (.rodata.str1.1)
                      70125c0e    0000079f     udma.aer5f : udma_ring_common.oer5f (.rodata.str1.1)
                      701263ad    000006b7     enet.aer5f : cpsw_cpts.oer5f (.rodata.str1.1)
                      70126a64    000006a0                : enet.oer5f (.rodata.str1.1)
                      70127104    000004df                : cpsw_hostport.oer5f (.rodata.str1.1)
                      701275e3    00000465                : mdio.oer5f (.rodata.str1.1)
                      70127a48    00000446                : cpsw_macport_intervlan.oer5f (.rodata.str1.1)
                      70127e8e    000003ad                : enet_osal.oer5f (.rodata.str1.1)
                      7012823b    00000382                : icssg_timesync.oer5f (.rodata.str1.1)
                      701285bd    00000349                : enet_phymdio_dflt.oer5f (.rodata.str1.1)
                      70128906    00000342                : cpsw_stats.oer5f (.rodata.str1.1)
                      70128c48    0000030b     enetsoc.aer5f : enet_soc.oer5f (.rodata.str1.1)
                      70128f53    00000001     --HOLE-- [fill = 00000000]
                      70128f54    000002c0     r5_mpu_default.oer5f (.rodata.gCslR5MpuCfg)
                      70129214    00000294     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.rodata.str1.1)
                      701294a8    00000250                                            : enet_udmautils.oer5f (.rodata.str1.1)
                      701296f8    00000220     sciclient.aer5f : sciclient_fmwSecureProxyMap.oer5f (.rodata.gSciclientMap)
                      70129918    00000211     enetphy.aer5f : dp83822.oer5f (.rodata.str1.1)
                      70129b29    000001f2                   : vsc8514.oer5f (.rodata.str1.1)
                      70129d1b    000001e0     udma.aer5f : udma_flow.oer5f (.rodata.str1.1)
                      70129efb    000001c1     enet.aer5f : enet_queue.oer5f (.rodata.str1.1)
                      7012a0bc    000001a0     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.rodata.gEnetCpbBoard_am65xxEthPort)
                      7012a25c    00000191     udma.aer5f : udma.oer5f (.rodata.str1.1)
                      7012a3ed    00000003     --HOLE-- [fill = 00000000]
                      7012a3f0    00000190     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.gRmIrqTree)
                      7012a580    00000168     enet_example_utils_full_freertos.aer5f : enet_ioctlutils.oer5f (.rodata.str1.1)
                      7012a6e8    0000015a     enet.aer5f : icssg_tas.oer5f (.rodata.str1.1)
                      7012a842    0000011d     enet_example_utils_full_freertos.aer5f : enet_apputils_k3.oer5f (.rodata.str1.1)
                      7012a95f    00000001     --HOLE-- [fill = 00000000]
                      7012a960    00000110     enet.aer5f : icssg_stats.oer5f (.rodata.IcssgStats_paStatsOffset)
                      7012aa70    0000010a     enetphy.aer5f : generic_phy.oer5f (.rodata.str1.1)
                      7012ab7a    00000002     --HOLE-- [fill = 00000000]
                      7012ab7c    00000004     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.gRmIrqTreeCount)
                      7012ab80    00000101     libc.a : aeabi_ctype.S.obj (.rodata)
                      7012ac81    000000e8     ti.osal.aer5f : TaskP_freertos.oer5f (.rodata.str1.1)
                      7012ad69    000000dd     udma.aer5f : udma_proxy.oer5f (.rodata.str1.1)
                      7012ae46    000000c9     enet.aer5f : enet_hostport_udma.oer5f (.rodata.str1.1)
                      7012af0f    000000b2     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.rodata.str1.1)
                      7012afc1    000000ad     udma.aer5f : udma_ring_normal.oer5f (.rodata.str1.1)
                      7012b06e    00000002     --HOLE-- [fill = 00000000]
                      7012b070    000000a8                : udma_rmcfg.oer5f (.rodata.gUdmaRmDefBoardCfg_MainNavss)
                      7012b118    000000a8                : udma_rmcfg.oer5f (.rodata.gUdmaRmDefBoardCfg_McuNavss)
                      7012b1c0    00000092     enet.aer5f : enet_utils.oer5f (.rodata.str1.1)
                      7012b252    00000002     --HOLE-- [fill = 00000000]
                      7012b254    00000088     enet_example_utils_full_freertos.aer5f : enet_apprmcfg.oer5f (.rodata.gEnetAppIoctlPermission_2G)
                      7012b2dc    00000088                                            : enet_apprmcfg.oer5f (.rodata.gEnetAppIoctlPermission_iccsg)
                      7012b364    00000080                                            : enet_board_am65xevm.oer5f (.rodata.gEnetMiiBoard_am65xxEthPort)
                      7012b3e4    00000078     enet_multiport.oer5f (.rodata.testParams)
                      7012b45c    00000070     enet.aer5f : cpsw_hostport.oer5f (.rodata.CpswHostPort_gSupportedVer)
                      7012b4cc    00000070                : cpsw_macport.oer5f (.rodata.CpswMacPort_gSupportedVer)
                      7012b53c    00000070                : cpsw_stats.oer5f (.rodata.CpswStats_gSupportedVer)
                      7012b5ac    00000070     ti.kernel.freertos.aer5f : heap_4.oer5f (.rodata.str1.1)
                      7012b61c    0000006c                              : timers.oer5f (.rodata.str1.1)
                      7012b688    00000064     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMESYNC_INTRTR0)
                      7012b6ec    00000063     ti.kernel.freertos.aer5f : tasks.oer5f (.rodata.str1.1)
                      7012b74f    00000001     --HOLE-- [fill = 00000000]
                      7012b750    00000060     enet.aer5f : cpsw_cpts.oer5f (.rodata.CpswCpts_gSupportedVer)
                      7012b7b0    0000005e     ti.kernel.freertos.aer5f : queue.oer5f (.rodata.str1.1)
                      7012b80e    00000057     enet_example_utils_full_freertos.aer5f : enet_appsoc.oer5f (.rodata.str1.1)
                      7012b865    00000055     ti.kernel.freertos.aer5f : port.oer5f (.rodata.str1.1)
                      7012b8ba    00000002     --HOLE-- [fill = 00000000]
                      7012b8bc    00000050     enet.aer5f : cpsw_ale.oer5f (.rodata.CpswAle_gSupportedVer)
                      7012b90c    00000050     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_PCIE0)
                      7012b95c    00000050                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_PCIE1)
                      7012b9ac    00000050                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_USB3SS0)
                      7012b9fc    00000050                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_USB3SS1)
                      7012ba4c    0000004c     enet.aer5f : icssg_utils.oer5f (.rodata.gIcssg_r30CmdNames)
                      7012ba98    00000049     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.rodata.str1.1)
                      7012bae1    00000045     libc.a : aeabi_portable.c.obj (.rodata.str1.1)
                      7012bb26    00000002     --HOLE-- [fill = 00000000]
                      7012bb28    00000040     ti.csl.aer5f : csl_cpsw.oer5f (.rodata.cst32)
                      7012bb68    00000040     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.rodata.gEnetVirtBoard_am65xxEthPort)
                      7012bba8    00000039     enet.aer5f : icssg_stats.oer5f (.rodata.str1.1)
                      7012bbe1    00000003     --HOLE-- [fill = 00000000]
                      7012bbe4    00000034     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_GPIOMUX_INTRTR0)
                      7012bc18    00000030     ti.drv.uart.aer5f : UART_v1.oer5f (.rodata.UART_FxnTable_v1)
                      7012bc48    00000030     ti.osal.aer5f : Arch_util.oer5f (.rodata.cst16)
                      7012bc78    00000030     enet.aer5f : mdio.oer5f (.rodata.gMdio_supportedVer)
                      7012bca8    0000002c     ti.drv.uart.aer5f : UART_drv.oer5f (.rodata.UART_defaultParams)
                      7012bcd4    0000002c     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_PRU_ICSSG0)
                      7012bd00    0000002c                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_PRU_ICSSG1)
                      7012bd2c    0000002c                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_PRU_ICSSG2)
                      7012bd58    00000028     ti.board.aer5f : board_pll.oer5f (.rodata..L__const.Board_PLLInitAll.dev_id)
                      7012bd80    00000028                    : board_pll.oer5f (.rodata..L__const.Board_PLLInitAll.pll_freq_hz)
                      7012bda8    00000028     enetphy.aer5f : enetphy.oer5f (.rodata.gEnetPhyStateNames)
                      7012bdd0    00000024     ti.osal.aer5f : TimerP_default.oer5f (.rodata.str1.1)
                      7012bdf4    00000022     libc.a : _printfi.c.obj (.rodata.str1.1)
                      7012be16    00000022     ti.osal.aer5f : TimerP_nonos.oer5f (.rodata.str1.1)
                      7012be38    00000020     enet.aer5f : cpsw.oer5f (.rodata.cst32)
                      7012be58    00000020                : icssg.oer5f (.rodata.cst32)
                      7012be78    00000020     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.rodata.gEnetCpbBoard_dp83867PhyCfg)
                      7012be98    00000020                                            : enet_board_am65xevm.oer5f (.rodata.gEnetIdkBoard_dp83867PhyCfg)
                      7012beb8    00000020     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0)
                      7012bed8    0000001f     ti.osal.aer5f : MutexP_freertos.oer5f (.rodata.str1.1)
                      7012bef7    0000001d                   : HwiP_freertos.oer5f (.rodata.str1.1)
                      7012bf14    0000001c     enet.aer5f : enet_osal_dflt.oer5f (.rodata.str1.1)
                      7012bf30    0000001c     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_WKUP_GPIOMUX_INTRTR0)
                      7012bf4c    00000019     ti.drv.uart.aer5f : UART_stdio.oer5f (.rodata.str1.1)
                      7012bf65    00000003     --HOLE-- [fill = 00000000]
                      7012bf68    00000018     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm.oer5f (.rodata..L__const.EnetBoard_getMacAddrList.macAddrBuf)
                      7012bf80    00000018     enetsoc.aer5f : enet_soc.oer5f (.rodata..Lswitch.table.EnetSoc_getDmaHandle)
                      7012bf98    00000018                   : enet_soc.oer5f (.rodata..Lswitch.table.EnetSoc_getEnetHandle)
                      7012bfb0    00000018     enet.aer5f : icssg_utils.oer5f (.rodata..Lswitch.table.IcssgUtils_getSliceNum)
                      7012bfc8    00000018     ti.drv.uart.aer5f : UART_v1.oer5f (.rodata..Lswitch.table.UART_getTxTrigLvl)
                      7012bfe0    00000018     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_intr_router_0)
                      7012bff8    00000010     enet_example_utils_full_freertos.aer5f : enet_apprmcfg.oer5f (.rodata..Lswitch.table.EnetAppRm_getIoctlPermissionInfo)
                      7012c008    00000010     enet.aer5f : cpsw.oer5f (.rodata.Cpsw_gSpeedNames)
                      7012c018    00000010                : icssg.oer5f (.rodata.Icssg_gSpeedNames)
                      7012c028    00000010     ti.drv.uart.aer5f : UART_v1.oer5f (.rodata.cst16)
                      7012c038    00000010     enetphy.aer5f : enetphy.oer5f (.rodata.gEnetPhyDrvs)
                      7012c048    00000010     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_GPU0)
                      7012c058    00000010                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCU_CPSW0)
                      7012c068    0000000e     enetsoc.aer5f : j7x_soc.oer5f (.rodata.str1.1)
                      7012c076    00000002     --HOLE-- [fill = 00000000]
                      7012c078    0000000c     sciclient.aer5f : sciclient.oer5f (.rodata..L__const.Sciclient_init.semParams)
                      7012c084    0000000c     ti.csl.aer5f : csl_cpsw.oer5f (.rodata..Lswitch.table.CSL_CPSW_getAleIPv6HighEntryOffset)
                      7012c090    0000000c     enetsoc.aer5f : enet_soc.oer5f (.rodata..Lswitch.table.EnetSoc_getDmaHandle.60)
                      7012c09c    0000000c                   : enet_soc.oer5f (.rodata..Lswitch.table.EnetSoc_getEnetHandle.61)
                      7012c0a8    0000000c     enet.aer5f : cpsw_macport.oer5f (.rodata.CpswMacPort_gSgmiiSpeedNames)
                      7012c0b4    0000000c                : cpsw.oer5f (.rodata.Cpsw_gDuplexNames)
                      7012c0c0    0000000c                : icssg_utils.oer5f (.rodata.IcssgUtils_hwq_a)
                      7012c0cc    0000000c                : icssg_utils.oer5f (.rodata.IcssgUtils_hwq_smem_start)
                      7012c0d8    0000000c                : icssg.oer5f (.rodata.Icssg_gDuplexNames)
                      7012c0e4    0000000c     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_mcrc0)
                      7012c0f0    00000008     enet.aer5f : cpsw_macport.oer5f (.rodata.CpswMacPort_gSgmiiDuplexNames)
                      7012c0f8    00000008     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.cal_main_0_bus_int_cal_l_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_11_11)
                      7012c100    00000008                     : sciclient_irq_rm.oer5f (.rodata.cmp_event_introuter_main_0_bus_outp_0_15_to_gic500ss_main_0_bus_spi_544_559)
                      7012c108    00000008                     : sciclient_irq_rm.oer5f (.rodata.cmp_event_introuter_main_0_bus_outp_24_31_to_pdma_main1_main_0_bus_levent_in_8_15)
                      7012c110    00000008                     : sciclient_irq_rm.oer5f (.rodata.cpsw_2guss_mcu_0_bus_cpts_comp_6_6_to_cmp_event_introuter_main_0_bus_in_7_7)
                      7012c118    00000008                     : sciclient_irq_rm.oer5f (.rodata.cpsw_2guss_mcu_0_bus_cpts_genf0_3_3_to_timesync_event_introuter_main_0_bus_in_12_12)
                      7012c120    00000008                     : sciclient_irq_rm.oer5f (.rodata.cpsw_2guss_mcu_0_bus_cpts_genf1_4_4_to_timesync_event_introuter_main_0_bus_in_13_13)
                      7012c128    00000008                     : sciclient_irq_rm.oer5f (.rodata.cpsw_2guss_mcu_0_bus_cpts_sync_5_5_to_timesync_event_introuter_main_0_bus_in_31_31)
                      7012c130    00000008                     : sciclient_irq_rm.oer5f (.rodata.dcc_main_0_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_120_120)
                      7012c138    00000008                     : sciclient_irq_rm.oer5f (.rodata.dcc_main_1_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_121_121)
                      7012c140    00000008                     : sciclient_irq_rm.oer5f (.rodata.dcc_main_2_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_122_122)
                      7012c148    00000008                     : sciclient_irq_rm.oer5f (.rodata.dcc_main_3_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_123_123)
                      7012c150    00000008                     : sciclient_irq_rm.oer5f (.rodata.dcc_main_4_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_124_124)
                      7012c158    00000008                     : sciclient_irq_rm.oer5f (.rodata.dcc_main_5_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_125_125)
                      7012c160    00000008                     : sciclient_irq_rm.oer5f (.rodata.dcc_main_6_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_126_126)
                      7012c168    00000008                     : sciclient_irq_rm.oer5f (.rodata.dcc_main_7_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_127_127)
                      7012c170    00000008                     : sciclient_irq_rm.oer5f (.rodata.ddr39ss_gs80_main_0_bus_ddrss_v2h_other_err_lvl_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_10_10)
                      7012c178    00000008                     : sciclient_irq_rm.oer5f (.rodata.dmtimer_dmc1ms_main_0_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_108_108)
                      7012c180    00000008                     : sciclient_irq_rm.oer5f (.rodata.dmtimer_dmc1ms_main_10_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_118_118)
                      7012c188    00000008                     : sciclient_irq_rm.oer5f (.rodata.dmtimer_dmc1ms_main_11_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_119_119)
                      7012c190    00000008                     : sciclient_irq_rm.oer5f (.rodata.dmtimer_dmc1ms_main_1_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_109_109)
                      7012c198    00000008                     : sciclient_irq_rm.oer5f (.rodata.dmtimer_dmc1ms_main_2_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_110_110)
                      7012c1a0    00000008                     : sciclient_irq_rm.oer5f (.rodata.dmtimer_dmc1ms_main_3_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_111_111)
                      7012c1a8    00000008                     : sciclient_irq_rm.oer5f (.rodata.dmtimer_dmc1ms_main_4_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_112_112)
                      7012c1b0    00000008                     : sciclient_irq_rm.oer5f (.rodata.dmtimer_dmc1ms_main_5_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_113_113)
                      7012c1b8    00000008                     : sciclient_irq_rm.oer5f (.rodata.dmtimer_dmc1ms_main_6_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_114_114)
                      7012c1c0    00000008                     : sciclient_irq_rm.oer5f (.rodata.dmtimer_dmc1ms_main_7_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_115_115)
                      7012c1c8    00000008                     : sciclient_irq_rm.oer5f (.rodata.dmtimer_dmc1ms_main_8_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_116_116)
                      7012c1d0    00000008                     : sciclient_irq_rm.oer5f (.rodata.dmtimer_dmc1ms_main_9_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_117_117)
                      7012c1d8    00000008                     : sciclient_irq_rm.oer5f (.rodata.ecap_main_0_bus_ecap_int_0_0_to_main2mcu_pls_introuter_main_0_bus_in_17_17)
                      7012c1e0    00000008                     : sciclient_irq_rm.oer5f (.rodata.ehrpwm_main_0_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_2_2)
                      7012c1e8    00000008                     : sciclient_irq_rm.oer5f (.rodata.ehrpwm_main_0_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_8_8)
                      7012c1f0    00000008                     : sciclient_irq_rm.oer5f (.rodata.ehrpwm_main_1_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_3_3)
                      7012c1f8    00000008                     : sciclient_irq_rm.oer5f (.rodata.ehrpwm_main_1_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_9_9)
                      7012c200    00000008                     : sciclient_irq_rm.oer5f (.rodata.ehrpwm_main_2_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_4_4)
                      7012c208    00000008                     : sciclient_irq_rm.oer5f (.rodata.ehrpwm_main_2_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_10_10)
                      7012c210    00000008                     : sciclient_irq_rm.oer5f (.rodata.ehrpwm_main_3_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_5_5)
                      7012c218    00000008                     : sciclient_irq_rm.oer5f (.rodata.ehrpwm_main_3_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_11_11)
                      7012c220    00000008                     : sciclient_irq_rm.oer5f (.rodata.ehrpwm_main_4_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_6_6)
                      7012c228    00000008                     : sciclient_irq_rm.oer5f (.rodata.ehrpwm_main_4_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_12_12)
                      7012c230    00000008                     : sciclient_irq_rm.oer5f (.rodata.ehrpwm_main_5_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_7_7)
                      7012c238    00000008                     : sciclient_irq_rm.oer5f (.rodata.ehrpwm_main_5_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_13_13)
                      7012c240    00000008                     : sciclient_irq_rm.oer5f (.rodata.elm_main_0_bus_elm_porocpsinterrupt_lvl_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_7_7)
                      7012c248    00000008                     : sciclient_irq_rm.oer5f (.rodata.emmc2sd3ss_gs80_main_0_bus_emmcsdss_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_29_29)
                      7012c250    00000008                     : sciclient_irq_rm.oer5f (.rodata.emmc4sd3ss_gs80_main_0_bus_emmcsdss_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_28_28)
                      7012c258    00000008                     : sciclient_irq_rm.oer5f (.rodata.eqep_main_0_bus_eqep_int_0_0_to_main2mcu_pls_introuter_main_0_bus_in_14_14)
                      7012c260    00000008                     : sciclient_irq_rm.oer5f (.rodata.eqep_main_1_bus_eqep_int_0_0_to_main2mcu_pls_introuter_main_0_bus_in_15_15)
                      7012c268    00000008                     : sciclient_irq_rm.oer5f (.rodata.eqep_main_2_bus_eqep_int_0_0_to_main2mcu_pls_introuter_main_0_bus_in_16_16)
                      7012c270    00000008                     : sciclient_irq_rm.oer5f (.rodata.gpio_144_main_0_bus_gpio_0_95_to_main_gpiomux_introuter_main_0_bus_in_0_95)
                      7012c278    00000008                     : sciclient_irq_rm.oer5f (.rodata.gpio_144_main_0_bus_gpio_bank_256_261_to_main_gpiomux_introuter_main_0_bus_in_192_197)
                      7012c280    00000008                     : sciclient_irq_rm.oer5f (.rodata.gpio_144_main_1_bus_gpio_0_89_to_main_gpiomux_introuter_main_0_bus_in_96_185)
                      7012c288    00000008                     : sciclient_irq_rm.oer5f (.rodata.gpio_144_main_1_bus_gpio_bank_256_261_to_main_gpiomux_introuter_main_0_bus_in_200_205)
                      7012c290    00000008                     : sciclient_irq_rm.oer5f (.rodata.gpio_144_wkup_0_bus_gpio_0_55_to_wkup_gpiomux_introuter_wkup_0_bus_in_0_55)
                      7012c298    00000008                     : sciclient_irq_rm.oer5f (.rodata.gpio_144_wkup_0_bus_gpio_bank_128_131_to_wkup_gpiomux_introuter_wkup_0_bus_in_60_63)
                      7012c2a0    00000008                     : sciclient_irq_rm.oer5f (.rodata.gpmc_main_0_bus_gpmc_sinterrupt_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_8_8)
                      7012c2a8    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_0_bus_pr1_edc0_sync0_out_304_304_to_timesync_event_introuter_main_0_bus_in_16_16)
                      7012c2b0    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_0_bus_pr1_edc0_sync1_out_305_305_to_timesync_event_introuter_main_0_bus_in_17_17)
                      7012c2b8    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_0_bus_pr1_edc1_sync0_out_306_306_to_timesync_event_introuter_main_0_bus_in_18_18)
                      7012c2c0    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_0_bus_pr1_edc1_sync1_out_307_307_to_timesync_event_introuter_main_0_bus_in_19_19)
                      7012c2c8    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_0_bus_pr1_host_intr_pend_294_301_to_main2mcu_lvl_introuter_main_0_bus_in_32_39)
                      7012c2d0    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_0_bus_pr1_host_intr_req_286_293_to_cmp_event_introuter_main_0_bus_in_8_15)
                      7012c2d8    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_0_bus_pr1_iep0_cmp_intr_req_268_283_to_cmp_event_introuter_main_0_bus_in_32_47)
                      7012c2e0    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_0_bus_pr1_iep1_cmp_intr_req_256_261_to_cmp_event_introuter_main_0_bus_in_48_53)
                      7012c2e8    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_0_bus_pr1_iep1_cmp_intr_req_6_15_to_cmp_event_introuter_main_0_bus_in_54_63)
                      7012c2f0    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_0_bus_pr1_rx_sof_intr_req_284_285_to_main2mcu_pls_introuter_main_0_bus_in_20_21)
                      7012c2f8    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_0_bus_pr1_tx_sof_intr_req_302_303_to_main2mcu_pls_introuter_main_0_bus_in_22_23)
                      7012c300    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_1_bus_pr1_edc0_sync0_out_304_304_to_timesync_event_introuter_main_0_bus_in_20_20)
                      7012c308    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_1_bus_pr1_edc0_sync1_out_305_305_to_timesync_event_introuter_main_0_bus_in_21_21)
                      7012c310    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_1_bus_pr1_edc1_sync0_out_306_306_to_timesync_event_introuter_main_0_bus_in_22_22)
                      7012c318    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_1_bus_pr1_edc1_sync1_out_307_307_to_timesync_event_introuter_main_0_bus_in_23_23)
                      7012c320    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_1_bus_pr1_host_intr_pend_294_301_to_main2mcu_lvl_introuter_main_0_bus_in_40_47)
                      7012c328    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_1_bus_pr1_host_intr_req_286_293_to_cmp_event_introuter_main_0_bus_in_16_23)
                      7012c330    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_1_bus_pr1_iep0_cmp_intr_req_268_283_to_cmp_event_introuter_main_0_bus_in_64_79)
                      7012c338    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_1_bus_pr1_iep1_cmp_intr_req_256_261_to_cmp_event_introuter_main_0_bus_in_80_85)
                      7012c340    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_1_bus_pr1_iep1_cmp_intr_req_6_15_to_cmp_event_introuter_main_0_bus_in_86_95)
                      7012c348    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_1_bus_pr1_rx_sof_intr_req_284_285_to_main2mcu_pls_introuter_main_0_bus_in_24_25)
                      7012c350    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_1_bus_pr1_tx_sof_intr_req_302_303_to_main2mcu_pls_introuter_main_0_bus_in_26_27)
                      7012c358    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_2_bus_pr1_edc0_sync0_out_304_304_to_timesync_event_introuter_main_0_bus_in_24_24)
                      7012c360    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_2_bus_pr1_edc0_sync1_out_305_305_to_timesync_event_introuter_main_0_bus_in_25_25)
                      7012c368    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_2_bus_pr1_edc1_sync0_out_306_306_to_timesync_event_introuter_main_0_bus_in_26_26)
                      7012c370    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_2_bus_pr1_edc1_sync1_out_307_307_to_timesync_event_introuter_main_0_bus_in_27_27)
                      7012c378    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_2_bus_pr1_host_intr_pend_294_301_to_main2mcu_lvl_introuter_main_0_bus_in_48_55)
                      7012c380    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_2_bus_pr1_host_intr_req_286_293_to_cmp_event_introuter_main_0_bus_in_24_31)
                      7012c388    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_2_bus_pr1_iep0_cmp_intr_req_268_283_to_cmp_event_introuter_main_0_bus_in_96_111)
                      7012c390    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_2_bus_pr1_iep1_cmp_intr_req_256_261_to_cmp_event_introuter_main_0_bus_in_112_117)
                      7012c398    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_2_bus_pr1_iep1_cmp_intr_req_6_15_to_cmp_event_introuter_main_0_bus_in_118_127)
                      7012c3a0    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_2_bus_pr1_rx_sof_intr_req_284_285_to_main2mcu_pls_introuter_main_0_bus_in_28_29)
                      7012c3a8    00000008                     : sciclient_irq_rm.oer5f (.rodata.icss_g_main_2_bus_pr1_tx_sof_intr_req_302_303_to_main2mcu_pls_introuter_main_0_bus_in_30_31)
                      7012c3b0    00000008                     : sciclient_irq_rm.oer5f (.rodata.k3_boltv2_main_0_bus_exp_intr_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_57_57)
                      7012c3b8    00000008                     : sciclient_irq_rm.oer5f (.rodata.k3_boltv2_main_0_bus_gpu_irq_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_56_56)
                      7012c3c0    00000008                     : sciclient_irq_rm.oer5f (.rodata.k3_boltv2_main_0_bus_init_err_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_58_58)
                      7012c3c8    00000008                     : sciclient_irq_rm.oer5f (.rodata.k3_boltv2_main_0_bus_target_err_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_59_59)
                      7012c3d0    00000008                     : sciclient_irq_rm.oer5f (.rodata.k3_cc_debug_cell_main_0_bus_aqcmpintr_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_13_13)
                      7012c3d8    00000008                     : sciclient_irq_rm.oer5f (.rodata.k3_dss_ul_main_0_bus_dispc_intr_req_0_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_2_2)
                      7012c3e0    00000008                     : sciclient_irq_rm.oer5f (.rodata.k3_dss_ul_main_0_bus_dispc_intr_req_1_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_3_3)
                      7012c3e8    00000008                     : sciclient_irq_rm.oer5f (.rodata.k3_main_debug_cell_main_0_bus_aqcmpintr_level_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_14_14)
                      7012c3f0    00000008                     : sciclient_irq_rm.oer5f (.rodata.k3_main_debug_cell_main_0_bus_ctm_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_15_15)
                      7012c3f8    00000008                     : sciclient_irq_rm.oer5f (.rodata.m4_main_cbass_main_0_bus_LPSC_per_common_err_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_172_172)
                      7012c400    00000008                     : sciclient_irq_rm.oer5f (.rodata.m4_main_dbg_cbass_main_0_bus_LPSC_main_debug_err_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_173_173)
                      7012c408    00000008                     : sciclient_irq_rm.oer5f (.rodata.m4_main_fw_cbass_main_0_bus_LPSC_main_infra_err_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_174_174)
                      7012c410    00000008                     : sciclient_irq_rm.oer5f (.rodata.m4_main_infra_cbass_main_0_bus_LPSC_main_infra_err_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_175_175)
                      7012c418    00000008                     : sciclient_irq_rm.oer5f (.rodata.main2mcu_lvl_introuter_main_0_bus_outl_0_63_to_mcu_armss0_cpu0_bus_intr_160_223)
                      7012c420    00000008                     : sciclient_irq_rm.oer5f (.rodata.main2mcu_lvl_introuter_main_0_bus_outl_0_63_to_mcu_armss0_cpu1_bus_intr_160_223)
                      7012c428    00000008                     : sciclient_irq_rm.oer5f (.rodata.main2mcu_pls_introuter_main_0_bus_outp_0_47_to_mcu_armss0_cpu0_bus_intr_224_271)
                      7012c430    00000008                     : sciclient_irq_rm.oer5f (.rodata.main2mcu_pls_introuter_main_0_bus_outp_0_47_to_mcu_armss0_cpu1_bus_intr_224_271)
                      7012c438    00000008                     : sciclient_irq_rm.oer5f (.rodata.main_ctrl_mmr_main_0_bus_access_err_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_6_6)
                      7012c440    00000008                     : sciclient_irq_rm.oer5f (.rodata.main_gpiomux_introuter_main_0_bus_outp_0_31_to_gic500ss_main_0_bus_spi_392_423)
                      7012c448    00000008                     : sciclient_irq_rm.oer5f (.rodata.main_gpiomux_introuter_main_0_bus_outp_0_7_to_esm_main_main_0_bus_esm_pls_event0_512_519)
                      7012c450    00000008                     : sciclient_irq_rm.oer5f (.rodata.main_gpiomux_introuter_main_0_bus_outp_0_7_to_esm_main_main_0_bus_esm_pls_event1_520_527)
                      7012c458    00000008                     : sciclient_irq_rm.oer5f (.rodata.main_gpiomux_introuter_main_0_bus_outp_0_7_to_esm_main_main_0_bus_esm_pls_event2_248_255)
                      7012c460    00000008                     : sciclient_irq_rm.oer5f (.rodata.main_gpiomux_introuter_main_0_bus_outp_20_25_to_icss_g_main_0_bus_pr1_iep0_cap_intr_req_262_267)
                      7012c468    00000008                     : sciclient_irq_rm.oer5f (.rodata.main_gpiomux_introuter_main_0_bus_outp_20_25_to_icss_g_main_1_bus_pr1_iep0_cap_intr_req_262_267)
                      7012c470    00000008                     : sciclient_irq_rm.oer5f (.rodata.main_gpiomux_introuter_main_0_bus_outp_20_25_to_icss_g_main_2_bus_pr1_iep0_cap_intr_req_262_267)
                      7012c478    00000008                     : sciclient_irq_rm.oer5f (.rodata.main_gpiomux_introuter_main_0_bus_outp_24_31_to_icss_g_main_0_bus_pr1_slv_intr_88_95)
                      7012c480    00000008                     : sciclient_irq_rm.oer5f (.rodata.main_gpiomux_introuter_main_0_bus_outp_24_31_to_icss_g_main_1_bus_pr1_slv_intr_88_95)
                      7012c488    00000008                     : sciclient_irq_rm.oer5f (.rodata.main_gpiomux_introuter_main_0_bus_outp_24_31_to_icss_g_main_2_bus_pr1_slv_intr_88_95)
                      7012c490    00000008                     : sciclient_irq_rm.oer5f (.rodata.main_gpiomux_introuter_main_0_bus_outp_26_31_to_icss_g_main_0_bus_pr1_iep1_cap_intr_req_0_5)
                      7012c498    00000008                     : sciclient_irq_rm.oer5f (.rodata.main_gpiomux_introuter_main_0_bus_outp_26_31_to_icss_g_main_1_bus_pr1_iep1_cap_intr_req_0_5)
                      7012c4a0    00000008                     : sciclient_irq_rm.oer5f (.rodata.main_gpiomux_introuter_main_0_bus_outp_26_31_to_icss_g_main_2_bus_pr1_iep1_cap_intr_req_0_5)
                      7012c4a8    00000008                     : sciclient_irq_rm.oer5f (.rodata.mcasp_main_0_bus_rec_intr_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_17_17)
                      7012c4b0    00000008                     : sciclient_irq_rm.oer5f (.rodata.mcasp_main_0_bus_xmit_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_16_16)
                      7012c4b8    00000008                     : sciclient_irq_rm.oer5f (.rodata.mcasp_main_1_bus_rec_intr_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_19_19)
                      7012c4c0    00000008                     : sciclient_irq_rm.oer5f (.rodata.mcasp_main_1_bus_xmit_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_18_18)
                      7012c4c8    00000008                     : sciclient_irq_rm.oer5f (.rodata.mcasp_main_2_bus_rec_intr_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_21_21)
                      7012c4d0    00000008                     : sciclient_irq_rm.oer5f (.rodata.mcasp_main_2_bus_xmit_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_20_20)
                      7012c4d8    00000008                     : sciclient_irq_rm.oer5f (.rodata.mcu_navss0_intr_aggr_0_intaggr_vintr_pend_0_255_to_mcu_navss0_intr_router_0_in_intr_0_255)
                      7012c4e0    00000008                     : sciclient_irq_rm.oer5f (.rodata.mcu_navss0_intr_router_0_outl_intr_0_31_to_mcu_armss0_cpu0_bus_intr_64_95)
                      7012c4e8    00000008                     : sciclient_irq_rm.oer5f (.rodata.mcu_navss0_intr_router_0_outl_intr_32_63_to_mcu_armss0_cpu1_bus_intr_64_95)
                      7012c4f0    00000008                     : sciclient_irq_rm.oer5f (.rodata.mshsi2c_main_0_bus_pointrpend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_100_100)
                      7012c4f8    00000008                     : sciclient_irq_rm.oer5f (.rodata.mshsi2c_main_1_bus_pointrpend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_101_101)
                      7012c500    00000008                     : sciclient_irq_rm.oer5f (.rodata.mshsi2c_main_2_bus_pointrpend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_102_102)
                      7012c508    00000008                     : sciclient_irq_rm.oer5f (.rodata.mshsi2c_main_3_bus_pointrpend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_103_103)
                      7012c510    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_cpts0_event_pend_intr_0_0_to_navss0_intr_router_0_in_intr_391_391)
                      7012c518    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_intr_router_0_outl_intr_0_63_to_gic500ss_main_0_bus_spi_64_127)
                      7012c520    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_intr_router_0_outl_intr_120_127_to_main2mcu_lvl_introuter_main_0_bus_in_184_191)
                      7012c528    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_intr_router_0_outl_intr_128_135_to_icss_g_main_0_bus_pr1_slv_intr_46_53)
                      7012c530    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_intr_router_0_outl_intr_136_143_to_icss_g_main_1_bus_pr1_slv_intr_46_53)
                      7012c538    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_intr_router_0_outl_intr_144_151_to_icss_g_main_2_bus_pr1_slv_intr_46_53)
                      7012c540    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_intr_router_0_outl_intr_64_119_to_gic500ss_main_0_bus_spi_448_503)
                      7012c548    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mailbox0_cluster0_pend_intr_0_3_to_navss0_intr_router_0_in_intr_436_439)
                      7012c550    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mailbox0_cluster10_pend_intr_0_3_to_navss0_intr_router_0_in_intr_396_399)
                      7012c558    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mailbox0_cluster11_pend_intr_0_3_to_navss0_intr_router_0_in_intr_392_395)
                      7012c560    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mailbox0_cluster1_pend_intr_0_3_to_navss0_intr_router_0_in_intr_432_435)
                      7012c568    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mailbox0_cluster2_pend_intr_0_3_to_navss0_intr_router_0_in_intr_428_431)
                      7012c570    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mailbox0_cluster3_pend_intr_0_3_to_navss0_intr_router_0_in_intr_424_427)
                      7012c578    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mailbox0_cluster4_pend_intr_0_3_to_navss0_intr_router_0_in_intr_420_423)
                      7012c580    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mailbox0_cluster5_pend_intr_0_3_to_navss0_intr_router_0_in_intr_416_419)
                      7012c588    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mailbox0_cluster6_pend_intr_0_3_to_navss0_intr_router_0_in_intr_412_415)
                      7012c590    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mailbox0_cluster7_pend_intr_0_3_to_navss0_intr_router_0_in_intr_408_411)
                      7012c598    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mailbox0_cluster8_pend_intr_0_3_to_navss0_intr_router_0_in_intr_404_407)
                      7012c5a0    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mailbox0_cluster9_pend_intr_0_3_to_navss0_intr_router_0_in_intr_400_403)
                      7012c5a8    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mcrc0_dma_event_intr_0_3_to_navss0_intr_router_0_in_intr_384_387)
                      7012c5b0    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mcrc0_dma_event_intr_0_3_to_navss0_udmass_inta0_intaggr_levt_pend_0_3)
                      7012c5b8    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_mcrc0_int_mcrc_intr_8_8_to_navss0_intr_router_0_in_intr_388_388)
                      7012c5c0    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_modss_inta0_intaggr_vintr_pend_0_63_to_navss0_intr_router_0_in_intr_320_383)
                      7012c5c8    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_modss_inta1_intaggr_vintr_pend_0_63_to_navss0_intr_router_0_in_intr_256_319)
                      7012c5d0    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_pvu0_pend_intr_0_0_to_navss0_intr_router_0_in_intr_390_390)
                      7012c5d8    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_pvu1_pend_intr_0_0_to_navss0_intr_router_0_in_intr_389_389)
                      7012c5e0    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss0_udmass_inta0_intaggr_vintr_pend_0_255_to_navss0_intr_router_0_in_intr_0_255)
                      7012c5e8    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss256l_main_0_bus_cpts0_comp_9_9_to_cmp_event_introuter_main_0_bus_in_4_4)
                      7012c5f0    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss256l_main_0_bus_cpts0_genf0_10_10_to_timesync_event_introuter_main_0_bus_in_4_4)
                      7012c5f8    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss256l_main_0_bus_cpts0_genf1_11_11_to_timesync_event_introuter_main_0_bus_in_5_5)
                      7012c600    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss256l_main_0_bus_cpts0_genf2_12_12_to_timesync_event_introuter_main_0_bus_in_6_6)
                      7012c608    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss256l_main_0_bus_cpts0_genf3_13_13_to_timesync_event_introuter_main_0_bus_in_7_7)
                      7012c610    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss256l_main_0_bus_cpts0_genf4_14_14_to_timesync_event_introuter_main_0_bus_in_8_8)
                      7012c618    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss256l_main_0_bus_cpts0_genf5_15_15_to_timesync_event_introuter_main_0_bus_in_9_9)
                      7012c620    00000008                     : sciclient_irq_rm.oer5f (.rodata.navss256l_main_0_bus_cpts0_sync_16_16_to_timesync_event_introuter_main_0_bus_in_30_30)
                      7012c628    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie0_pend_13_13_to_main2mcu_lvl_introuter_main_0_bus_in_64_64)
                      7012c630    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie10_pend_15_15_to_main2mcu_lvl_introuter_main_0_bus_in_74_74)
                      7012c638    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie11_pend_14_14_to_main2mcu_lvl_introuter_main_0_bus_in_75_75)
                      7012c640    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie12_pend_6_6_to_main2mcu_lvl_introuter_main_0_bus_in_76_76)
                      7012c648    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie13_pend_10_10_to_main2mcu_lvl_introuter_main_0_bus_in_77_77)
                      7012c650    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie14_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_78_78)
                      7012c658    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie1_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_65_65)
                      7012c660    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie2_pend_7_7_to_main2mcu_lvl_introuter_main_0_bus_in_66_66)
                      7012c668    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie3_pend_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_67_67)
                      7012c670    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie4_pend_5_5_to_main2mcu_lvl_introuter_main_0_bus_in_68_68)
                      7012c678    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie5_pend_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_69_69)
                      7012c680    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie6_pend_11_11_to_main2mcu_lvl_introuter_main_0_bus_in_70_70)
                      7012c688    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie7_pend_8_8_to_main2mcu_lvl_introuter_main_0_bus_in_71_71)
                      7012c690    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie8_pend_9_9_to_main2mcu_lvl_introuter_main_0_bus_in_72_72)
                      7012c698    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie9_pend_16_16_to_main2mcu_lvl_introuter_main_0_bus_in_73_73)
                      7012c6a0    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie_cpts_comp_19_19_to_cmp_event_introuter_main_0_bus_in_5_5)
                      7012c6a8    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie_cpts_genf0_20_20_to_timesync_event_introuter_main_0_bus_in_10_10)
                      7012c6b0    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie_cpts_hw1_push_17_17_to_timesync_event_introuter_main_0_bus_in_14_14)
                      7012c6b8    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie_cpts_pend_12_12_to_main2mcu_lvl_introuter_main_0_bus_in_79_79)
                      7012c6c0    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_0_bus_pcie_cpts_sync_21_21_to_timesync_event_introuter_main_0_bus_in_28_28)
                      7012c6c8    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie0_pend_13_13_to_main2mcu_lvl_introuter_main_0_bus_in_80_80)
                      7012c6d0    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie10_pend_15_15_to_main2mcu_lvl_introuter_main_0_bus_in_90_90)
                      7012c6d8    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie11_pend_14_14_to_main2mcu_lvl_introuter_main_0_bus_in_91_91)
                      7012c6e0    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie12_pend_6_6_to_main2mcu_lvl_introuter_main_0_bus_in_92_92)
                      7012c6e8    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie13_pend_10_10_to_main2mcu_lvl_introuter_main_0_bus_in_93_93)
                      7012c6f0    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie14_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_94_94)
                      7012c6f8    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie1_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_81_81)
                      7012c700    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie2_pend_7_7_to_main2mcu_lvl_introuter_main_0_bus_in_82_82)
                      7012c708    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie3_pend_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_83_83)
                      7012c710    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie4_pend_5_5_to_main2mcu_lvl_introuter_main_0_bus_in_84_84)
                      7012c718    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie5_pend_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_85_85)
                      7012c720    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie6_pend_11_11_to_main2mcu_lvl_introuter_main_0_bus_in_86_86)
                      7012c728    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie7_pend_8_8_to_main2mcu_lvl_introuter_main_0_bus_in_87_87)
                      7012c730    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie8_pend_9_9_to_main2mcu_lvl_introuter_main_0_bus_in_88_88)
                      7012c738    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie9_pend_16_16_to_main2mcu_lvl_introuter_main_0_bus_in_89_89)
                      7012c740    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie_cpts_comp_19_19_to_cmp_event_introuter_main_0_bus_in_6_6)
                      7012c748    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie_cpts_genf0_20_20_to_timesync_event_introuter_main_0_bus_in_11_11)
                      7012c750    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie_cpts_hw1_push_17_17_to_timesync_event_introuter_main_0_bus_in_15_15)
                      7012c758    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie_cpts_pend_12_12_to_main2mcu_lvl_introuter_main_0_bus_in_95_95)
                      7012c760    00000008                     : sciclient_irq_rm.oer5f (.rodata.pcie_g3x2_main_1_bus_pcie_cpts_sync_21_21_to_timesync_event_introuter_main_0_bus_in_29_29)
                      7012c768    00000008                     : sciclient_irq_rm.oer5f (.rodata.sa2_ul_main_0_bus_sa_ul_pka_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_5_5)
                      7012c770    00000008                     : sciclient_irq_rm.oer5f (.rodata.sa2_ul_main_0_bus_sa_ul_trng_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_4_4)
                      7012c778    00000008                     : sciclient_irq_rm.oer5f (.rodata.spi_main_0_bus_intr_spi_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_96_96)
                      7012c780    00000008                     : sciclient_irq_rm.oer5f (.rodata.spi_main_1_bus_intr_spi_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_97_97)
                      7012c788    00000008                     : sciclient_irq_rm.oer5f (.rodata.spi_main_2_bus_intr_spi_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_98_98)
                      7012c790    00000008                     : sciclient_irq_rm.oer5f (.rodata.spi_main_3_bus_intr_spi_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_99_99)
                      7012c798    00000008     udma.aer5f : udma_utils.oer5f (.rodata.str1.1)
                      7012c7a0    00000008     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_0_0_to_navss256l_main_0_bus_cpts0_hw1_push_0_0)
                      7012c7a8    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_10_10_to_icss_g_main_0_bus_pr1_edc1_latch0_in_310_310)
                      7012c7b0    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_11_11_to_icss_g_main_0_bus_pr1_edc1_latch1_in_311_311)
                      7012c7b8    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_12_12_to_icss_g_main_1_bus_pr1_edc0_latch0_in_308_308)
                      7012c7c0    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_13_13_to_icss_g_main_1_bus_pr1_edc0_latch1_in_309_309)
                      7012c7c8    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_14_14_to_icss_g_main_1_bus_pr1_edc1_latch0_in_310_310)
                      7012c7d0    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_15_15_to_icss_g_main_1_bus_pr1_edc1_latch1_in_311_311)
                      7012c7d8    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_16_16_to_icss_g_main_2_bus_pr1_edc0_latch0_in_308_308)
                      7012c7e0    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_17_17_to_icss_g_main_2_bus_pr1_edc0_latch1_in_309_309)
                      7012c7e8    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_18_18_to_icss_g_main_2_bus_pr1_edc1_latch0_in_310_310)
                      7012c7f0    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_19_19_to_icss_g_main_2_bus_pr1_edc1_latch1_in_311_311)
                      7012c7f8    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_1_1_to_navss256l_main_0_bus_cpts0_hw2_push_2_2)
                      7012c800    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_20_20_to_pcie_g3x2_main_0_bus_pcie_cpts_hw2_push_18_18)
                      7012c808    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_21_21_to_pcie_g3x2_main_1_bus_pcie_cpts_hw2_push_18_18)
                      7012c810    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_24_24_to_cpsw_2guss_mcu_0_bus_cpts_hw3_push_0_0)
                      7012c818    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_25_25_to_cpsw_2guss_mcu_0_bus_cpts_hw4_push_2_2)
                      7012c820    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_2_2_to_navss256l_main_0_bus_cpts0_hw3_push_3_3)
                      7012c828    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_32_39_to_pdma_main1_main_0_bus_levent_in_0_7)
                      7012c830    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_3_3_to_navss256l_main_0_bus_cpts0_hw4_push_4_4)
                      7012c838    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_4_4_to_navss256l_main_0_bus_cpts0_hw5_push_5_5)
                      7012c840    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_5_5_to_navss256l_main_0_bus_cpts0_hw6_push_6_6)
                      7012c848    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_6_6_to_navss256l_main_0_bus_cpts0_hw7_push_7_7)
                      7012c850    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_7_7_to_navss256l_main_0_bus_cpts0_hw8_push_8_8)
                      7012c858    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_8_8_to_icss_g_main_0_bus_pr1_edc0_latch0_in_308_308)
                      7012c860    00000008                     : sciclient_irq_rm.oer5f (.rodata.timesync_event_introuter_main_0_bus_outl_9_9_to_icss_g_main_0_bus_pr1_edc0_latch1_in_309_309)
                      7012c868    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_CMPEVENT_INTRTR0)
                      7012c870    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DEBUGSS0)
                      7012c878    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DSS0)
                      7012c880    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EHRPWM0)
                      7012c888    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EHRPWM1)
                      7012c890    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EHRPWM2)
                      7012c898    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EHRPWM3)
                      7012c8a0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EHRPWM4)
                      7012c8a8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EHRPWM5)
                      7012c8b0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_GPIO0)
                      7012c8b8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_GPIO1)
                      7012c8c0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MAIN2MCU_LVL_INTRTR0)
                      7012c8c8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MAIN2MCU_PLS_INTRTR0)
                      7012c8d0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCASP0)
                      7012c8d8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCASP1)
                      7012c8e0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCASP2)
                      7012c8e8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_SA2_UL0)
                      7012c8f0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_WKUP_GPIO0)
                      7012c8f8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_mcu_navss0_intr_router_0)
                      7012c900    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_CAL0)
                      7012c908    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_CBASS0)
                      7012c910    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_CBASS_DEBUG0)
                      7012c918    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_CBASS_FW0)
                      7012c920    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_CBASS_INFRA0)
                      7012c928    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_CCDEBUGSS0)
                      7012c930    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_CMPEVENT_INTRTR0)
                      7012c938    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_CTRL_MMR0)
                      7012c940    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC0)
                      7012c948    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC1)
                      7012c950    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC2)
                      7012c958    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC3)
                      7012c960    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC4)
                      7012c968    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC5)
                      7012c970    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC6)
                      7012c978    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC7)
                      7012c980    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DDRSS0)
                      7012c988    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DEBUGSS0)
                      7012c990    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DSS0)
                      7012c998    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_ECAP0)
                      7012c9a0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EHRPWM0)
                      7012c9a8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EHRPWM1)
                      7012c9b0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EHRPWM2)
                      7012c9b8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EHRPWM3)
                      7012c9c0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EHRPWM4)
                      7012c9c8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EHRPWM5)
                      7012c9d0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_ELM0)
                      7012c9d8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EQEP0)
                      7012c9e0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EQEP1)
                      7012c9e8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EQEP2)
                      7012c9f0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_GPIO0)
                      7012c9f8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_GPIO1)
                      7012ca00    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_GPIOMUX_INTRTR0)
                      7012ca08    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_GPMC0)
                      7012ca10    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_GPU0)
                      7012ca18    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_I2C0)
                      7012ca20    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_I2C1)
                      7012ca28    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_I2C2)
                      7012ca30    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_I2C3)
                      7012ca38    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MAIN2MCU_LVL_INTRTR0)
                      7012ca40    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MAIN2MCU_PLS_INTRTR0)
                      7012ca48    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCASP0)
                      7012ca50    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCASP1)
                      7012ca58    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCASP2)
                      7012ca60    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCSPI0)
                      7012ca68    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCSPI1)
                      7012ca70    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCSPI2)
                      7012ca78    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCSPI3)
                      7012ca80    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCU_CPSW0)
                      7012ca88    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MMCSD0)
                      7012ca90    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MMCSD1)
                      7012ca98    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0)
                      7012caa0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_PCIE0)
                      7012caa8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_PCIE1)
                      7012cab0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_PRU_ICSSG0)
                      7012cab8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_PRU_ICSSG1)
                      7012cac0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_PRU_ICSSG2)
                      7012cac8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_SA2_UL0)
                      7012cad0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER0)
                      7012cad8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER10)
                      7012cae0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER11)
                      7012cae8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER1)
                      7012caf0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER2)
                      7012caf8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER3)
                      7012cb00    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER4)
                      7012cb08    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER5)
                      7012cb10    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER6)
                      7012cb18    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER7)
                      7012cb20    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER8)
                      7012cb28    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER9)
                      7012cb30    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMESYNC_INTRTR0)
                      7012cb38    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_UART0)
                      7012cb40    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_UART1)
                      7012cb48    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_UART2)
                      7012cb50    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_USB3SS0)
                      7012cb58    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_USB3SS1)
                      7012cb60    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_WKUP_GPIO0)
                      7012cb68    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_WKUP_GPIOMUX_INTRTR0)
                      7012cb70    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_mcu_navss0_intr_aggr_0)
                      7012cb78    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_mcu_navss0_intr_router_0)
                      7012cb80    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_cpts0)
                      7012cb88    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_intr_router_0)
                      7012cb90    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_mailbox0_cluster0)
                      7012cb98    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_mailbox0_cluster10)
                      7012cba0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_mailbox0_cluster11)
                      7012cba8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_mailbox0_cluster1)
                      7012cbb0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_mailbox0_cluster2)
                      7012cbb8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_mailbox0_cluster3)
                      7012cbc0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_mailbox0_cluster4)
                      7012cbc8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_mailbox0_cluster5)
                      7012cbd0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_mailbox0_cluster6)
                      7012cbd8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_mailbox0_cluster7)
                      7012cbe0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_mailbox0_cluster8)
                      7012cbe8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_mailbox0_cluster9)
                      7012cbf0    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_mcrc0)
                      7012cbf8    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_modss_inta0)
                      7012cc00    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_modss_inta1)
                      7012cc08    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_pvu0)
                      7012cc10    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_pvu1)
                      7012cc18    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_navss0_udmass_inta0)
                      7012cc20    00000008                     : sciclient_irq_rm.oer5f (.rodata.usart_main_0_bus_usart_irq_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_104_104)
                      7012cc28    00000008                     : sciclient_irq_rm.oer5f (.rodata.usart_main_1_bus_usart_irq_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_105_105)
                      7012cc30    00000008                     : sciclient_irq_rm.oer5f (.rodata.usart_main_2_bus_usart_irq_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_106_106)
                      7012cc38    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_bc_lvl_18_18_to_main2mcu_lvl_introuter_main_0_bus_in_130_130)
                      7012cc40    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i00_lvl_19_19_to_main2mcu_lvl_introuter_main_0_bus_in_132_132)
                      7012cc48    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i01_lvl_8_8_to_main2mcu_lvl_introuter_main_0_bus_in_133_133)
                      7012cc50    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i02_lvl_7_7_to_main2mcu_lvl_introuter_main_0_bus_in_134_134)
                      7012cc58    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i03_lvl_13_13_to_main2mcu_lvl_introuter_main_0_bus_in_135_135)
                      7012cc60    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i04_lvl_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_136_136)
                      7012cc68    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i05_lvl_12_12_to_main2mcu_lvl_introuter_main_0_bus_in_137_137)
                      7012cc70    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i06_lvl_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_138_138)
                      7012cc78    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i07_lvl_6_6_to_main2mcu_lvl_introuter_main_0_bus_in_139_139)
                      7012cc80    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i08_lvl_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_140_140)
                      7012cc88    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i09_lvl_11_11_to_main2mcu_lvl_introuter_main_0_bus_in_141_141)
                      7012cc90    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i10_lvl_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_142_142)
                      7012cc98    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i11_lvl_20_20_to_main2mcu_lvl_introuter_main_0_bus_in_143_143)
                      7012cca0    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i12_lvl_9_9_to_main2mcu_lvl_introuter_main_0_bus_in_144_144)
                      7012cca8    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i13_lvl_15_15_to_main2mcu_lvl_introuter_main_0_bus_in_145_145)
                      7012ccb0    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i14_lvl_5_5_to_main2mcu_lvl_introuter_main_0_bus_in_146_146)
                      7012ccb8    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_i15_lvl_10_10_to_main2mcu_lvl_introuter_main_0_bus_in_147_147)
                      7012ccc0    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_misc_lvl_17_17_to_main2mcu_lvl_introuter_main_0_bus_in_129_129)
                      7012ccc8    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_otg_lvl_14_14_to_main2mcu_lvl_introuter_main_0_bus_in_128_128)
                      7012ccd0    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_0_bus_pme_gen_lvl_16_16_to_main2mcu_lvl_introuter_main_0_bus_in_131_131)
                      7012ccd8    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_bc_lvl_18_18_to_main2mcu_lvl_introuter_main_0_bus_in_150_150)
                      7012cce0    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i00_lvl_19_19_to_main2mcu_lvl_introuter_main_0_bus_in_152_152)
                      7012cce8    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i01_lvl_8_8_to_main2mcu_lvl_introuter_main_0_bus_in_153_153)
                      7012ccf0    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i02_lvl_7_7_to_main2mcu_lvl_introuter_main_0_bus_in_154_154)
                      7012ccf8    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i03_lvl_13_13_to_main2mcu_lvl_introuter_main_0_bus_in_155_155)
                      7012cd00    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i04_lvl_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_156_156)
                      7012cd08    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i05_lvl_12_12_to_main2mcu_lvl_introuter_main_0_bus_in_157_157)
                      7012cd10    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i06_lvl_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_158_158)
                      7012cd18    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i07_lvl_6_6_to_main2mcu_lvl_introuter_main_0_bus_in_159_159)
                      7012cd20    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i08_lvl_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_160_160)
                      7012cd28    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i09_lvl_11_11_to_main2mcu_lvl_introuter_main_0_bus_in_161_161)
                      7012cd30    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i10_lvl_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_162_162)
                      7012cd38    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i11_lvl_20_20_to_main2mcu_lvl_introuter_main_0_bus_in_163_163)
                      7012cd40    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i12_lvl_9_9_to_main2mcu_lvl_introuter_main_0_bus_in_164_164)
                      7012cd48    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i13_lvl_15_15_to_main2mcu_lvl_introuter_main_0_bus_in_165_165)
                      7012cd50    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i14_lvl_5_5_to_main2mcu_lvl_introuter_main_0_bus_in_166_166)
                      7012cd58    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_i15_lvl_10_10_to_main2mcu_lvl_introuter_main_0_bus_in_167_167)
                      7012cd60    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_misc_lvl_17_17_to_main2mcu_lvl_introuter_main_0_bus_in_149_149)
                      7012cd68    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_otg_lvl_14_14_to_main2mcu_lvl_introuter_main_0_bus_in_148_148)
                      7012cd70    00000008                     : sciclient_irq_rm.oer5f (.rodata.usb3ss2p0_gs80_main_1_bus_pme_gen_lvl_16_16_to_main2mcu_lvl_introuter_main_0_bus_in_151_151)
                      7012cd78    00000008                     : sciclient_irq_rm.oer5f (.rodata.wkup_gpiomux_introuter_wkup_0_bus_outp_0_11_to_dmsc_wkup_0_bus_int_8_19)
                      7012cd80    00000008                     : sciclient_irq_rm.oer5f (.rodata.wkup_gpiomux_introuter_wkup_0_bus_outp_0_15_to_gic500ss_main_0_bus_spi_712_727)
                      7012cd88    00000008                     : sciclient_irq_rm.oer5f (.rodata.wkup_gpiomux_introuter_wkup_0_bus_outp_0_15_to_mcu_armss0_cpu0_bus_intr_124_139)
                      7012cd90    00000008                     : sciclient_irq_rm.oer5f (.rodata.wkup_gpiomux_introuter_wkup_0_bus_outp_0_15_to_mcu_armss0_cpu1_bus_intr_124_139)
                      7012cd98    00000008                     : sciclient_irq_rm.oer5f (.rodata.wkup_gpiomux_introuter_wkup_0_bus_outp_8_15_to_esm_wkup_wkup_0_bus_esm_pls_event0_256_263)
                      7012cda0    00000008                     : sciclient_irq_rm.oer5f (.rodata.wkup_gpiomux_introuter_wkup_0_bus_outp_8_15_to_esm_wkup_wkup_0_bus_esm_pls_event1_264_271)
                      7012cda8    00000008                     : sciclient_irq_rm.oer5f (.rodata.wkup_gpiomux_introuter_wkup_0_bus_outp_8_15_to_esm_wkup_wkup_0_bus_esm_pls_event2_88_95)
                      7012cdb0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_CAL0)
                      7012cdb4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_CBASS0)
                      7012cdb8    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_CBASS_DEBUG0)
                      7012cdbc    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_CBASS_FW0)
                      7012cdc0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_CBASS_INFRA0)
                      7012cdc4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_CCDEBUGSS0)
                      7012cdc8    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_CTRL_MMR0)
                      7012cdcc    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC0)
                      7012cdd0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC1)
                      7012cdd4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC2)
                      7012cdd8    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC3)
                      7012cddc    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC4)
                      7012cde0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC5)
                      7012cde4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC6)
                      7012cde8    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC7)
                      7012cdec    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DDRSS0)
                      7012cdf0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_ECAP0)
                      7012cdf4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_ELM0)
                      7012cdf8    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EQEP0)
                      7012cdfc    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EQEP1)
                      7012ce00    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EQEP2)
                      7012ce04    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_GPMC0)
                      7012ce08    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_I2C0)
                      7012ce0c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_I2C1)
                      7012ce10    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_I2C2)
                      7012ce14    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_I2C3)
                      7012ce18    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCSPI0)
                      7012ce1c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCSPI1)
                      7012ce20    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCSPI2)
                      7012ce24    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCSPI3)
                      7012ce28    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MMCSD0)
                      7012ce2c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MMCSD1)
                      7012ce30    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER0)
                      7012ce34    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER10)
                      7012ce38    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER11)
                      7012ce3c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER1)
                      7012ce40    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER2)
                      7012ce44    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER3)
                      7012ce48    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER4)
                      7012ce4c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER5)
                      7012ce50    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER6)
                      7012ce54    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER7)
                      7012ce58    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER8)
                      7012ce5c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER9)
                      7012ce60    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_UART0)
                      7012ce64    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_UART1)
                      7012ce68    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_UART2)
                      7012ce6c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_mcu_navss0_intr_aggr_0)
                      7012ce70    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_cpts0)
                      7012ce74    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_mailbox0_cluster0)
                      7012ce78    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_mailbox0_cluster10)
                      7012ce7c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_mailbox0_cluster11)
                      7012ce80    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_mailbox0_cluster1)
                      7012ce84    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_mailbox0_cluster2)
                      7012ce88    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_mailbox0_cluster3)
                      7012ce8c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_mailbox0_cluster4)
                      7012ce90    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_mailbox0_cluster5)
                      7012ce94    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_mailbox0_cluster6)
                      7012ce98    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_mailbox0_cluster7)
                      7012ce9c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_mailbox0_cluster8)
                      7012cea0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_mailbox0_cluster9)
                      7012cea4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_modss_inta0)
                      7012cea8    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_modss_inta1)
                      7012ceac    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_pvu0)
                      7012ceb0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_pvu1)
                      7012ceb4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_navss0_udmass_inta0)
                      7012ceb8    00000004     ti.kernel.freertos.aer5f : tasks.oer5f (.rodata.uxTopUsedPriority)
                      7012cebc    00000004     --HOLE-- [fill = 00000000]
    
    .cinit     0    7014d3f0    00001d70     
                      7014d3f0    00001d4c     (.cinit..data.load) [load image, compression = lzss]
                      7014f13c    0000000c     (__TI_handler_table)
                      7014f148    00000008     (.cinit..bss.load) [load image, compression = zero_init]
                      7014f150    00000010     (__TI_cinit_table)
    
    .bss       0    81faa580    00029988     UNINITIALIZED
                      81faa580    00011800     enet_multiport.oer5f (.bss.gEnetMpTaskStackRx)
                      81fbbd80    00005e80     (.common:gEnetMp)
                      81fc1c00    00004640     enet_example_utils_full_freertos.aer5f : enet_udmautils.oer5f (.bss.udmaDrvObj)
                      81fc6240    000034d0     (.common:gEnetSoc_dmaObj)
                      81fc9710    00000008     ti.kernel.freertos.aer5f : heap_4.oer5f (.bss.xStart)
                      81fc9718    00000008     (.common:IcssgUtils_BufPoolCfg)
                      81fc9720    00002800     enet_multiport.oer5f (.bss.gEnetMpTaskStackMain)
                      81fcbf20    00002800     enet_multiport.oer5f (.bss.gEnetMpTaskStackTick)
                      81fce720    00001b80     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.bss.gOsalSemPfreertosPool)
                      81fd02a0    00000e04     enetphy.aer5f : enetphy.oer5f (.bss.gEnetPhy_phyObjs)
                      81fd10a4    00000004     sciclient.aer5f : sciclient.oer5f (.bss.gSciclient_maxMsgSizeBytes)
                      81fd10a8    00000af0     ti.osal.aer5f : TaskP_freertos.oer5f (.bss.gOsalFreertosTaskObjPool)
                      81fd1b98    00000730                   : MutexP_freertos.oer5f (.bss.gOsalMutexPFreeRtosPool)
                      81fd22c8    000004b0                   : ClockP_freertos.oer5f (.bss.gOsalClockPFreeRtosPool)
                      81fd2778    00000400     (.common:gEnetMp_cpswStats)
                      81fd2b78    00000280                   : TaskP_freertos.oer5f (.bss.gOsalTaskPfreertosPool)
                      81fd2df8    00000210     (.common:prussObjects)
                      81fd3008    000001f8                   : LoadP_freertos.oer5f (.bss.gLoadP_freertos)
                      81fd3200    000001d4     (.common:UartObjects)
                      81fd33d4    00000004     sciclient.aer5f : sciclient.oer5f (.bss.gSciclient_secHeader)
                      81fd33d8    00000140     enet.aer5f : enet_osal_dflt.oer5f (.bss.gEnetOsalDflt_mutexPool)
                      81fd3518    00000140     ti.osal.aer5f : Arch_util.oer5f (.bss.hwiStructs)
                      81fd3658    00000140     ti.kernel.freertos.aer5f : tasks.oer5f (.bss.pxReadyTasksLists)
                      81fd3798    00000120     libsysbm.a : trgmsg.c.obj (.bss:_CIOBUF_)
                      81fd38b8    00000120     (.common:gEnetMp_icssgPaStats)
                      81fd39d8    00000100     (.common:xQueueRegistry)
                      81fd3ad8    000000f0     (.common:gEnetMp_icssgStats)
                      81fd3bc8    000000d8     (.common:gEnetUtilsObj)
                      81fd3ca0    000000a0     (.common:__TI_tmpnams)
                      81fd3d40    00000050     (.common:gRovDummyQueue)
                      81fd3d90    0000003c     (.common:gEnetOsalObj)
                      81fd3dcc    00000029     enetphy.aer5f : enetphy.oer5f (.bss.gEnetPhyCapsBuf)
                      81fd3df5    00000003     --HOLE--
                      81fd3df8    00000028     sciclient.aer5f : sciclient_rm_irq.oer5f (.bss.gPstack)
                      81fd3e20    00000019     enetphy.aer5f : enetphy.oer5f (.bss.gEnetPhyModeBuf)
                      81fd3e39    00000003     --HOLE--
                      81fd3e3c    00000004     ti.osal.aer5f : TimerP_nonos.oer5f (.bss.gTimerAnyMask)
                      81fd3e40    00000018     (.common:gTimerCntrl)
                      81fd3e58    00000014     ti.kernel.freertos.aer5f : timers.oer5f (.bss.xActiveTimerList1)
                      81fd3e6c    00000014                              : timers.oer5f (.bss.xActiveTimerList2)
                      81fd3e80    00000014                              : tasks.oer5f (.bss.xDelayedTaskList1)
                      81fd3e94    00000014                              : tasks.oer5f (.bss.xDelayedTaskList2)
                      81fd3ea8    00000014                              : tasks.oer5f (.bss.xPendingReadyList)
                      81fd3ebc    00000014                              : tasks.oer5f (.bss.xSuspendedTaskList)
                      81fd3ed0    00000014                              : tasks.oer5f (.bss.xTasksWaitingTermination)
                      81fd3ee4    00000008     (.common:parmbuf)
                      81fd3eec    00000004     ti.osal.aer5f : Arch_util.oer5f (.bss.gVimRegs)
                      81fd3ef0    00000004     ti.kernel.freertos.aer5f : timers.oer5f (.bss.pxCurrentTimerList)
                      81fd3ef4    00000004                              : tasks.oer5f (.bss.pxDelayedTaskList)
                      81fd3ef8    00000004                              : tasks.oer5f (.bss.pxOverflowDelayedTaskList)
                      81fd3efc    00000004                              : timers.oer5f (.bss.pxOverflowTimerList)
                      81fd3f00    00000004     libc.a : memory.c.obj (.bss.sys_free)
                      81fd3f04    00000004     (.common:gVimBaseAddr)
    
    .data      0    7012cf00    00018000     UNINITIALIZED
                      7012cf00    000083a8     enetsoc.aer5f : enet_soc.oer5f (.data.gEnetSoc_cpsw2g)
                      701352a8    00000018     enet.aer5f : icssg_utils.oer5f (.data.IcssgUtils_R30DmemAddr)
                      701352c0    000010c0     enetsoc.aer5f : enet_soc.oer5f (.data.gEnetSoc_icssg0DMacp1)
                      70136380    000010c0                   : enet_soc.oer5f (.data.gEnetSoc_icssg0DMacp2)
                      70137440    000010c0                   : enet_soc.oer5f (.data.gEnetSoc_icssg0Swt)
                      70138500    000010c0                   : enet_soc.oer5f (.data.gEnetSoc_icssg1DMacp1)
                      701395c0    000010c0                   : enet_soc.oer5f (.data.gEnetSoc_icssg1DMacp2)
                      7013a680    000010c0                   : enet_soc.oer5f (.data.gEnetSoc_icssg1Swt)
                      7013b740    000010c0                   : enet_soc.oer5f (.data.gEnetSoc_icssg2DMacp1)
                      7013c800    000010c0                   : enet_soc.oer5f (.data.gEnetSoc_icssg2DMacp2)
                      7013d8c0    000010c0                   : enet_soc.oer5f (.data.gEnetSoc_icssg2Swt)
                      7013e980    00001000     ti.kernel.freertos.aer5f : port.oer5f (.data.vApplicationGetIdleTaskMemory.uxIdleTaskStack)
                      7013f980    00000800     ti.csl.aer5f : interrupt.oer5f (.data.argArray)
                      70140180    00000800                  : interrupt.oer5f (.data.fxnArray)
                      70140980    00000800                  : interrupt.oer5f (.data.intrSrcType)
                      70141180    00000400                  : interrupt.oer5f (.data.intrPri)
                      70141580    00000400     ti.kernel.freertos.aer5f : port.oer5f (.data.vApplicationGetTimerTaskMemory.uxTimerTaskStack)
                      70141980    00000368     ti.board.aer5f : am65xx_idk_clock.oer5f (.data.gBoardClkModuleID)
                      70141ce8    00000240     enet.aer5f : cpsw_ale.oer5f (.data.gCpswAle_ioctlValidate)
                      70141f28    00000200     ti.csl.aer5f : interrupt.oer5f (.data.intrMap)
                      70142128    000001a4     enet.aer5f : icssg.oer5f (.data.gIcssg_ioctlValidate)
                      701422cc    0000018c     ti.drv.pruss.aer5f : pruicss_soc.oer5f (.data.prussInitCfg)
                      70142458    00000160     ti.osal.aer5f : TimerP_nonos.oer5f (.data.gTimerStructs)
                      701425b8    00000130     enet.aer5f : icssg_utils.oer5f (.data.IcssgUtils_R30Bitmask)
                      701426e8    00000100     ti.kernel.freertos.aer5f : timers.oer5f (.data.prvCheckForValidListAndQueue.ucStaticTimerQueueStorage)
                      701427e8    00000100     sciclient.aer5f : sciclient_irq_rm.oer5f (.data.vint_usage_count_MCU_NAVSS0_INTR_AGGR_0)
                      701428e8    00000100                     : sciclient_irq_rm.oer5f (.data.vint_usage_count_NAVSS0_UDMASS_INTA0)
                      701429e8    000000fc     ti.drv.uart.aer5f : UART_soc.oer5f (.data.uartInitCfg)
                      70142ae4    000000f0     libc.a : defs.c.obj (.data._ftable)
                      70142bd4    000000e8     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm_pinmux_data.oer5f (.data.gPru_icssg0_mii_g_rt0PinCfg)
                      70142cbc    000000e8                                            : enet_board_am65xevm_pinmux_data.oer5f (.data.gPru_icssg1_mii_g_rt0PinCfg)
                      70142da4    000000e8     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gVout0PinCfg)
                      70142e8c    000000c0                    : AM65xx_pinmux_data.oer5f (.data.gAM65xxMainPinmuxData)
                      70142f4c    000000c0     sciclient.aer5f : sciclient_irq_rm.oer5f (.data.gRmIrInstances)
                      7014300c    000000b4     enet.aer5f : enet.oer5f (.data.gEnetHostPort_ioctlValidate)
                      701430c0    000000a8                : enet.oer5f (.data.gEnetPer_ioctlValidate)
                      70143168    000000a8                : enet.oer5f (.data.gEnetPhy_ioctlValidate)
                      70143210    0000009c                : cpsw_cpts.oer5f (.data.gCpswCpts_ioctlValidate)
                      701432ac    0000009c                : cpsw_macport.oer5f (.data.gCpswMacPort_privIoctlValidate)
                      70143348    0000009c                : enet.oer5f (.data.gEnetMacPort_ioctlValidate)
                      701433e4    00000090                : cpsw.oer5f (.data.gCpsw_ioctlValidate)
                      70143474    0000008c     ti.kernel.freertos.aer5f : port.oer5f (.data.vApplicationGetIdleTaskMemory.xIdleTaskTCB)
                      70143500    0000008c                              : port.oer5f (.data.vApplicationGetTimerTaskMemory.xTimerTaskTCB)
                      7014358c    00000088     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gGpio1PinCfg)
                      70143614    00000080     sciclient.aer5f : sciclient_irq_rm.oer5f (.data.gRmIaInstances)
                      70143694    0000007c     enet_example_utils_full_freertos.aer5f : enet_apprmcfg.oer5f (.data.gEnetAppRmDefCfg_2G)
                      70143710    0000007c                                            : enet_apprmcfg.oer5f (.data.gEnetAppRmDefCfg_iccsgDMac)
                      7014378c    0000007c                                            : enet_apprmcfg.oer5f (.data.gEnetAppRmDefCfg_iccsgSwt)
                      70143808    00000078     libsysbm.a : host_device.c.obj (.data._device)
                      70143880    00000078     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gAM65xxWkupPinmuxData)
                      701438f8    00000078     enetsoc.aer5f : enet_soc.oer5f (.data.gEnetSoc_perObj)
                      70143970    0000006c     enet.aer5f : enet.oer5f (.data.gEnetMdio_ioctlValidate)
                      701439dc    0000006c                : enet.oer5f (.data.gEnetTimeSync_ioctlValidate)
                      70143a48    00000068     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gMcu_cpsw0PinCfg)
                      70143ab0    00000068                    : AM65xx_pinmux_data.oer5f (.data.gMmc0PinCfg)
                      70143b18    00000068                    : AM65xx_pinmux_data.oer5f (.data.gPru_icssg0_rgmii1PinCfg)
                      70143b80    00000068                    : AM65xx_pinmux_data.oer5f (.data.gPru_icssg0_rgmii2PinCfg)
                      70143be8    00000068                    : AM65xx_pinmux_data.oer5f (.data.gPru_icssg1_rgmii1PinCfg)
                      70143c50    00000068                    : AM65xx_pinmux_data.oer5f (.data.gPru_icssg1_rgmii2PinCfg)
                      70143cb8    00000068                    : AM65xx_pinmux_data.oer5f (.data.gPru_icssg2_rgmii1PinCfg)
                      70143d20    00000068                    : AM65xx_pinmux_data.oer5f (.data.gPru_icssg2_rgmii2PinCfg)
                      70143d88    00000060     enet.aer5f : enet.oer5f (.data.gEnetTas_ioctlValidate)
                      70143de8    00000060     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gMcu_fss0_ospi0PinCfg)
                      70143e48    00000060     udma.aer5f : udma_rmcfg.oer5f (.data.gUdmaRmSharedResPrms)
                      70143ea8    00000060     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gWkup_gpio0PinCfg)
                      70143f08    00000058                    : AM65xx_pinmux_data.oer5f (.data.gGpio0PinCfg)
                      70143f60    00000054     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.data.gEnetMemObj)
                      70143fb4    00000054     sciclient.aer5f : sciclient.oer5f (.data.gSciclientHandle)
                      70144008    00000050     libsysbm.a : host_device.c.obj (.data._stream)
                      70144058    00000050     ti.kernel.freertos.aer5f : timers.oer5f (.data.prvCheckForValidListAndQueue.xStaticTimerQueue)
                      701440a8    00000048     enet.aer5f : cpsw_stats.oer5f (.data.gCpswStats_ioctlValidate)
                      701440f0    00000048                : enet_rm.oer5f (.data.gEnetRm_ioctlValidate)
                      70144138    00000048                : enet_rm.oer5f (.data.gEnetRm_privIoctlValidate)
                      70144180    00000048     enetsoc.aer5f : enet_soc.oer5f (.data.gEnetSoc_cpsw2gMacObj)
                      701441c8    00000048                   : enet_soc.oer5f (.data.gEnetSoc_cpsw2gSocCfg)
                      70144210    00000044     enet.aer5f : enet_udma_priv.oer5f (.data.gEnetUdmaMemMgrObj)
                      70144254    00000040     ti.osal.aer5f : TimerP_default.oer5f (.data.gDmTimerPInfoTbl)
                      70144294    00000040     enetsoc.aer5f : enet_soc.oer5f (.data.gEnetSoc_icssg0DMacSocCfg)
                      701442d4    00000040                   : enet_soc.oer5f (.data.gEnetSoc_icssg1DMacSocCfg)
                      70144314    00000040                   : enet_soc.oer5f (.data.gEnetSoc_icssg2DMacSocCfg)
                      70144354    00000040     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gMmc1PinCfg)
                      70144394    00000040     sciclient.aer5f : sciclient_irq_rm.oer5f (.data.vint_usage_count_NAVSS0_MODSS_INTA0)
                      701443d4    00000040                     : sciclient_irq_rm.oer5f (.data.vint_usage_count_NAVSS0_MODSS_INTA1)
                      70144414    00000038     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gWkup_system0PinCfg)
                      7014444c    00000038                    : AM65xx_pinmux_data.oer5f (.data.gWkup_system0PinCfgPG1)
                      70144484    00000030     ti.drv.uart.aer5f : UART_soc.oer5f (.data.UART_config)
                      701444b4    00000030     ti.csl.aer5f : interrupt.oer5f (.data.gExptnHandlers)
                      701444e4    00000030     ti.board.aer5f : am65xx_idk_ethernet_config.oer5f (.data.gPruicssMdioInfo)
                      70144514    00000030                    : AM65xx_pinmux_data.oer5f (.data.gSpi0PinCfg)
                      70144544    00000030                    : AM65xx_pinmux_data.oer5f (.data.gSpi1PinCfg)
                      70144574    00000030                    : AM65xx_pinmux_data.oer5f (.data.gSystem0PinCfg)
                      701445a4    00000030                    : AM65xx_pinmux_data.oer5f (.data.gSystem0PinCfgPG1)
                      701445d4    00000028     enetphy.aer5f : dp83822.oer5f (.data.gEnetPhyDrvDp83822)
                      701445fc    00000028                   : dp83867.oer5f (.data.gEnetPhyDrvDp83867)
                      70144624    00000028                   : generic_phy.oer5f (.data.gEnetPhyDrvGeneric)
                      7014464c    00000028                   : vsc8514.oer5f (.data.gEnetPhyDrvVsc8514)
                      70144674    00000028     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gMcu_uart0PinCfg)
                      7014469c    00000028                    : AM65xx_pinmux_data.oer5f (.data.gUart0PinCfg)
                      701446c4    00000028                    : AM65xx_pinmux_data.oer5f (.data.gWkup_debugss0PinCfg)
                      701446ec    00000028                    : AM65xx_pinmux_data.oer5f (.data.gWkup_uart0PinCfg)
                      70144714    00000024     enet.aer5f : cpsw_cpts.oer5f (.data.gCpswCpts_privIoctlValidate)
                      70144738    00000024                : cpsw_macport.oer5f (.data.gCpswMacPort_ioctlValidate)
                      7014475c    00000020     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gDebugss0PinCfg)
                      7014477c    00000020     enetsoc.aer5f : enet_soc.oer5f (.data.gEnetSoc_icssg0SwtSocCfg)
                      7014479c    00000020                   : enet_soc.oer5f (.data.gEnetSoc_icssg1SwtSocCfg)
                      701447bc    00000020                   : enet_soc.oer5f (.data.gEnetSoc_icssg2SwtSocCfg)
                      701447dc    00000020     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gI2cPinCfg)
                      701447fc    00000020                    : AM65xx_pinmux_data.oer5f (.data.gMcu_spi0PinCfg)
                      7014481c    00000004     enet_multiport.oer5f (.data.EnetMp_mdioLinkStatusChange.linkUpCount)
                      70144820    00000020     ti.osal.aer5f : Utils_freertos.oer5f (.data.gOsal_HwAttrs)
                      70144840    00000020     sciclient.aer5f : sciclient_secureProxyCfg.oer5f (.data.gSciclient_secProxyCfg)
                      70144860    00000020     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gpru_uart0PinCfg)
                      70144880    00000018     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm_pinmux_data.oer5f (.data.gAM65xxMIIPinmuxData)
                      70144898    00000018     enet.aer5f : cpsw_hostport.oer5f (.data.gCpswHostPort_ioctlValidate)
                      701448b0    00000018                : enet.oer5f (.data.gEnetFdb_ioctlValidate)
                      701448c8    00000018                : enet.oer5f (.data.gEnetStats_ioctlValidate)
                      701448e0    00000018                : enet_phymdio_dflt.oer5f (.data.gEnet_PhyMdioDflt)
                      701448f8    00000018     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gGpioPinCfg)
                      70144910    00000018                    : AM65xx_pinmux_data.oer5f (.data.gI2c0PinCfg)
                      70144928    00000018                    : AM65xx_pinmux_data.oer5f (.data.gI2c1PinCfg)
                      70144940    00000018                    : AM65xx_pinmux_data.oer5f (.data.gI2c2PinCfg)
                      70144958    00000018                    : AM65xx_pinmux_data.oer5f (.data.gMcu_adcPinCfg)
                      70144970    00000018                    : AM65xx_pinmux_data.oer5f (.data.gMcu_i2c0PinCfg)
                      70144988    00000018                    : AM65xx_pinmux_data.oer5f (.data.gMcu_mcan0PinCfg)
                      701449a0    00000018                    : AM65xx_pinmux_data.oer5f (.data.gMcu_mcan1PinCfg)
                      701449b8    00000018                    : AM65xx_pinmux_data.oer5f (.data.gMcu_mcanPinCfg)
                      701449d0    00000018                    : AM65xx_pinmux_data.oer5f (.data.gMcu_mdio0PinCfg)
                      701449e8    00000018                    : AM65xx_pinmux_data.oer5f (.data.gMmcPinCfg)
                      70144a00    00000018                    : AM65xx_pinmux_data.oer5f (.data.gPru_icssg0_mdio0PinCfg)
                      70144a18    00000018                    : AM65xx_pinmux_data.oer5f (.data.gPru_icssg0_rgmiiPinCfg)
                      70144a30    00000018                    : AM65xx_pinmux_data.oer5f (.data.gPru_icssg1_mdio0PinCfg)
                      70144a48    00000018                    : AM65xx_pinmux_data.oer5f (.data.gPru_icssg1_rgmiiPinCfg)
                      70144a60    00000018                    : AM65xx_pinmux_data.oer5f (.data.gPru_icssg2_mdio0PinCfg)
                      70144a78    00000018                    : AM65xx_pinmux_data.oer5f (.data.gPru_icssg2_rgmiiPinCfg)
                      70144a90    00000018                    : AM65xx_pinmux_data.oer5f (.data.gSerdesPinCfg)
                      70144aa8    00000018                    : AM65xx_pinmux_data.oer5f (.data.gSpiPinCfg)
                      70144ac0    00000018                    : AM65xx_pinmux_data.oer5f (.data.gTimer0PinCfg)
                      70144ad8    00000018                    : AM65xx_pinmux_data.oer5f (.data.gUsbPinCfg)
                      70144af0    00000018                    : AM65xx_pinmux_data.oer5f (.data.gWkup_i2c0PinCfg)
                      70144b08    00000018     ti.drv.pruss.aer5f : pruicss_soc.oer5f (.data.pruss_config)
                      70144b20    00000010     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gCalPinCfg)
                      70144b30    00000010                    : AM65xx_pinmux_data.oer5f (.data.gDdrPinCfg)
                      70144b40    00000010                    : AM65xx_pinmux_data.oer5f (.data.gDebugssPinCfg)
                      70144b50    00000010                    : AM65xx_pinmux_data.oer5f (.data.gEcap0PinCfg)
                      70144b60    00000010                    : AM65xx_pinmux_data.oer5f (.data.gEcapPinCfg)
                      70144b70    00000010     enetsoc.aer5f : enet_soc.oer5f (.data.gEnetSoc_PruIcssg0)
                      70144b80    00000010                   : enet_soc.oer5f (.data.gEnetSoc_PruIcssg1)
                      70144b90    00000010                   : enet_soc.oer5f (.data.gEnetSoc_PruIcssg2)
                      70144ba0    00000010     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gMcu_cpswPinCfg)
                      70144bb0    00000010                    : AM65xx_pinmux_data.oer5f (.data.gMcu_fss0_ospiPinCfg)
                      70144bc0    00000010                    : AM65xx_pinmux_data.oer5f (.data.gMcu_i2cPinCfg)
                      70144bd0    00000010                    : AM65xx_pinmux_data.oer5f (.data.gMcu_mdioPinCfg)
                      70144be0    00000010                    : AM65xx_pinmux_data.oer5f (.data.gMcu_spiPinCfg)
                      70144bf0    00000010                    : AM65xx_pinmux_data.oer5f (.data.gMcu_uartPinCfg)
                      70144c00    00000010                    : AM65xx_pinmux_data.oer5f (.data.gOldiPinCfg)
                      70144c10    00000010                    : AM65xx_pinmux_data.oer5f (.data.gOsc0PinCfg)
                      70144c20    00000010                    : AM65xx_pinmux_data.oer5f (.data.gPru_icssg0_mdioPinCfg)
                      70144c30    00000010     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm_pinmux_data.oer5f (.data.gPru_icssg0_mii_g_rtPinCfg)
                      70144c40    00000010     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gPru_icssg1_mdioPinCfg)
                      70144c50    00000010     enet_example_utils_full_freertos.aer5f : enet_board_am65xevm_pinmux_data.oer5f (.data.gPru_icssg1_mii_g_rtPinCfg)
                      70144c60    00000010     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gPru_icssg2_mdioPinCfg)
                      70144c70    00000010                    : AM65xx_pinmux_data.oer5f (.data.gSystemPinCfg)
                      70144c80    00000010                    : AM65xx_pinmux_data.oer5f (.data.gTimerPinCfg)
                      70144c90    00000010                    : AM65xx_pinmux_data.oer5f (.data.gUartPinCfg)
                      70144ca0    00000010                    : AM65xx_pinmux_data.oer5f (.data.gUsb0PinCfg)
                      70144cb0    00000010                    : AM65xx_pinmux_data.oer5f (.data.gUsb1PinCfg)
                      70144cc0    00000010                    : AM65xx_pinmux_data.oer5f (.data.gVoutPinCfg)
                      70144cd0    00000010                    : AM65xx_pinmux_data.oer5f (.data.gWkup_debugssPinCfg)
                      70144ce0    00000010                    : AM65xx_pinmux_data.oer5f (.data.gWkup_gpioPinCfg)
                      70144cf0    00000010                    : AM65xx_pinmux_data.oer5f (.data.gWkup_i2cPinCfg)
                      70144d00    00000010                    : AM65xx_pinmux_data.oer5f (.data.gWkup_osc0PinCfg)
                      70144d10    00000010                    : AM65xx_pinmux_data.oer5f (.data.gWkup_systemPinCfg)
                      70144d20    00000010                    : AM65xx_pinmux_data.oer5f (.data.gWkup_uartPinCfg)
                      70144d30    00000010                    : AM65xx_pinmux_data.oer5f (.data.gpru_uartPinCfg)
                      70144d40    00000010     sciclient.aer5f : sciclient_irq_rm.oer5f (.data.rom_usage_MAIN2MCU_LVL_INTRTR0)
                      70144d50    0000000c     enet.aer5f : cpsw_hostport.oer5f (.data.gCpswHostPort_privIoctlValidate)
                      70144d5c    0000000c                : cpsw_stats.oer5f (.data.gCpswStats_privIoctlValidate)
                      70144d68    0000000c                : mdio.oer5f (.data.gMdio_privIoctlValidate)
                      70144d74    0000000c     sciclient.aer5f : sciclient_irq_rm.oer5f (.data.rom_usage_MCU_NAVSS0_INTR_AGGR_0)
                      70144d80    00000008     libc.a : exit.c.obj (.data..L_MergedGlobals)
                      70144d88    00000008     ti.board.aer5f : AM65xx_pinmux_data.oer5f (.data.gCal0PinCfg)
                      70144d90    00000008                    : AM65xx_pinmux_data.oer5f (.data.gDdr0PinCfg)
                      70144d98    00000008                    : AM65xx_pinmux_data.oer5f (.data.gMcu_adc0PinCfg)
                      70144da0    00000008                    : AM65xx_pinmux_data.oer5f (.data.gMcu_adc1PinCfg)
                      70144da8    00000008                    : AM65xx_pinmux_data.oer5f (.data.gOldi0PinCfg)
                      70144db0    00000008                    : AM65xx_pinmux_data.oer5f (.data.gOsc00PinCfg)
                      70144db8    00000008                    : AM65xx_pinmux_data.oer5f (.data.gSerdes0PinCfg)
                      70144dc0    00000008                    : AM65xx_pinmux_data.oer5f (.data.gSerdes1PinCfg)
                      70144dc8    00000008                    : AM65xx_pinmux_data.oer5f (.data.gWkup_osc00PinCfg)
                      70144dd0    00000008     sciclient.aer5f : sciclient_irq_rm.oer5f (.data.rom_usage_mcu_navss0_intr_router_0)
                      70144dd8    00000008     ti.drv.uart.aer5f : UART_stdio.oer5f (.data.uart_stdio)
                      70144de0    00000004     ti.kernel.freertos.aer5f : tasks.oer5f (.data.FreeRTOS_errno)
                      70144de4    00000004     ti.drv.uart.aer5f : UART_drv.oer5f (.data.UART_count)
                      70144de8    00000004     libc.a : defs.c.obj (.data.__TI_ft_end)
                      70144dec    00000004            : aeabi_portable.c.obj (.data.__aeabi_errno)
                      70144df0    00000004            : _lock.c.obj (.data._lock)
                      70144df4    00000004            : _lock.c.obj (.data._unlock)
                      70144df8    00000004     ti.osal.aer5f : ClockP_freertos.oer5f (.data.gOsalClockAllocCnt)
                      70144dfc    00000004                   : ClockP_freertos.oer5f (.data.gOsalClockPeak)
                      70144e00    00000004                   : Utils_freertos.oer5f (.data.gOsalHwiAllocCnt)
                      70144e04    00000004                   : Utils_freertos.oer5f (.data.gOsalHwiPeak)
                      70144e08    00000004                   : Utils_freertos.oer5f (.data.gOsalMutexAllocCnt)
                      70144e0c    00000004                   : Utils_freertos.oer5f (.data.gOsalMutexPeak)
                      70144e10    00000004                   : Utils_freertos.oer5f (.data.gOsalSemAllocCnt)
                      70144e14    00000004                   : Utils_freertos.oer5f (.data.gOsalSemPeak)
                      70144e18    00000004                   : TaskP_freertos.oer5f (.data.gOsalTaskAllocCnt)
                      70144e1c    00000004                   : TaskP_freertos.oer5f (.data.gOsalTaskPeak)
                      70144e20    00000004                   : Utils_freertos.oer5f (.data.gOsalTimerAllocCnt)
                      70144e24    00000004                   : Utils_freertos.oer5f (.data.gOsalTimerPeak)
                      70144e28    00000004     udma.aer5f : udma_osal.oer5f (.data.gUdmaOsalCachePrms.0)
                      70144e2c    00000004                : udma_osal.oer5f (.data.gUdmaOsalCachePrms.1)
                      70144e30    00000004     libc.a : rand.c.obj (.data.next)
                      70144e34    00000004     ti.kernel.freertos.aer5f : timers.oer5f (.data.prvSampleTimeNow.xLastTime)
                      70144e38    00000004                              : tasks.oer5f (.data.pxCurrentTCB)
                      70144e3c    00000004                              : heap_4.oer5f (.data.pxEnd)
                      70144e40    00000004                              : port.oer5f (.data.ulCriticalNesting)
                      70144e44    00000004                              : port.oer5f (.data.ulPortInterruptNesting)
                      70144e48    00000004                              : port.oer5f (.data.ulPortSchedularRunning)
                      70144e4c    00000004                              : port.oer5f (.data.ulPortTaskHasFPUContext)
                      70144e50    00000004                              : port.oer5f (.data.ulPortYieldRequired)
                      70144e54    00000004                              : tasks.oer5f (.data.ulTaskSwitchedInTime)
                      70144e58    00000004                              : tasks.oer5f (.data.ulTotalRunTime)
                      70144e5c    00000004                              : tasks.oer5f (.data.uxCurrentNumberOfTasks)
                      70144e60    00000004                              : tasks.oer5f (.data.uxDeletedTasksWaitingCleanUp)
                      70144e64    00000004                              : tasks.oer5f (.data.uxSchedulerSuspended)
                      70144e68    00000004                              : tasks.oer5f (.data.uxTaskNumber)
                      70144e6c    00000004                              : tasks.oer5f (.data.uxTopReadyPriority)
                      70144e70    00000004     ti.osal.aer5f : LoadP_freertos.oer5f (.data.vApplicationLoadHook.t0)
                      70144e74    00000004                   : LoadP_freertos.oer5f (.data.vApplicationLoadHook.timeElapsed)
                      70144e78    00000004     ti.kernel.freertos.aer5f : heap_4.oer5f (.data.xFreeBytesRemaining)
                      70144e7c    00000004                              : tasks.oer5f (.data.xIdleTaskHandle)
                      70144e80    00000004                              : tasks.oer5f (.data.xNextTaskUnblockTime)
                      70144e84    00000004                              : tasks.oer5f (.data.xNumOfOverflows)
                      70144e88    00000004                              : heap_4.oer5f (.data.xNumberOfSuccessfulFrees)
                      70144e8c    00000004                              : tasks.oer5f (.data.xPendedTicks)
                      70144e90    00000004                              : tasks.oer5f (.data.xSchedulerRunning)
                      70144e94    00000004                              : tasks.oer5f (.data.xTickCount)
                      70144e98    00000004                              : timers.oer5f (.data.xTimerQueue)
                      70144e9c    00000004                              : timers.oer5f (.data.xTimerTaskHandle)
                      70144ea0    00000004                              : tasks.oer5f (.data.xYieldPending)
                      70144ea4    00000001     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.data.EnetAppUtils_assertLocal.gCpswAssertWaitInLoop)
                      70144ea5    00000001                                            : enet_appsoc.oer5f (.data.EnetAppUtils_assertLocal.gCpswAssertWaitInLoop)
                      70144ea6    00000001                                            : enet_apputils.oer5f (.data.EnetAppUtils_assertLocal.gCpswAssertWaitInLoop)
                      70144ea7    00000001                                            : enet_apputils_k3.oer5f (.data.EnetAppUtils_assertLocal.gCpswAssertWaitInLoop)
                      70144ea8    00000001                                            : enet_board_am65xevm.oer5f (.data.EnetAppUtils_assertLocal.gCpswAssertWaitInLoop)
                      70144ea9    00000001                                            : enet_ioctlutils.oer5f (.data.EnetAppUtils_assertLocal.gCpswAssertWaitInLoop)
                      70144eaa    00000001                                            : enet_udmautils.oer5f (.data.EnetAppUtils_assertLocal.gCpswAssertWaitInLoop)
                      70144eab    00000001     enet_multiport.oer5f (.data.EnetAppUtils_assertLocal.gCpswAssertWaitInLoop)
                      70144eac    00000001     enet.aer5f : cpsw.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144ead    00000001                : cpsw_ale.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144eae    00000001                : cpsw_cpts.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144eaf    00000001                : cpsw_hostport.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144eb0    00000001                : cpsw_intervlan.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144eb1    00000001                : cpsw_macport.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144eb2    00000001                : cpsw_macport_intervlan.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144eb3    00000001                : cpsw_stats.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144eb4    00000001                : enet.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144eb5    00000001                : enet_hostport_udma.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144eb6    00000001                : enet_osal.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144eb7    00000001                : enet_queue.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144eb8    00000001                : enet_rm.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144eb9    00000001                : enet_udma.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144eba    00000001                : enet_udma_priv.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144ebb    00000001                : enet_utils.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144ebc    00000001                : icssg.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144ebd    00000001                : icssg_tas.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144ebe    00000001                : icssg_timesync.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144ebf    00000001                : icssg_utils.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144ec0    00000001                : mdio.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144ec1    00000001     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144ec2    00000001                                            : enet_apputils.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144ec3    00000001     enet_multiport.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144ec4    00000001     enetphy.aer5f : enetphy.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144ec5    00000001                   : vsc8514.oer5f (.data.EnetUtils_assertLocal.gEnetAssertWaitInLoop)
                      70144ec6    00000001     ti.osal.aer5f : Utils_freertos.oer5f (.data.Osal_DebugP_Assert_Val)
                      70144ec7    00000001     ti.board.aer5f : am65xx_idk.oer5f (.data.gBoardSysInitDone)
                      70144ec8    00000001     enetphy.aer5f : vsc8514.oer5f (.data.gEnetPhyDrvVsc8514_isInit)
                      70144ec9    00000001     enet.aer5f : enet_trace.oer5f (.data.gEnetTrace_runtimeLevel)
                      70144eca    00000001     ti.osal.aer5f : Arch_util.oer5f (.data.gFirstTime)
                      70144ecb    00000001                   : Arch_util.oer5f (.data.gHwiInitialized)
                      70144ecc    00000001                   : LoadP_freertos.oer5f (.data.gLoadP_initDone)
                      70144ecd    00000001                   : Arch_util.oer5f (.data.gOsalArchConfig)
                      70144ece    00000001     sciclient.aer5f : sciclient.oer5f (.data.gSecHeaderSizeWords)
                      70144ecf    00000001     ti.osal.aer5f : TimerP_nonos.oer5f (.data.gUpdateFlag)
                      70144ed0    00000001     sciclient.aer5f : sciclient.oer5f (.data.gSciclient_writeInProgress)
                      70144ed1    00000003     --HOLE--
                      70144ed4    00000001     ti.osal.aer5f : TimerP_nonos.oer5f (.data.gTimerInitDone)
                      70144ed5    00000003     --HOLE--
                      70144ed8    00000001     libc.a : memory.c.obj (.data.memory_is_initialized)
                      70144ed9    00000003     --HOLE--
                      70144edc    00000001     ti.kernel.freertos.aer5f : heap_4.oer5f (.data.xBlockAllocatedBit)
                      70144edd    00000023     --HOLE--
    
    .sysmem    0    70144f00    00008000     UNINITIALIZED
                      70144f00    00000010     libc.a : memory.c.obj (.sysmem)
                      70144f10    00007ff0     --HOLE--
    
    .bss:ENET_DMA_PKT_MEMPOOL 
    *          0    80000000    017a0000     NOLOAD SECTION
                      80000000    017a0000     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.bss:ENET_DMA_PKT_MEMPOOL)
    
    .bss:ENET_DMA_DESC_MEMPOOL 
    *          0    817a0000    00540000     NOLOAD SECTION
                      817a0000    00540000     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.bss:ENET_DMA_DESC_MEMPOOL)
    
    .bss:ENET_DMA_PKT_INFO_MEMPOOL 
    *          0    81ce0000    001ce000     NOLOAD SECTION
                      81ce0000    001ce000     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.bss:ENET_DMA_PKT_INFO_MEMPOOL)
    
    .bss:ENET_DMA_RING_MEMPOOL 
    *          0    81eae000    00059400     NOLOAD SECTION
                      81eae000    00059400     enet_example_utils_full_freertos.aer5f : enet_appmemutils.oer5f (.bss:ENET_DMA_RING_MEMPOOL)
    
    .bss:ENET_DMA_OBJ_MEM 
    *          0    81f61300    00049280     NOLOAD SECTION
                      81f61300    00049280     enet.aer5f : enet_udma_priv.oer5f (.bss:ENET_DMA_OBJ_MEM)
    
    .undStack 
    *          0    ffffabe0    00000100     UNINITIALIZED
                      ffffabe0    00000100     --HOLE--
    
    .svcStack 
    *          0    fffface0    00000100     UNINITIALIZED
                      fffface0    00000100     --HOLE--
    
    .irqStack 
    *          0    ffffade0    00001000     UNINITIALIZED
                      ffffade0    00001000     --HOLE--
    
    .fiqStack 
    *          0    ffffbde0    00000100     UNINITIALIZED
                      ffffbde0    00000100     --HOLE--
    
    .abortStack 
    *          0    ffffbee0    00000100     UNINITIALIZED
                      ffffbee0    00000100     --HOLE--
    
    .stack     0    ffffbfe0    00004000     UNINITIALIZED
                      ffffbfe0    00004000     --HOLE--
    
    __llvm_prf_cnts 
    *          0    80000000    00000000     UNINITIALIZED
    
    MODULE SUMMARY
    
           Module                                                  code     ro data   rw data 
           ------                                                  ----     -------   ------- 
        C:\ti\pdk_am65xx_08_02_00_21\packages\ti\binary\enet_multiport_test_freertos\obj\am65xx_idk\mcu1_0\debug\
           enet_multiport.oer5f                                    10932    4095      117910  
           r5_mpu_default.oer5f                                    0        704       0       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  10932    4799      117910  
                                                                                              
        C:/ti/pdk_am65xx_08_02_00_21/packages/ti/board/lib/am65xx_idk/r5f/debug/ti.board.aer5f
           board_ddr.oer5f                                         5132     0         0       
           AM65xx_pinmux_data.oer5f                                0        0         3512    
           board_ethernet_config.oer5f                             1604     0         0       
           am65xx_idk_clock.oer5f                                  8        0         872     
           board_pll.oer5f                                         684      80        0       
           am65xx_idk_serdes_cfg.oer5f                             484      0         0       
           am65xx_idk_pinmux.oer5f                                 396      0         0       
           am65xx_idk.oer5f                                        316      0         1       
           board_mmr.oer5f                                         272      0         0       
           board_clock.oer5f                                       260      0         0       
           am65xx_idk_ethernet_config.oer5f                        0        0         48      
           am65xx_idk_info.oer5f                                   44       0         0       
           board_lld_init.oer5f                                    20       0         0       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  9220     80        4433    
                                                                                              
        C:/ti/pdk_am65xx_08_02_00_21/packages/ti/csl/lib/am65xx/r5f/debug/ti.csl.aer5f
           csl_cpsw.oer5f                                          8464     76        0       
           interrupt.oer5f                                         380      0         7732    
           csl_cpsw_ale_9g_tblcfg.oer5f                            4204     0         0       
           csl_cpsw_ale_4g_tblcfg.oer5f                            4060     0         0       
           uart.oer5f                                              3096     0         0       
           csl_cpts.oer5f                                          1896     0         0       
           csl_serdes3.oer5f                                       1820     0         0       
           timer.oer5f                                             1320     0         0       
           csl_cpgmac_sl.oer5f                                     1280     0         0       
           csl_ringacc.oer5f                                       1012     0         0       
           csl_udmap.oer5f                                         928      0         0       
           csl_mdio.oer5f                                          792      0         0       
           csl_vim.oer5f                                           788      0         0       
           csl_arm_r5.oer5f                                        740      0         0       
           csl_cpsgmii.oer5f                                       536      0         0       
           csl_intaggr.oer5f                                       496      0         0       
           csl_wiz8m_sb_refclk100p0MHz_32b_8Gbps_PCIE_1l1c.oer5f   476      0         0       
           csl_dru.oer5f                                           364      0         0       
           csl_cpsw_ss.oer5f                                       332      0         0       
           csl_proxy.oer5f                                         304      0         0       
           csl_cache.oer5f                                         216      0         0       
           csl_serdes3_pcie.oer5f                                  88       0         0       
           csl_r5.oer5f                                            32       0         0       
           csl_sec_proxy.oer5f                                     20       0         0       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  33644    76        7732    
                                                                                              
        C:/ti/pdk_am65xx_08_02_00_21/packages/ti/csl/lib/am65xx/r5f/debug/ti.csl.init.aer5f
           startup.oer5f                                           724      788       0       
           r5_startup.oer5f                                        460      0         0       
           boot.oer5f                                              252      0         0       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  1436     788       0       
                                                                                              
        C:/ti/pdk_am65xx_08_02_00_21/packages/ti/drv/enet/lib/am65xx/mcu1_0/debug/enetphy.aer5f
           enetphy.oer5f                                           8784     3126      3655    
           dp83867.oer5f                                           3892     2186      40      
           vsc8514.oer5f                                           1532     498       42      
           dp83822.oer5f                                           924      529       40      
           generic_phy.oer5f                                       676      266       40      
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  15808    6605      3817    
                                                                                              
        C:/ti/pdk_am65xx_08_02_00_21/packages/ti/drv/enet/lib/am65xx/mcu1_0/debug/enetsoc.aer5f
           enet_soc.oer5f                                          2824     51963     1180048 
           j7x_soc.oer5f                                           544      14        0       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  3368     51977     1180048 
                                                                                              
        C:/ti/pdk_am65xx_08_02_00_21/packages/ti/drv/enet/lib/am65xx/r5f/debug/enet.aer5f
           enet_udma_priv.oer5f                                    11848    3039      299717  
           cpsw_ale.oer5f                                          30696    3953      577     
           icssg.oer5f                                             18260    5041      421     
           cpsw.oer5f                                              16296    4948      145     
           enet_udma.oer5f                                         12348    4079      1       
           cpsw_macport.oer5f                                      12492    3427      193     
           icssg_utils.oer5f                                       12464    2341      337     
           enet_rm.oer5f                                           9000     2541      145     
           enet.oer5f                                              5636     1696      1033    
           cpsw_cpts.oer5f                                         5440     1815      193     
           cpsw_intervlan.oer5f                                    4696     1978      1       
           cpsw_hostport.oer5f                                     4048     1359      37      
           mdio.oer5f                                              3576     1173      13      
           cpsw_stats.oer5f                                        2888     946       85      
           cpsw_macport_intervlan.oer5f                            2532     1094      1       
           enet_phymdio_dflt.oer5f                                 2592     841       24      
           enet_osal.oer5f                                         1904     941       61      
           icssg_timesync.oer5f                                    1716     898       1       
           icssg_tas.oer5f                                         1760     346       1       
           enet_queue.oer5f                                        1120     449       1       
           enet_osal_dflt.oer5f                                    740      28        320     
           enet_utils.oer5f                                        712      146       217     
           enet_hostport_udma.oer5f                                840      201       1       
           icssg_stats.oer5f                                       580      329       0       
           enet_trace.oer5f                                        56       0         1       
           enet_utils_dflt.oer5f                                   52       0         0       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  164292   43609     303526  
                                                                                              
        C:/ti/pdk_am65xx_08_02_00_21/packages/ti/drv/enet/lib/am65xx_idk/mcu1_0/debug/enet_example_utils_full_freertos.aer5f
           enet_appmemutils.oer5f                                  2176     660       32535638
           enet_udmautils.oer5f                                    2768     592       17985   
           enet_apputils.oer5f                                     5140     8342      2       
           enet_apputils_k3.oer5f                                  1740     285       1       
           enet_board_am65xevm.oer5f                               1108     874       1       
           enet_ioctlutils.oer5f                                   644      360       1       
           enet_apprmcfg.oer5f                                     88       288       372     
           enet_board_am65xevm_pinmux_data.oer5f                   0        0         520     
           enet_appsoc.oer5f                                       204      87        1       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  13868    11488     32554521
                                                                                              
        C:/ti/pdk_am65xx_08_02_00_21/packages/ti/drv/pm/lib/am65xx/r5f/debug/pm_lib.aer5f
           pmlib_clkrate.oer5f                                     676      0         0       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  676      0         0       
                                                                                              
        C:/ti/pdk_am65xx_08_02_00_21/packages/ti/drv/pruss/lib/am65xx/r5f/debug/ti.drv.pruss.aer5f
           pruicss_soc.oer5f                                       0        0         948     
           pruicss_drv.oer5f                                       928      0         0       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  928      0         948     
                                                                                              
        C:/ti/pdk_am65xx_08_02_00_21/packages/ti/drv/sciclient/lib/am65xx/mcu1_0/debug/sciclient.aer5f
           sciclient_rm_irq.oer5f                                  10280    0         40      
           sciclient_irq_rm.oer5f                                  0        4648      996     
           sciclient.oer5f                                         2928     12        94      
           sciclient_pm.oer5f                                      2316     0         0       
           sciclient_rm.oer5f                                      1844     0         0       
           sciclient_secureproxy.oer5f                             548      0         0       
           sciclient_fmwSecureProxyMap.oer5f                       0        544       0       
           sciclient_secureProxyCfg.oer5f                          0        0         32      
           sciclient_indirect.oer5f                                20       0         0       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  17936    5204      1162    
                                                                                              
        C:/ti/pdk_am65xx_08_02_00_21/packages/ti/drv/uart/lib/am65xx/r5f/debug/ti.drv.uart.aer5f
           UART_v1.oer5f                                           4728     88        0       
           UART_stdio.oer5f                                        1540     25        8       
           UART_soc.oer5f                                          4        0         768     
           UART_drv.oer5f                                          236      44        4       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  6508     157       780     
                                                                                              
        C:/ti/pdk_am65xx_08_02_00_21/packages/ti/drv/udma/lib/am65xx/mcu1_0/debug/udma.aer5f
           udma_rm.oer5f                                           14324    3282      0       
           udma_ch.oer5f                                           10140    3880      0       
           udma_event.oer5f                                        6692     2830      0       
           udma_ring_common.oer5f                                  4312     1951      0       
           udma_flow.oer5f                                         2036     480       0       
           udma_ring_normal.oer5f                                  1308     173       0       
           udma.oer5f                                              1012     401       0       
           udma_proxy.oer5f                                        868      221       0       
           udma_soc.oer5f                                          944      0         0       
           udma_rmcfg.oer5f                                        84       336       96      
           udma_osal.oer5f                                         428      0         8       
           udma_utils.oer5f                                        352      8         0       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  42500    13562     104     
                                                                                              
        C:/ti/pdk_am65xx_08_02_00_21/packages/ti/kernel/lib/am65xx/mcu1_0/debug/ti.kernel.freertos.aer5f
           port.oer5f                                              1080     85        5444    
           tasks.oer5f                                             5556     103       492     
           queue.oer5f                                             4196     94        256     
           timers.oer5f                                            2156     108       396     
           port_Hwi.oer5f                                          944      0         0       
           portASM.oer5f                                           604      0         0       
           heap_4.oer5f                                            348      112       21      
           list.oer5f                                              260      0         0       
           port_Hwi_handlers_asm.oer5f                             64       0         0       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  15208    502       6609    
                                                                                              
        C:/ti/pdk_am65xx_08_02_00_21/packages/ti/osal/lib/freertos/am65xx/r5f/debug/ti.osal.aer5f
           SemaphoreP_freertos.oer5f                               1040     73        7120    
           TaskP_freertos.oer5f                                    880      232       3448    
           TimerP_nonos.oer5f                                      2872     34        358     
           MutexP_freertos.oer5f                                   680      31        1840    
           ClockP_freertos.oer5f                                   920      0         1208    
           LoadP_freertos.oer5f                                    500      0         513     
           Arch_util.oer5f                                         628      48        327     
           HwiP_freertos.oer5f                                     328      29        0       
           RegisterIntr_nonos.oer5f                                268      0         0       
           Utils_freertos.oer5f                                    120      0         65      
           TimerP_default.oer5f                                    28       36        64      
           DebugP_nonos.oer5f                                      40       0         0       
           CacheP_nonos.oer5f                                      36       0         0       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  8340     483       14943   
                                                                                              
        C:\ti\ti-cgt-armllvm_1.3.0.LTS\lib\armv7r-ti-none-eabihf/c/libc.a
           _printfi.c.obj                                          6212     34        0       
           memory.c.obj                                            1164     0         5       
           fputs.c.obj                                             420      0         0       
           defs.c.obj                                              0        0         404     
           setvbuf.c.obj                                           328      0         0       
           s_scalbn.c.obj                                          320      0         0       
           getdevice.c.obj                                         312      0         0       
           fflush.c.obj                                            300      0         0       
           aeabi_ctype.S.obj                                       0        257       0       
           snprintf.c.obj                                          252      0         0       
           vsnprintf.c.obj                                         236      0         0       
           aeabi_portable.c.obj                                    148      69        4       
           fclose.c.obj                                            180      0         0       
           fseek.c.obj                                             176      0         0       
           copy_decompress_lzss.c.obj                              172      0         0       
           _io_perm.c.obj                                          152      0         0       
           sprintf.c.obj                                           152      0         0       
           _ltoa.c.obj                                             136      0         0       
           s_frexp.c.obj                                           124      0         0       
           atoi.c.obj                                              108      0         0       
           exit.c.obj                                              100      0         8       
           autoinit.c.obj                                          100      0         0       
           fopen.c.obj                                             84       0         0       
           rand.c.obj                                              76       0         4       
           memccpy.c.obj                                           72       0         0       
           args_main.c.obj                                         40       0         0       
           assert.c.obj                                            32       0         0       
           wcslen.c.obj                                            32       0         0       
           copy_zero_init.c.obj                                    24       0         0       
           copy_decompress_none.c.obj                              20       0         0       
           _lock.c.obj                                             4        0         8       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  11476    360       433     
                                                                                              
        C:\ti\ti-cgt-armllvm_1.3.0.LTS\lib\armv7r-ti-none-eabihf/c/libsysbm.a
           trgmsg.c.obj                                            176      0         288     
           memcpy32.S.obj                                          384      0         0       
           hostrename.c.obj                                        208      0         0       
           host_device.c.obj                                       0        0         200     
           memset32.S.obj                                          160      0         0       
           hostopen.c.obj                                          148      0         8       
           hostlseek.c.obj                                         152      0         0       
           close.c.obj                                             132      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       
           remove.c.obj                                            4        0         0       
        +--+-------------------------------------------------------+--------+---------+----------+
           Total:                                                  2008     0         496     
                                                                                              
        C:\ti\ti-cgt-armllvm_1.3.0.LTS\lib\clang/12.0.1/lib/armv7r-ti-none-eabihf/libclang_rt.builtins.a
           udivsi3.S.obj                                           464      0         0       
           udivmoddi4.S.obj                                        280      0         0       
           divsi3.S.obj                                            44       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:                                                  864      0         0       
                                                                                              
           Heap:                                                   0        0         32768   
           Stack:                                                  0        0         16384   
           Linker Generated:                                       0        7536      0       
        +--+-------------------------------------------------------+--------+---------+----------+
           Grand Total:                                            359012   147226    34246614
    
    
    LINKER GENERATED COPY TABLES
    
    __TI_cinit_table @ 7014f150 records: 2, size/record: 8, table size: 16
    	.data: load addr=7014d3f0, load size=00001d4c bytes, run addr=7012cf00, run size=00018000 bytes, compression=lzss
    	.bss: load addr=7014f148, load size=00000008 bytes, run addr=81faa580, run size=00029988 bytes, compression=zero_init
    
    
    LINKER GENERATED HANDLER TABLE
    
    __TI_handler_table @ 7014f13c records: 3, size/record: 4, table size: 12
    	index: 0, handler: __TI_zero_init
    	index: 1, handler: __TI_decompress_lzss
    	index: 2, handler: __TI_decompress_none
    
    
    FAR CALL TRAMPOLINES
    
    callee name               trampoline name
       callee addr  tramp addr   call addr  call info
    --------------  -----------  ---------  ----------------
    exit                      $Tramp$AA$L$PI$$exit
       81f56e68     41c3f9b4     41c3f99c   ti.csl.init.aer5f : boot.oer5f (.bootCode)
    _args_main                $Tramp$AA$L$PI$$_args_main
       81f5e4c0     41c3f9bc     41c3f994   ti.csl.init.aer5f : boot.oer5f (.bootCode)
    __TI_auto_init_nobinit_nopinit  $Tramp$AA$L$PI$$__TI_auto_init_nobinit_nopinit
       81f55bec     41c3f9c4     41c3f990   ti.csl.init.aer5f : boot.oer5f (.bootCode)
    CSL_REG32_WR_RAW          $Tramp$AA$L$PI$$CSL_REG32_WR_RAW
       81f60e90     41c3f590     41c3f30c   ti.csl.init.aer5f : startup.oer5f (.startupCode)
                                 41c3f360                     : startup.oer5f (.startupCode)
    vPortRestoreTaskContext   $Tramp$AA$L$PI$$vPortRestoreTaskContext
       7014d164     81f0db48     81f5a064   ti.kernel.freertos.aer5f : port.oer5f (.text.xPortStartScheduler)
    CSL_vimAckIntr            $Tramp$AA$L$PI$$CSL_vimAckIntr
       81f59870     7014d3b8     7014cfc0   ti.kernel.freertos.aer5f : port_Hwi.oer5f (.text.hwi)
                                 7014d068                            : port_Hwi.oer5f (.text.hwi)
    CSL_armR5IntrEnableFiq    $Tramp$AA$L$PI$$CSL_armR5IntrEnableFiq
       81f1d860     7014d3c0     7014cf88   ti.kernel.freertos.aer5f : port_Hwi.oer5f (.text.hwi)
                                 7014cfa0                            : port_Hwi.oer5f (.text.hwi)
    CSL_vimClrIntrPending     $Tramp$AA$L$PI$$CSL_vimClrIntrPending
       81f567c0     7014d3c8     7014cf64   ti.kernel.freertos.aer5f : port_Hwi.oer5f (.text.hwi)
                                 7014cfb4                            : port_Hwi.oer5f (.text.hwi)
                                 7014d020                            : port_Hwi.oer5f (.text.hwi)
                                 7014d05c                            : port_Hwi.oer5f (.text.hwi)
    CSL_vimGetIntrType        $Tramp$AA$L$PI$$CSL_vimGetIntrType
       81f56820     7014d3d0     7014cf4c   ti.kernel.freertos.aer5f : port_Hwi.oer5f (.text.hwi)
                                 7014d008                            : port_Hwi.oer5f (.text.hwi)
    CSL_vimGetActivePendingIntr  $Tramp$AA$L$PI$$CSL_vimGetActivePendingIntr
       81f4f3a0     7014d3d8     7014cf38   ti.kernel.freertos.aer5f : port_Hwi.oer5f (.text.hwi)
                                 7014cff4                            : port_Hwi.oer5f (.text.hwi)
    CSL_vimGetFiqVectorAddress  $Tramp$AA$L$PI$$CSL_vimGetFiqVectorAddress
       81f5e800     7014d3e0     7014cf20   ti.kernel.freertos.aer5f : port_Hwi.oer5f (.text.hwi)
    
    [11 trampolines]
    [19 trampoline calls]
    
    
    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name 
    
    address   name                                                                                                       
    -------   ----                                                                                                       
    81f23fd0  Board_DDRInit                                                                                              
    81f5f320  Board_PLLInit                                                                                              
    81f4b7a0  Board_PLLInitAll                                                                                           
    81f60b80  Board_getNumClkConfigs                                                                                     
    81f25c10  Board_icssEthConfig                                                                                        
    81f3e920  Board_init                                                                                                 
    81f5e560  Board_isSocPG1                                                                                             
    81f2e9c0  Board_mcuEthConfig                                                                                         
    81f4c490  Board_moduleClockEnable                                                                                    
    81f548d0  Board_moduleClockInit                                                                                      
    81f5c3d0  Board_pinmuxConfig                                                                                         
    81f36a70  Board_pinmuxUpdate                                                                                         
    81f58720  Board_serdesCfg                                                                                            
    81f2d520  Board_twoLanePcieSerdesCfg                                                                                 
    81f5f340  Board_uartStdioInit                                                                                        
    81f44a10  Board_unlockMMR                                                                                            
    81f0ba74  C$$EXIT                                                                                                    
    81f5634c  C$$IO$$                                                                                                    
    81f5ebf0  CSL_CPGMAC_SL_disableCastagnoliCRC                                                                         
    81f5ec10  CSL_CPGMAC_SL_disableLoopback                                                                              
    81f5ec30  CSL_CPGMAC_SL_disableTxShortGap                                                                            
    81f5ec50  CSL_CPGMAC_SL_disableTxShortGapLimit                                                                       
    81f5ec70  CSL_CPGMAC_SL_enableCastagnoliCRC                                                                          
    81f5ec90  CSL_CPGMAC_SL_enableIdleMode                                                                               
    81f5ecb0  CSL_CPGMAC_SL_enableLoopback                                                                               
    81f5ecd0  CSL_CPGMAC_SL_enableTxShortGap                                                                             
    81f5ecf0  CSL_CPGMAC_SL_enableTxShortGapLimit                                                                        
    81f58770  CSL_CPGMAC_SL_getFifoStatus                                                                                
    81f3c8c0  CSL_CPGMAC_SL_getInterVLANCfg                                                                              
    81f5ffd0  CSL_CPGMAC_SL_getMacControlReg                                                                             
    81f4efa0  CSL_CPGMAC_SL_getMacStatusReg                                                                              
    81f5f360  CSL_CPGMAC_SL_getRxMaxLen                                                                                  
    81f5f380  CSL_CPGMAC_SL_getTxGap                                                                                     
    81f5f3a0  CSL_CPGMAC_SL_isGMIIEnabled                                                                                
    81f5ed10  CSL_CPGMAC_SL_isMACResetDone                                                                               
    81f5f3c0  CSL_CPGMAC_SL_isTxShortGapEnabled                                                                          
    81f5f3e0  CSL_CPGMAC_SL_isTxShortGapLimitEnabled                                                                     
    81f5ed30  CSL_CPGMAC_SL_resetMac                                                                                     
    81f2eb40  CSL_CPGMAC_SL_setInterVLANCfg                                                                              
    81f5ffe0  CSL_CPGMAC_SL_setMacControlReg                                                                             
    81f5ed50  CSL_CPGMAC_SL_setRxMaxLen                                                                                  
    81f5ed70  CSL_CPGMAC_SL_setTxGap                                                                                     
    81f5ba10  CSL_CPSW_SS_getQSGMIIStatusRxSync                                                                          
    81f4a9f0  CSL_CPSW_SS_getRGMIIStatus                                                                                 
    81f5ba40  CSL_CPSW_SS_getXGMIILinkStatus                                                                             
    81f5a070  CSL_CPSW_SS_setQSGMIIControlRdCd                                                                           
    81f5e580  CSL_CPSW_SS_setSGMIIMode                                                                                   
    81f5e200  CSL_CPSW_clearAleEntry                                                                                     
    81f5fff0  CSL_CPSW_clearAleTable                                                                                     
    81f60000  CSL_CPSW_disableAleBypass                                                                                  
    81f5f400  CSL_CPSW_disableAlePolicerThread                                                                           
    81f60010  CSL_CPSW_disableAleRateLimit                                                                               
    81f60020  CSL_CPSW_disableAleTxRateLimit                                                                             
    81f60030  CSL_CPSW_disableAleVlanAware                                                                               
    81f60040  CSL_CPSW_disableP0TxCastagnoliCRC                                                                          
    81f60050  CSL_CPSW_disablePort0                                                                                      
    81f5d680  CSL_CPSW_disablePortPassPriTag                                                                             
    81f60060  CSL_CPSW_disableVlanAware                                                                                  
    81f60070  CSL_CPSW_enableAleBypass                                                                                   
    81f60080  CSL_CPSW_enableAleRateLimit                                                                                
    81f60090  CSL_CPSW_enableAleTxRateLimit                                                                              
    81f600a0  CSL_CPSW_enableAleVlanAware                                                                                
    81f600b0  CSL_CPSW_enableP0TxCastagnoliCRC                                                                           
    81f600c0  CSL_CPSW_enablePort0                                                                                       
    81f5d6b0  CSL_CPSW_enablePortPassPriTag                                                                              
    81f600d0  CSL_CPSW_enableVlanAware                                                                                   
    81f5ba70  CSL_CPSW_extractVid                                                                                        
    81f60b90  CSL_CPSW_extractVid_4G                                                                                     
    81f60ba0  CSL_CPSW_extractVid_9G                                                                                     
    81f5baa0  CSL_CPSW_getALEAddressType                                                                                 
    81f5bad0  CSL_CPSW_getALEAddressType_4G                                                                              
    81f5bb00  CSL_CPSW_getALEAddressType_9G                                                                              
    81f5bb30  CSL_CPSW_getALEEntryType                                                                                   
    81f5f420  CSL_CPSW_getALEEntryType_4G                                                                                
    81f5f440  CSL_CPSW_getALEEntryType_9G                                                                                
    81f5bb60  CSL_CPSW_getALEPolicerEntryType                                                                            
    81f5cc40  CSL_CPSW_getALEPolicerEntryType_4G                                                                         
    81f5cc70  CSL_CPSW_getALEPolicerEntryType_9G                                                                         
    81f60bb0  CSL_CPSW_getAleControlReg                                                                                  
    81f5d6e0  CSL_CPSW_getAleEthertypeEntry                                                                              
    81f5ed90  CSL_CPSW_getAleEthertypeEntry_4G                                                                           
    81f5edb0  CSL_CPSW_getAleEthertypeEntry_9G                                                                           
    81f5d710  CSL_CPSW_getAleIPv4Entry                                                                                   
    81f58f30  CSL_CPSW_getAleIPv4Entry_4G                                                                                
    81f58f80  CSL_CPSW_getAleIPv4Entry_9G                                                                                
    81f5d740  CSL_CPSW_getAleIPv6Entry                                                                                   
    81f359d0  CSL_CPSW_getAleIPv6Entry_4G                                                                                
    81f35b00  CSL_CPSW_getAleIPv6Entry_9G                                                                                
    81f5f460  CSL_CPSW_getAleIPv6HighEntryIndex                                                                          
    81f5cca0  CSL_CPSW_getAleIPv6HighEntryOffset                                                                         
    81f60bc0  CSL_CPSW_getAleIPv6LowEntryIndex                                                                           
    81f5d770  CSL_CPSW_getAleMcastAddrEntry                                                                              
    81f4ff20  CSL_CPSW_getAleMcastAddrEntry_4G                                                                           
    81f4ffa0  CSL_CPSW_getAleMcastAddrEntry_9G                                                                           
    81f5edd0  CSL_CPSW_getAleOUIAddrEntry                                                                                
    81f5c400  CSL_CPSW_getAleOUIAddrEntry_4G                                                                             
    81f5d7a0  CSL_CPSW_getAleOutVlanEntry                                                                                
    81f54930  CSL_CPSW_getAleOutVlanEntry_4G                                                                             
    81f4f020  CSL_CPSW_getAleOutVlanEntry_9G                                                                             
    81f597f0  CSL_CPSW_getAlePolicerControlReg                                                                           
    81f25e20  CSL_CPSW_getAlePolicerEntry                                                                                
    81f5e5a0  CSL_CPSW_getAlePolicerGlobConfig                                                                           
    81f5e220  CSL_CPSW_getAlePolicerHstatReg                                                                             
    81f4a3d0  CSL_CPSW_getAlePortControlReg                                                                              
    81f5f480  CSL_CPSW_getAlePortState                                                                                   
    81f60620  CSL_CPSW_getAlePrescaleReg                                                                                 
    81f5e5c0  CSL_CPSW_getAleStatusNumAleEntries                                                                         
    81f5f4a0  CSL_CPSW_getAleStatusNumPolicers                                                                           
    81f5e5e0  CSL_CPSW_getAleStatusRamDepth                                                                              
    81f5e600  CSL_CPSW_getAleStatusVlanMask                                                                              
    81f5c430  CSL_CPSW_getAleTableEntry                                                                                  
    81f5d7d0  CSL_CPSW_getAleUnicastAddrEntry                                                                            
    81f4aa90  CSL_CPSW_getAleUnicastAddrEntry_4G                                                                         
    81f4ab30  CSL_CPSW_getAleUnicastAddrEntry_9G                                                                         
    81f5a8b0  CSL_CPSW_getAleUnkownVlanReg                                                                               
    81f5afb0  CSL_CPSW_getAleVersionInfo                                                                                 
    81f5d800  CSL_CPSW_getAleVlanEntry                                                                                   
    81f54990  CSL_CPSW_getAleVlanEntry_4G                                                                                
    81f4d830  CSL_CPSW_getAleVlanEntry_9G                                                                                
    81f5a8f0  CSL_CPSW_getAleVlanMaskMuxEntryReg                                                                         
    81f5d830  CSL_CPSW_getAleVlanMcastAddrEntry                                                                          
    81f4cd90  CSL_CPSW_getAleVlanMcastAddrEntry_4G                                                                       
    81f4ce20  CSL_CPSW_getAleVlanMcastAddrEntry_9G                                                                       
    81f5d860  CSL_CPSW_getAleVlanUnicastAddrEntry                                                                        
    81f48f30  CSL_CPSW_getAleVlanUnicastAddrEntry_4G                                                                     
    81f48fd0  CSL_CPSW_getAleVlanUnicastAddrEntry_9G                                                                     
    81f52e50  CSL_CPSW_getCppiP0Control                                                                                  
    81f5ccd0  CSL_CPSW_getCppiPriCirEir                                                                                  
    81f44ad0  CSL_CPSW_getCpswControlReg                                                                                 
    81f5aff0  CSL_CPSW_getCpswVersionInfo                                                                                
    81f5c460  CSL_CPSW_getEthertypeMax                                                                                   
    81f60bd0  CSL_CPSW_getEthertypeMax_4G                                                                                
    81f60be0  CSL_CPSW_getEthertypeMax_9G                                                                                
    81f60630  CSL_CPSW_getGapThreshold                                                                                   
    81f5c490  CSL_CPSW_getIpv4IgnBitsMax                                                                                 
    81f60bf0  CSL_CPSW_getIpv4IgnBitsMax_4G                                                                              
    81f60c00  CSL_CPSW_getIpv4IgnBitsMax_9G                                                                              
    81f5c4c0  CSL_CPSW_getIpv6IgnBitsMax                                                                                 
    81f60c10  CSL_CPSW_getIpv6IgnBitsMax_4G                                                                              
    81f60c20  CSL_CPSW_getIpv6IgnBitsMax_9G                                                                              
    81f57e60  CSL_CPSW_getP0FifoStatus                                                                                   
    81f50020  CSL_CPSW_getPTypeReg                                                                                       
    81f600e0  CSL_CPSW_getPort0FlowIdOffset                                                                              
    81f600f0  CSL_CPSW_getPort0RxMaxLen                                                                                  
    81f56580  CSL_CPSW_getPortBlockCountReg                                                                              
    81f55c50  CSL_CPSW_getPortControlReg                                                                                 
    81f5bb90  CSL_CPSW_getPortMaxBlksReg                                                                                 
    81f39f70  CSL_CPSW_getPortRxDscpMap                                                                                  
    81f4f0a0  CSL_CPSW_getPortRxPriMapReg                                                                                
    81f5c4f0  CSL_CPSW_getPortStats                                                                                      
    81f37650  CSL_CPSW_getPortTimeSyncConfig                                                                             
    81f4f120  CSL_CPSW_getPortTxPriMapReg                                                                                
    81f5bbc0  CSL_CPSW_getPriCirEir                                                                                      
    81f5e620  CSL_CPSW_getThruRateReg                                                                                    
    81f500a0  CSL_CPSW_getTxMaxLenPerPriority                                                                            
    81f60640  CSL_CPSW_getTxStartWords                                                                                   
    81f60100  CSL_CPSW_isAleAgeOutDone                                                                                   
    81f60650  CSL_CPSW_isAleBypassEnabled                                                                                
    81f60660  CSL_CPSW_isAleRateLimitEnabled                                                                             
    81f60670  CSL_CPSW_isAleTxRateLimitEnabled                                                                           
    81f60680  CSL_CPSW_isAleVlanAwareEnabled                                                                             
    81f60690  CSL_CPSW_isVlanAwareEnabled                                                                                
    81f5d890  CSL_CPSW_mapMacAddr2TableWord                                                                              
    81f525a0  CSL_CPSW_mapMacAddr2TableWord_4G                                                                           
    81f52610  CSL_CPSW_mapMacAddr2TableWord_9G                                                                           
    81f5d8c0  CSL_CPSW_mapTableWord2MacAddr                                                                              
    81f5c520  CSL_CPSW_mapTableWord2MacAddr_4G                                                                           
    81f5c550  CSL_CPSW_mapTableWord2MacAddr_9G                                                                           
    81f53cc0  CSL_CPSW_setAleAgingTimerReg                                                                               
    81f60c30  CSL_CPSW_setAleControlReg                                                                                  
    81f5c580  CSL_CPSW_setAleCtrl2IPPktFilterConfig                                                                      
    81f5c5b0  CSL_CPSW_setAleCtrl2MalformedFrameConfig                                                                   
    81f60110  CSL_CPSW_setAleCtrl2MirrorMatchIndex                                                                       
    81f4c520  CSL_CPSW_setAleCtrl2TrunkParams                                                                            
    81f5d8f0  CSL_CPSW_setAleEthertypeEntry                                                                              
    81f565e0  CSL_CPSW_setAleEthertypeEntry_4G                                                                           
    81f56640  CSL_CPSW_setAleEthertypeEntry_9G                                                                           
    81f587c0  CSL_CPSW_setAleIPNxtHdrWhitelist                                                                           
    81f5d920  CSL_CPSW_setAleIPv4Entry                                                                                   
    81f3b630  CSL_CPSW_setAleIPv4Entry_4G                                                                                
    81f3b740  CSL_CPSW_setAleIPv4Entry_9G                                                                                
    81f5d950  CSL_CPSW_setAleIPv6Entry                                                                                   
    81f201a0  CSL_CPSW_setAleIPv6Entry_4G                                                                                
    81f20430  CSL_CPSW_setAleIPv6Entry_9G                                                                                
    81f5d980  CSL_CPSW_setAleMcastAddrEntry                                                                              
    81f3d6c0  CSL_CPSW_setAleMcastAddrEntry_4G                                                                           
    81f3d7c0  CSL_CPSW_setAleMcastAddrEntry_9G                                                                           
    81f60120  CSL_CPSW_setAleOAMLpbkControl                                                                              
    81f5d9b0  CSL_CPSW_setAleOUIAddrEntry                                                                                
    81f4f1a0  CSL_CPSW_setAleOUIAddrEntry_4G                                                                             
    81f4f220  CSL_CPSW_setAleOUIAddrEntry_9G                                                                             
    81f5d9e0  CSL_CPSW_setAleOutVlanEntry                                                                                
    81f465d0  CSL_CPSW_setAleOutVlanEntry_4G                                                                             
    81f3dfc0  CSL_CPSW_setAleOutVlanEntry_9G                                                                             
    81f55cb0  CSL_CPSW_setAlePolicerControlReg                                                                           
    81f2d6c0  CSL_CPSW_setAlePolicerEntry                                                                                
    81f5cd00  CSL_CPSW_setAlePolicerGlobConfig                                                                           
    81f5a930  CSL_CPSW_setAlePolicerTestControlReg                                                                       
    81f42c00  CSL_CPSW_setAlePortControlReg                                                                              
    81f5da70  CSL_CPSW_setAlePortControlTrunk                                                                            
    81f5edf0  CSL_CPSW_setAlePortMirrorSouce                                                                             
    81f5f500  CSL_CPSW_setAlePortState                                                                                   
    81f60130  CSL_CPSW_setAlePrescaleReg                                                                                 
    81f5daa0  CSL_CPSW_setAleUnicastAddrEntry                                                                            
    81f3bfc0  CSL_CPSW_setAleUnicastAddrEntry_4G                                                                         
    81f3c0c0  CSL_CPSW_setAleUnicastAddrEntry_9G                                                                         
    81f60140  CSL_CPSW_setAleUnknwnVlanMemberReg                                                                         
    81f60150  CSL_CPSW_setAleUnknwnVlanRegMcastReg                                                                       
    81f60160  CSL_CPSW_setAleUnknwnVlanUnregMcastReg                                                                     
    81f60170  CSL_CPSW_setAleUnknwnVlanUntagReg                                                                          
    81f5dad0  CSL_CPSW_setAleVlanEntry                                                                                   
    81f46690  CSL_CPSW_setAleVlanEntry_4G                                                                                
    81f3e0b0  CSL_CPSW_setAleVlanEntry_9G                                                                                
    81f5cd30  CSL_CPSW_setAleVlanMaskMuxEntryReg                                                                         
    81f5db00  CSL_CPSW_setAleVlanMcastAddrEntry                                                                          
    81f3c1c0  CSL_CPSW_setAleVlanMcastAddrEntry_4G                                                                       
    81f3c2c0  CSL_CPSW_setAleVlanMcastAddrEntry_9G                                                                       
    81f5db30  CSL_CPSW_setAleVlanUnicastAddrEntry                                                                        
    81f3a970  CSL_CPSW_setAleVlanUnicastAddrEntry_4G                                                                     
    81f3aa80  CSL_CPSW_setAleVlanUnicastAddrEntry_9G                                                                     
    81f4c5b0  CSL_CPSW_setCppiP0Control                                                                                  
    81f5bbf0  CSL_CPSW_setCppiPriCirEir                                                                                  
    81f3d8c0  CSL_CPSW_setCpswControlReg                                                                                 
    81f60180  CSL_CPSW_setGapThreshold                                                                                   
    81f482e0  CSL_CPSW_setPTypeReg                                                                                       
    81f5f520  CSL_CPSW_setPort0FlowIdOffset                                                                              
    81f5f540  CSL_CPSW_setPort0RxMaxLen                                                                                  
    81f5c5e0  CSL_CPSW_setPort0VlanReg                                                                                   
    81f4f2a0  CSL_CPSW_setPortControlReg                                                                                 
    81f30450  CSL_CPSW_setPortRxDscpMap                                                                                  
    81f48860  CSL_CPSW_setPortRxPriMapReg                                                                                
    81f4a470  CSL_CPSW_setPortStatsEnableReg                                                                             
    81f31870  CSL_CPSW_setPortTimeSyncConfig                                                                             
    81f48910  CSL_CPSW_setPortTxPriMapReg                                                                                
    81f58fd0  CSL_CPSW_setPortVlanReg                                                                                    
    81f5b030  CSL_CPSW_setPriCirEir                                                                                      
    81f50120  CSL_CPSW_setTxMaxLenPerPriority                                                                            
    81f5e640  CSL_CPSW_setVlanLTypeReg                                                                                   
    81f60190  CSL_CPSW_setVlanType                                                                                       
    81f601a0  CSL_CPSW_startAleAgeOutNow                                                                                 
    81f5e660  CSL_CPTS_TSEventPush                                                                                       
    81f5e680  CSL_CPTS_disableCpts                                                                                       
    81f5e6a0  CSL_CPTS_disableInterrupt                                                                                  
    81f5e6c0  CSL_CPTS_enableCpts                                                                                        
    81f5e6e0  CSL_CPTS_enableInterrupt                                                                                   
    81f489c0  CSL_CPTS_getCntlReg                                                                                        
    81f5bc20  CSL_CPTS_getCptsVersionInfo                                                                                
    81f5a970  CSL_CPTS_getESTFnLength                                                                                    
    81f509a0  CSL_CPTS_getEventInfo                                                                                      
    81f5a9b0  CSL_CPTS_getGENFnLength                                                                                    
    81f5a0b0  CSL_CPTS_getTSAddVal                                                                                       
    81f5a9f0  CSL_CPTS_getTSPpm                                                                                          
    81f5ee10  CSL_CPTS_isRawInterruptStatusBitSet                                                                        
    81f5e700  CSL_CPTS_popEvent                                                                                          
    81f441f0  CSL_CPTS_setCntlReg                                                                                        
    81f5bc50  CSL_CPTS_setESTFnNudge                                                                                     
    81f5bc80  CSL_CPTS_setGENFnNudge                                                                                     
    81f5e720  CSL_CPTS_setRFTCLKSelectReg                                                                                
    81f59830  CSL_CPTS_setTSAddVal                                                                                       
    81f5e740  CSL_CPTS_setTSCompNudge                                                                                    
    81f52680  CSL_CPTS_setTSCompVal                                                                                      
    81f5a0f0  CSL_CPTS_setTSNudge                                                                                        
    81f57eb0  CSL_CPTS_setTSPpm                                                                                          
    81f57f00  CSL_CPTS_setTSVal                                                                                          
    81f48a70  CSL_CPTS_setupESTFn                                                                                        
    81f48b20  CSL_CPTS_setupGENFn                                                                                        
    81f5f560  CSL_MDIO_clearUnmaskedLinkStatusChangeInt                                                                  
    81f601b0  CSL_MDIO_disableLinkStatusChangeInterrupt                                                                  
    81f601c0  CSL_MDIO_disableStateChangeMode                                                                            
    81f601d0  CSL_MDIO_disableStateMachine                                                                               
    81f601e0  CSL_MDIO_disableStatusChangeModeInterrupt                                                                  
    81f5f580  CSL_MDIO_enableLinkStatusChangeInterrupt                                                                   
    81f601f0  CSL_MDIO_enableStateChangeMode                                                                             
    81f60200  CSL_MDIO_enableStateMachine                                                                                
    81f60210  CSL_MDIO_enableStatusChangeModeInterrupt                                                                   
    81f60c40  CSL_MDIO_getClause45EnableMask                                                                             
    81f60220  CSL_MDIO_getLinkStatusChangePhyAddr                                                                        
    81f60c50  CSL_MDIO_getPollEnableMask                                                                                 
    81f57f50  CSL_MDIO_getVersionInfo                                                                                    
    81f60230  CSL_MDIO_isPhyAlive                                                                                        
    81f60240  CSL_MDIO_isPhyLinked                                                                                       
    81f5f5a0  CSL_MDIO_isPhyRegAccessComplete                                                                            
    81f606a0  CSL_MDIO_isStateChangeModeEnabled                                                                          
    81f60250  CSL_MDIO_isUnmaskedLinkStatusChangeIntSet                                                                  
    81f5bcb0  CSL_MDIO_phyGetRegReadVal                                                                                  
    81f566a0  CSL_MDIO_phyInitiateRegReadC45                                                                             
    81f551d0  CSL_MDIO_phyInitiateRegWriteC45                                                                            
    81f55d10  CSL_MDIO_phyRegRead2                                                                                       
    81f56f10  CSL_MDIO_phyRegWrite2                                                                                      
    81f60c60  CSL_MDIO_setClause45EnableMask                                                                             
    81f5f5c0  CSL_MDIO_setClkDivVal                                                                                      
    81f606b0  CSL_MDIO_setPollEnableMask                                                                                 
    81f5f5e0  CSL_MDIO_setPollIPG                                                                                        
    81f5f620  CSL_SGMII_DisableTestPattern                                                                               
    81f5f640  CSL_SGMII_disableAutoNegotiation                                                                           
    81f5f660  CSL_SGMII_disableLoopback                                                                                  
    81f5f680  CSL_SGMII_disableMasterMode                                                                                
    81f5f6a0  CSL_SGMII_enableAutoNegotiation                                                                            
    81f5f6c0  CSL_SGMII_enableLoopback                                                                                   
    81f5f6e0  CSL_SGMII_enableMasterMode                                                                                 
    81f5f700  CSL_SGMII_endRxTxSoftReset                                                                                 
    81f5c610  CSL_SGMII_getAdvAbility                                                                                    
    81f5c640  CSL_SGMII_getLinkPartnerAdvAbility                                                                         
    81f602f0  CSL_SGMII_getRxTxSoftResetStatus                                                                           
    81f60300  CSL_SGMII_getSerdesPLLLockStatus                                                                           
    81f5aa30  CSL_SGMII_getStatus                                                                                        
    81f5b070  CSL_SGMII_getVersionInfo                                                                                   
    81f60310  CSL_SGMII_isAutoNegotiationEnabled                                                                         
    81f60320  CSL_SGMII_isMasterModeEnabled                                                                              
    81f549f0  CSL_SGMII_setAdvAbility                                                                                    
    81f5f720  CSL_SGMII_startRxTxSoftReset                                                                               
    81f1d9f8  CSL_armR5CacheCleanDcacheMva                                                                               
    81f1da08  CSL_armR5CacheCleanDcacheSetWay                                                                            
    81f1da2c  CSL_armR5CacheCleanInvalidateDcacheMva                                                                     
    81f1da34  CSL_armR5CacheCleanInvalidateDcacheSetWay                                                                  
    81f1da78  CSL_armR5CacheDisableEcc                                                                                   
    81f1d95c  CSL_armR5CacheEnableAllCache                                                                               
    81f1daac  CSL_armR5CacheEnableAxiAccess                                                                              
    81f1d8f4  CSL_armR5CacheEnableDCache                                                                                 
    81f1da58  CSL_armR5CacheEnableForceWrThru                                                                            
    81f1d8c4  CSL_armR5CacheEnableICache                                                                                 
    81f1d940  CSL_armR5CacheGetDcacheLineSize                                                                            
    81f1d924  CSL_armR5CacheGetIcacheLineSize                                                                            
    81f58810  CSL_armR5CacheInv                                                                                          
    81f1d9a0  CSL_armR5CacheInvalidateAllCache                                                                           
    81f1d988  CSL_armR5CacheInvalidateAllDcache                                                                          
    81f1d970  CSL_armR5CacheInvalidateAllIcache                                                                          
    81f1d9c4  CSL_armR5CacheInvalidateDcacheMva                                                                          
    81f1d9d4  CSL_armR5CacheInvalidateDcacheSetWay                                                                       
    81f1d9b4  CSL_armR5CacheInvalidateIcacheMva                                                                          
    81f58860  CSL_armR5CacheWb                                                                                           
    81f588b0  CSL_armR5CacheWbInv                                                                                        
    81f1dad8  CSL_armR5DisableIrqFiq                                                                                     
    81f1d830  CSL_armR5Dsb                                                                                               
    81f1daec  CSL_armR5EnableIrqFiq                                                                                      
    81f1d838  CSL_armR5FpuEnable                                                                                         
    81f1dac8  CSL_armR5GetCpsrRegVal                                                                                     
    81f5e240  CSL_armR5GetCpuID                                                                                          
    81f1d860  CSL_armR5IntrEnableFiq                                                                                     
    81f1d880  CSL_armR5IntrEnableIrq                                                                                     
    81f1d8a0  CSL_armR5IntrEnableVic                                                                                     
    41c3f100  CSL_armR5MPUCfg                                                                                            
    81f1dabc  CSL_armR5ReadMpidrReg                                                                                      
    41c3f578  CSL_armR5SetDLFOBit                                                                                        
    41c3f3c4  CSL_armR5StartupCacheEnableAllCache                                                                        
    41c3f428  CSL_armR5StartupCacheEnableDCache                                                                          
    41c3f3d8  CSL_armR5StartupCacheEnableForceWrThru                                                                     
    41c3f3f8  CSL_armR5StartupCacheEnableICache                                                                          
    41c3f488  CSL_armR5StartupCacheInvalidateAllCache                                                                    
    41c3f470  CSL_armR5StartupCacheInvalidateAllDcache                                                                   
    41c3f458  CSL_armR5StartupCacheInvalidateAllIcache                                                                   
    41c3f4ec  CSL_armR5StartupFpuEnable                                                                                  
    41c3f2a0  CSL_armR5StartupGetCpuID                                                                                   
    41c3f538  CSL_armR5StartupIntrEnableFiq                                                                              
    41c3f558  CSL_armR5StartupIntrEnableIrq                                                                              
    41c3f514  CSL_armR5StartupIntrEnableVic                                                                              
    41c3f4c4  CSL_armR5StartupMpuCfgRegion                                                                               
    41c3f49c  CSL_armR5StartupMpuEnable                                                                                  
    41c3f4e0  CSL_armR5StartupReadMpidrReg                                                                               
    81f5aa70  CSL_druChEnable                                                                                            
    81f59020  CSL_druChIsTeardownComplete                                                                                
    81f5b0b0  CSL_druChSetEvent                                                                                          
    81f5aab0  CSL_druChTeardown                                                                                          
    81f53d30  CSL_intaggrClrIntr                                                                                         
    81f56700  CSL_intaggrGetCfg                                                                                          
    81f52ec0  CSL_intaggrIsIntrPending                                                                                   
    81f48390  CSL_intaggrSetIntrEnable                                                                                   
    81f49070  CSL_proxyCfgThread                                                                                         
    81f5e7e0  CSL_proxyGetDataAddr                                                                                       
    81f5f740  CSL_proxyGetNumThreads                                                                                     
    81f5a170  CSL_ringaccAckRspRing                                                                                      
    81f50a20  CSL_ringaccGetCmdRingPtr                                                                                   
    81f5b0f0  CSL_ringaccGetRingHwOcc                                                                                    
    81f5b130  CSL_ringaccGetRingOcc                                                                                      
    81f50aa0  CSL_ringaccGetRspRingPtr                                                                                   
    81f5ee50  CSL_ringaccInitRingObj                                                                                     
    81f47100  CSL_ringaccPop64                                                                                           
    81f47680  CSL_ringaccPush64                                                                                          
    81f5f780  CSL_secProxyGetDataAddr                                                                                    
    81f55d70  CSL_serdesCycleDelay                                                                                       
    81f56760  CSL_serdesDisablePllAndLanes                                                                               
    81f5db60  CSL_serdesEnableLanes                                                                                      
    81f51c00  CSL_serdesGetLaneStatus                                                                                    
    81f60340  CSL_serdesGetPLLStatus                                                                                     
    81f206c0  CSL_serdesLaneEnable                                                                                       
    81f55dd0  CSL_serdesPCIeInit                                                                                         
    81f57fa0  CSL_serdesPllEnable                                                                                        
    81f5ab30  CSL_serdesPorReset                                                                                         
    81f24430  CSL_serdesSetLaneRate                                                                                      
    81f4f320  CSL_serdesSetLoopback                                                                                      
    81f60350  CSL_serdesWaitForCMUOK                                                                                     
    41c3f320  CSL_startupVimClrIntrPending                                                                               
    41c3f2c0  CSL_startupVimSetIntrEnable                                                                                
    81f5eed0  CSL_udmapDisableTxChan                                                                                     
    81f51420  CSL_udmapGetCfg                                                                                            
    81f5ce20  CSL_udmapGetChanPeerReg                                                                                    
    81f59070  CSL_udmapGetRxRT                                                                                           
    81f590c0  CSL_udmapGetTxRT                                                                                           
    81f5ceb0  CSL_udmapSetChanPeerReg                                                                                    
    81f5ab70  CSL_udmapSetRxRT                                                                                           
    81f5abb0  CSL_udmapSetTxRT                                                                                           
    81f5db90  CSL_udmapTeardownRxChan                                                                                    
    81f5dbc0  CSL_udmapTeardownTxChan                                                                                    
    81f59870  CSL_vimAckIntr                                                                                             
    81f3cec0  CSL_vimCfgIntr                                                                                             
    81f567c0  CSL_vimClrIntrPending                                                                                      
    81f4f3a0  CSL_vimGetActivePendingIntr                                                                                
    81f5e800  CSL_vimGetFiqVectorAddress                                                                                 
    81f56820  CSL_vimGetIntrType                                                                                         
    81f54a50  CSL_vimSetIntrEnable                                                                                       
    81f60710  CacheP_Inv                                                                                                 
    81f60720  CacheP_wb                                                                                                  
    81f60730  CacheP_wbInv                                                                                               
    81f5e280  ClockP_Params_init                                                                                         
    81f2d860  ClockP_create                                                                                              
    81f501a0  ClockP_delete                                                                                              
    81f48bd0  ClockP_start                                                                                               
    81f4abd0  ClockP_stop                                                                                                
    81f5cee0  ClockP_timerCallbackFunction                                                                               
    81f5dbf0  CpswAle_clearGlobalPolicerStats                                                                            
    81f53e10  CpswAle_close                                                                                              
    81f491b0  CpswAle_initCfg                                                                                            
    81f082d0  CpswAle_ioctl                                                                                              
    81f1acd0  CpswAle_open                                                                                               
    81f60fe0  CpswAle_rejoin                                                                                             
    81f60410  CpswCpts_close                                                                                             
    81f5f7e0  CpswCpts_initCfg                                                                                           
    81f0c5d0  CpswCpts_ioctl                                                                                             
    81f2d1c0  CpswCpts_open                                                                                              
    81f60ff0  CpswCpts_rejoin                                                                                            
    81f55350  CpswHostPort_close                                                                                         
    81f5bd40  CpswHostPort_initCfg                                                                                       
    81f177e0  CpswHostPort_ioctl                                                                                         
    81f27680  CpswHostPort_open                                                                                          
    81f60420  CpswHostPort_rejoin                                                                                        
    81f5b330  CpswMacPort_close                                                                                          
    81f5cfa0  CpswMacPort_initCfg                                                                                        
    81f0a020  CpswMacPort_ioctl                                                                                          
    81f24660  CpswMacPort_ioctlInterVlan                                                                                 
    81f13540  CpswMacPort_open                                                                                           
    81f5f880  CpswMacPort_openInterVlan                                                                                  
    81f60450  CpswMacPort_rejoin                                                                                         
    81f61190  CpswStats_close                                                                                            
    81f1cf80  CpswStats_ioctl                                                                                            
    81f28660  CpswStats_open                                                                                             
    81f5bdd0  CpswStats_rejoin                                                                                           
    81f479f0  Cpsw_close                                                                                                 
    81f3fbe0  Cpsw_initCfg                                                                                               
    81f293c0  Cpsw_ioctl                                                                                                 
    81f37780  Cpsw_ioctlInterVlan                                                                                        
    81f19b10  Cpsw_open                                                                                                  
    81f1f170  Cpsw_periodicTick                                                                                          
    81f5c6d0  Cpsw_poll                                                                                                  
    81f4c7f0  Cpsw_rejoin                                                                                                
    81f611b0  DebugP_log0                                                                                                
    81f611c0  DebugP_log1                                                                                                
    81f5d000  EnetAppRm_getIoctlPermissionInfo                                                                           
    81f5be00  EnetAppRm_getResPartInfo                                                                                   
    81f502a0  EnetAppSoc_getMacAddrList                                                                                  
    81f47b50  EnetAppUtils_addHostPortEntry                                                                              
    81f4def0  EnetAppUtils_allocMac                                                                                      
    81f4df80  EnetAppUtils_allocRxFlowForChIdx                                                                           
    81f516a0  EnetAppUtils_allocTxCh                                                                                     
    81f4e010  EnetAppUtils_clkRateSet                                                                                    
    81f54270  EnetAppUtils_clkRateSetState                                                                               
    81f28850  EnetAppUtils_closeRxFlowForChIdx                                                                           
    81f4ca30  EnetAppUtils_closeTxCh                                                                                     
    81f4e0a0  EnetAppUtils_delAddrEntry                                                                                  
    81f378b0  EnetAppUtils_disableClocks                                                                                 
    81f2fbb0  EnetAppUtils_enableClocks                                                                                  
    81f50320  EnetAppUtils_freeMac                                                                                       
    81f5acb0  EnetAppUtils_freePktInfoQ                                                                                  
    81f58220  EnetAppUtils_freeRxFlowForChIdx                                                                            
    81f58950  EnetAppUtils_freeTxCh                                                                                      
    81f607c0  EnetAppUtils_getChar                                                                                       
    81f5ef30  EnetAppUtils_getNavSSInstanceId                                                                            
    81f3ece0  EnetAppUtils_initResourceConfig                                                                            
    81f43b70  EnetAppUtils_mcuMmrCtrl                                                                                    
    81f26c80  EnetAppUtils_openRxFlowForChIdx                                                                            
    81f4a5b0  EnetAppUtils_openTxCh                                                                                      
    81f50d20  EnetAppUtils_print                                                                                         
    81f13f80  EnetAppUtils_printIcssgMacPortStats                                                                        
    81f12a60  EnetAppUtils_printIcssgPaStats                                                                             
    81f5a1f0  EnetAppUtils_printMacAddr                                                                                  
    81f16f10  EnetAppUtils_printMacPortStats2G                                                                           
    81f51d50  EnetAppUtils_regDfltRxFlowForChIdx                                                                         
    81f4cfd0  EnetAppUtils_regDstMacRxFlow                                                                               
    81f58270  EnetAppUtils_setCommonRxFlowPrms                                                                           
    81f59200  EnetAppUtils_setCommonTxChPrms                                                                             
    81f3c9c0  EnetAppUtils_setDeviceState                                                                                
    81f4e130  EnetAppUtils_udmaOpen                                                                                      
    81f5c700  EnetAppUtils_udmaclose                                                                                     
    81f51dc0  EnetAppUtils_unregDfltRxFlowForChIdx                                                                       
    81f4d060  EnetAppUtils_unregDstMacRxFlow                                                                             
    81f55530  EnetAppUtils_validatePacketState                                                                           
    81f611d0  EnetBoard_deinit                                                                                           
    81f5b3f0  EnetBoard_getMacAddrList                                                                                   
    81f5f8a0  EnetBoard_getPhyCfg                                                                                        
    81f55590  EnetBoard_init                                                                                             
    81f54350  EnetBoard_setupPorts                                                                                       
    81f18040  EnetDma_closeRxCh                                                                                          
    81f19760  EnetDma_closeTxCh                                                                                          
    81f5c730  EnetDma_disableRxEvent                                                                                     
    81f5c760  EnetDma_disableTxEvent                                                                                     
    81f5ad30  EnetDma_initPktInfo                                                                                        
    81f44e90  EnetDma_initRxChParams                                                                                     
    81f4adb0  EnetDma_initTxChParams                                                                                     
    81f0ba80  EnetDma_openRxCh                                                                                           
    81f0db50  EnetDma_openTxCh                                                                                           
    81f379e0  EnetDma_retrieveRxPktQ                                                                                     
    81f36cd0  EnetDma_retrieveTxPktQ                                                                                     
    81f33110  EnetDma_submitRxPktQ                                                                                       
    81f33260  EnetDma_submitTxPktQ                                                                                       
    81f3e1a0  EnetHostPortDma_close                                                                                      
    81f5ef90  EnetHostPortDma_closeRsvdFlow                                                                              
    81f5be30  EnetHostPortDma_getDmaResInfo                                                                              
    81f3c3c0  EnetHostPortDma_open                                                                                       
    81f5dce0  EnetHostPortDma_openRsvdFlow                                                                               
    81f51820  EnetMem_allocDmaDesc                                                                                       
    81f40ee0  EnetMem_allocEthPkt                                                                                        
    81f4e1c0  EnetMem_allocRingMem                                                                                       
    81f257d0  EnetMem_deInit                                                                                             
    81f5a270  EnetMem_freeDmaDesc                                                                                        
    81f4bb90  EnetMem_freeEthPkt                                                                                         
    81f5d1b0  EnetMem_freeRingMem                                                                                        
    81f24f20  EnetMem_init                                                                                               
    81f44390  EnetMod_close                                                                                              
    81f42650  EnetMod_ioctl                                                                                              
    81f5be60  EnetMod_ioctlFromIsr                                                                                       
    81f333b0  EnetMod_open                                                                                               
    81f555f0  EnetMp_initAleConfig                                                                                       
    81f42720  EnetOsalDflt_initCfg                                                                                       
    81f5ad70  EnetOsal_cacheInv                                                                                          
    81f5adb0  EnetOsal_cacheWb                                                                                           
    81f5adf0  EnetOsal_cacheWbInv                                                                                        
    81f5efb0  EnetOsal_createMutex                                                                                       
    81f5efd0  EnetOsal_deinit                                                                                            
    81f5eff0  EnetOsal_deleteMutex                                                                                       
    81f5f010  EnetOsal_disableAllIntr                                                                                    
    81f124d0  EnetOsal_init                                                                                              
    81f5f030  EnetOsal_lockMutex                                                                                         
    81f5d210  EnetOsal_registerIntr                                                                                      
    81f5f050  EnetOsal_restoreAllIntr                                                                                    
    81f5f070  EnetOsal_unlockMutex                                                                                       
    81f5f090  EnetOsal_unregisterIntr                                                                                    
    81f60830  EnetPhyMdioDflt_getPhyMdio                                                                                 
    81f1cc90  EnetPhyMdioDflt_ioctl                                                                                      
    81f38360  EnetPhyMdioDflt_isAlive                                                                                    
    81f38480  EnetPhyMdioDflt_isLinked                                                                                   
    81f36e00  EnetPhyMdioDflt_readC22                                                                                    
    81f35e90  EnetPhyMdioDflt_readC45                                                                                    
    81f35750  EnetPhyMdioDflt_writeC22                                                                                   
    81f34c10  EnetPhyMdioDflt_writeC45                                                                                   
    81f53470  EnetPhy_close                                                                                              
    81f36f30  EnetPhy_getId                                                                                              
    81f51f10  EnetPhy_getLinkCfg                                                                                         
    81f543c0  EnetPhy_initCfg                                                                                            
    81f41b20  EnetPhy_isAlive                                                                                            
    81f5dda0  EnetPhy_isLinked                                                                                           
    81f2a280  EnetPhy_open                                                                                               
    81f5ddd0  EnetPhy_printRegs                                                                                          
    81f4cb50  EnetPhy_readC45Reg                                                                                         
    81f5bf50  EnetPhy_readExtReg                                                                                         
    81f504a0  EnetPhy_readReg                                                                                            
    81f3c4c0  EnetPhy_rmwReg                                                                                             
    81f3d1c0  EnetPhy_tick                                                                                               
    81f4cbe0  EnetPhy_writeC45Reg                                                                                        
    81f5bf80  EnetPhy_writeExtReg                                                                                        
    81f50520  EnetPhy_writeReg                                                                                           
    81f3adb0  EnetQueue_append                                                                                           
    81f4af90  EnetQueue_copyQ                                                                                            
    81f47c00  EnetQueue_deq                                                                                              
    81f48c80  EnetQueue_enq                                                                                              
    81f4a650  EnetQueue_enqHead                                                                                          
    81f534e0  EnetQueue_getQCount                                                                                        
    81f5e340  EnetQueue_initQ                                                                                            
    81f1a5e0  EnetRm_close                                                                                               
    81f18fe0  EnetRm_ioctl                                                                                               
    81f2f740  EnetRm_open                                                                                                
    81f61020  EnetRm_rejoin                                                                                              
    81f52990  EnetSocJ7x_getIntrNum                                                                                      
    81f4b030  EnetSocJ7x_releaseIntrCfg                                                                                  
    81f4b0d0  EnetSocJ7x_setupIntrCfg                                                                                    
    81f56ac0  EnetSoc_deinit                                                                                             
    81f54cf0  EnetSoc_getClkFreq                                                                                         
    81f61030  EnetSoc_getCoreId                                                                                          
    81f4f8a0  EnetSoc_getDmaHandle                                                                                       
    81f57190  EnetSoc_getEFusedMacAddrs                                                                                  
    81f4e370  EnetSoc_getEnetHandle                                                                                      
    81f5e360  EnetSoc_getEnetHandleByIdx                                                                                 
    81f61040  EnetSoc_getEnetNum                                                                                         
    81f54430  EnetSoc_getIntrNum                                                                                         
    81f61050  EnetSoc_getIntrTriggerType                                                                                 
    81f56b20  EnetSoc_getMacPortCaps                                                                                     
    81f56010  EnetSoc_getMacPortMax                                                                                      
    81f49610  EnetSoc_getMacPortMii                                                                                      
    81f31c90  EnetSoc_getRxChPeerId                                                                                      
    81f34350  EnetSoc_getRxFlowCount                                                                                     
    81f34490  EnetSoc_getTxChCount                                                                                       
    81f34fd0  EnetSoc_getTxChPeerId                                                                                      
    81f4bdd0  EnetSoc_init                                                                                               
    81f61060  EnetSoc_mapPort2QsgmiiId                                                                                   
    81f4d210  EnetSoc_releaseIntrCfg                                                                                     
    81f4d2a0  EnetSoc_setupIntrCfg                                                                                       
    81f61070  EnetSoc_validateQsgmiiCfg                                                                                  
    81f5ae30  EnetTrace_trace                                                                                            
    81f3a860  EnetUdma_allocProxy                                                                                        
    81f20be0  EnetUdma_allocRing                                                                                         
    81f2dba0  EnetUdma_allocRingMon                                                                                      
    81f4a6f0  EnetUdma_buffDescInit                                                                                      
    81f46b10  EnetUdma_close                                                                                             
    81f2b480  EnetUdma_closeRxCh                                                                                         
    81f27280  EnetUdma_closeRxRsvdFlow                                                                                   
    81f592a0  EnetUdma_deInitRxFreeDescQ                                                                                 
    81f592f0  EnetUdma_deInitTxFreeDescQ                                                                                 
    81f50620  EnetUdma_dmaDescCheck                                                                                      
    81f5bfe0  EnetUdma_dmaDescCopyQ                                                                                      
    81f54d50  EnetUdma_dmaDescDeque                                                                                      
    81f4be60  EnetUdma_dmaDescEnque                                                                                      
    81f5e920  EnetUdma_dmaDescInit                                                                                       
    81f61080  EnetUdma_dmaDescQCount                                                                                     
    81f5f920  EnetUdma_dmaDescQInit                                                                                      
    81f43010  EnetUdma_flushRxFlowRing                                                                                   
    81f430e0  EnetUdma_flushTxChRing                                                                                     
    81f5f0d0  EnetUdma_freeProxy                                                                                         
    81f58ae0  EnetUdma_freeRing                                                                                          
    81f5b470  EnetUdma_freeRingMon                                                                                       
    81f5f0f0  EnetUdma_getRxChFlowStartIdx                                                                               
    81f5f110  EnetUdma_getRxFlowCnt                                                                                      
    81f5de00  EnetUdma_getRxFlowUdmaInfo                                                                                 
    81f5c850  EnetUdma_getTxChUdmaInfo                                                                                   
    81f33a40  EnetUdma_initRxFreeDescQ                                                                                   
    81f28a40  EnetUdma_initTxFreeDescQ                                                                                   
    81f4b170  EnetUdma_memMgrAllocRingMonObj                                                                             
    81f4b210  EnetUdma_memMgrAllocRxFlowObj                                                                              
    81f3eec0  EnetUdma_memMgrAllocTdCqRingMemObj                                                                         
    81f4b2b0  EnetUdma_memMgrAllocTxChObj                                                                                
    81f5c010  EnetUdma_memMgrDeInit                                                                                      
    81f51ff0  EnetUdma_memMgrFreeRingMonObj                                                                              
    81f52060  EnetUdma_memMgrFreeRxFlowObj                                                                               
    81f520d0  EnetUdma_memMgrFreeTdCqRingMemObj                                                                          
    81f52140  EnetUdma_memMgrFreeTxChObj                                                                                 
    81f32370  EnetUdma_memMgrInit                                                                                        
    81f3ba70  EnetUdma_open                                                                                              
    81f17c20  EnetUdma_openRxCh                                                                                          
    81f16170  EnetUdma_openRxRsvdFlow                                                                                    
    81f2e1f0  EnetUdma_reconfigureDescQ                                                                                  
    81f27080  EnetUdma_registerEvent                                                                                     
    81f236d0  EnetUdma_retrievePkts                                                                                      
    81f35fc0  EnetUdma_ringDequeue                                                                                       
    81f360f0  EnetUdma_ringEnqueue                                                                                       
    81f431b0  EnetUdma_rxCqIsr                                                                                           
    81f17380  EnetUdma_submitPkts                                                                                        
    81f42990  EnetUdma_txCqIsr                                                                                           
    81f60870  EnetUdma_unregisterEvent                                                                                   
    81f5d240  EnetUtilsDflt_initCfg                                                                                      
    81f5de30  EnetUtils_deinit                                                                                           
    81f611f0  EnetUtils_delay                                                                                            
    81f56070  EnetUtils_init                                                                                             
    81f3e290  EnetUtils_macToPhyMii                                                                                      
    81f608a0  EnetUtils_min                                                                                              
    81f5f150  EnetUtils_physToVirt                                                                                       
    81f50e20  EnetUtils_printf                                                                                           
    81f5f170  EnetUtils_virtToPhys                                                                                       
    81f560d0  EnetUtils_vprintf                                                                                          
    81f47310  Enet_close                                                                                                 
    81f54db0  Enet_deinit                                                                                                
    81f3f460  Enet_getDmaHandle                                                                                          
    81f3e380  Enet_init                                                                                                  
    81f4bef0  Enet_initCfg                                                                                               
    81f608b0  Enet_initOsalCfg                                                                                           
    81f608c0  Enet_initUtilsCfg                                                                                          
    81f3c5c0  Enet_ioctl                                                                                                 
    81f32a50  Enet_open                                                                                                  
    81f48700  Enet_periodicTick                                                                                          
    81f44f50  Enet_poll                                                                                                  
    81f41c00  Enet_registerEventCb                                                                                       
    81f462d0  Enet_unregisterEventCb                                                                                     
    81f2b9c0  Enet_validateGenericIoctl                                                                                  
    81f2f140  Enet_validateIoctl                                                                                         
    81f5c8e0  EthBoard_delay                                                                                             
    70144de0  FreeRTOS_errno                                                                                             
    81f4e400  GenericPhy_isResetComplete                                                                                 
    81f56130  GenericPhy_printRegs                                                                                       
    81f43d10  GenericPhy_readExtReg                                                                                      
    81f56b80  GenericPhy_reset                                                                                           
    81f49f70  GenericPhy_writeExtReg                                                                                     
    41c3f9a4  HF                                                                                                         
    81f54e10  HOSTclose                                                                                                  
    81f4a788  HOSTlseek                                                                                                  
    81f4b344  HOSTopen                                                                                                   
    81f4e484  HOSTread                                                                                                   
    81f496b0  HOSTrename                                                                                                 
    81f529fc  HOSTunlink                                                                                                 
    81f4e508  HOSTwrite                                                                                                  
    81f5e380  HwiP_Params_init                                                                                           
    81f609d0  HwiP_clearInterrupt                                                                                        
    81f5a2f0  HwiP_create                                                                                                
    7014d368  HwiP_data_abort_handler                                                                                    
    7014d110  HwiP_data_abort_handler_c                                                                                  
    81f544a0  HwiP_delete                                                                                                
    81f5c040  HwiP_disable                                                                                               
    81f609e0  HwiP_disableInterrupt                                                                                      
    81f609f0  HwiP_enableInterrupt                                                                                       
    7014cf00  HwiP_fiq_handler                                                                                           
    7014d230  HwiP_irq_handler                                                                                           
    7014cfd0  HwiP_irq_handler_c                                                                                         
    7014d0e0  HwiP_prefetch_abort_handler                                                                                
    7014d080  HwiP_reserved_handler                                                                                      
    81f5b4b0  HwiP_restore                                                                                               
    7014d1a8  HwiP_svc_handler                                                                                           
    7014d0b0  HwiP_undefined_handler                                                                                     
    81f5a330  IcssgMacPort_initCfg                                                                                       
    81f61210  IcssgStats_close                                                                                           
    81f47cb0  IcssgStats_ioctl                                                                                           
    81f4bf80  IcssgStats_open                                                                                            
    81f610e0  IcssgStats_rejoin                                                                                          
    81f61220  IcssgTas_close                                                                                             
    81f2e830  IcssgTas_ioctl                                                                                             
    81f4a820  IcssgTas_open                                                                                              
    81f610f0  IcssgTas_rejoin                                                                                            
    81f5fb40  IcssgTas_reset                                                                                             
    81f3b410  IcssgTimeSync_adjustClock                                                                                  
    81f5fb60  IcssgTimeSync_close                                                                                        
    81f415e0  IcssgTimeSync_getClockTime                                                                                 
    81f5e9a0  IcssgTimeSync_initCfg                                                                                      
    81f2fd20  IcssgTimeSync_ioctl                                                                                        
    81f3a2d0  IcssgTimeSync_open                                                                                         
    81f61100  IcssgTimeSync_rejoin                                                                                       
    81f2a450  IcssgTimeSync_setClockTime                                                                                 
    81fc9718  IcssgUtils_BufPoolCfg                                                                                      
    81f09190  IcssgUtils_CRC64                                                                                           
    81f58310  IcssgUtils_FdbHelper                                                                                       
    81f58b80  IcssgUtils_R30CmdInit                                                                                      
    701352a8  IcssgUtils_R30DmemAddr                                                                                     
    81f5de60  IcssgUtils_WriteMem                                                                                        
    81f1c680  IcssgUtils_checkFwPoolMem                                                                                  
    81f3dcc0  IcssgUtils_checkPortMode                                                                                   
    81f41ce0  IcssgUtils_classiDisable                                                                                   
    81f41dc0  IcssgUtils_configFilter3                                                                                   
    81f0ef60  IcssgUtils_configSwtFw                                                                                     
    81f45790  IcssgUtils_createPruss                                                                                     
    81f3ddc0  IcssgUtils_disablePruss                                                                                    
    81f3bb80  IcssgUtils_downloadFirmware                                                                                
    81f3f550  IcssgUtils_enablePruss                                                                                     
    81f0f880  IcssgUtils_fwConfig                                                                                        
    81f3f640  IcssgUtils_getSliceNum                                                                                     
    81f58360  IcssgUtils_hwqLevel                                                                                        
    81f56190  IcssgUtils_hwqPop                                                                                          
    81f583b0  IcssgUtils_hwqPush                                                                                         
    81f58bd0  IcssgUtils_hwqPushForSlice                                                                                 
    81f5e9c0  IcssgUtils_hwqReset                                                                                        
    81f535c0  IcssgUtils_isR30CmdDone                                                                                    
    81f41ea0  IcssgUtils_sendFdbCmd                                                                                      
    81f556b0  IcssgUtils_sendHwqMgmtMsg                                                                                  
    81f41f80  Icssg_R30SendAsyncIoctl                                                                                    
    81f4f9a0  Icssg_R30SendSyncIoctl                                                                                     
    81f46bd0  Icssg_close                                                                                                
    81f53710  Icssg_closeDma                                                                                             
    81f54ed0  Icssg_convertTs                                                                                            
    81f60a00  Icssg_getCfgAddr                                                                                           
    81f5b4f0  Icssg_getDfltVlanAddr                                                                                      
    81f5e9e0  Icssg_getDramAddr                                                                                          
    81f604a0  Icssg_getRgmiiCfgAddr                                                                                      
    81f60a10  Icssg_getSharedRamAddr                                                                                     
    81f604b0  Icssg_getVlanTableAddr                                                                                     
    81f416c0  Icssg_initCfg                                                                                              
    81f1b040  Icssg_ioctl                                                                                                
    81f0ff60  Icssg_open                                                                                                 
    81f3e470  Icssg_periodicTick                                                                                         
    81f44460  Icssg_poll                                                                                                 
    81f604c0  Icssg_rd16                                                                                                 
    81f604d0  Icssg_rd32                                                                                                 
    81f604e0  Icssg_rd8                                                                                                  
    81f3cbc0  Icssg_registerEventCb                                                                                      
    81f59bb0  Icssg_rejoin                                                                                               
    81f4c130  Icssg_unregisterEventCb                                                                                    
    81f5fb80  Icssg_wr16                                                                                                 
    81f5fba0  Icssg_wr32                                                                                                 
    81f604f0  Icssg_wr64                                                                                                 
    81f5fbc0  Icssg_wr8                                                                                                  
    81f53860  Intc_Init                                                                                                  
    81f5b530  Intc_IntClrPend                                                                                            
    81f5c0a0  Intc_IntDisable                                                                                            
    81f5c0d0  Intc_IntEnable                                                                                             
    81f5c9d0  Intc_IntPrioritySet                                                                                        
    81f46390  Intc_IntRegister                                                                                           
    81f5f1b0  Intc_IntSetSrcType                                                                                         
    81f52300  Intc_IntUnregister                                                                                         
    81f5f1d0  Intc_SystemDisable                                                                                         
    81f5f1f0  Intc_SystemEnable                                                                                          
    81f60a20  Intc_SystemRestore                                                                                         
    81f545f0  LoadP_addTask                                                                                              
    81f5f210  LoadP_removeTask                                                                                           
    81f39440  LoadP_update                                                                                               
    81f57a00  MMR_unlock                                                                                                 
    81f46450  Mdio_close                                                                                                 
    81f5c100  Mdio_initCfg                                                                                               
    81f16620  Mdio_ioctl                                                                                                 
    81f1e930  Mdio_open                                                                                                  
    81f61110  Mdio_rejoin                                                                                                
    81f337a0  MutexP_create                                                                                              
    81f50ea0  MutexP_delete                                                                                              
    81f50f20  MutexP_lock                                                                                                
    81f52bc0  MutexP_unlock                                                                                              
    81f60a30  OS_start                                                                                                   
    81f60a40  OS_stop                                                                                                    
    81f29d10  OsalArch_HwiPCreate                                                                                        
    81f58450  OsalArch_HwiPDelete                                                                                        
    81f60500  OsalArch_clearInterrupt                                                                                    
    81f60510  OsalArch_disableInterrupt                                                                                  
    81f60520  OsalArch_enableInterrupt                                                                                   
    81f60a50  OsalArch_globalDisableInterrupt                                                                            
    81f60a60  OsalArch_globalRestoreInterrupt                                                                            
    81f60530  Osal_ClearInterrupt                                                                                        
    70144ec6  Osal_DebugP_Assert_Val                                                                                     
    81f5e3c0  Osal_DebugP_assert                                                                                         
    81f5e3e0  Osal_DebugP_assert_fcn                                                                                     
    81f5fc00  Osal_DeleteInterrupt                                                                                       
    81f60540  Osal_DisableInterrupt                                                                                      
    81f60550  Osal_EnableInterrupt                                                                                       
    81f4e860  Osal_RegisterInterrupt                                                                                     
    81f593e0  Osal_RegisterInterrupt_initParams                                                                          
    81f5ca00  Osal_delay                                                                                                 
    81f5ca30  Osal_getThreadType                                                                                         
    81f5d2a0  PMLIBClkRateGet                                                                                            
    81f210f0  PMLIBClkRateSet                                                                                            
    81f59430  PRUICSS_create                                                                                             
    81f59480  PRUICSS_pruDisable                                                                                         
    81f594d0  PRUICSS_pruEnable                                                                                          
    81f51920  PRUICSS_pruInitMemory                                                                                      
    81f4b480  PRUICSS_pruWriteMemory                                                                                     
    81f5fc20  PRUICSS_socGetInitCfg                                                                                      
    7011ff48  RTU0_SLICE0_b00_DMac                                                                                       
    7011cb20  RTU0_SLICE0_b00_Swt                                                                                        
    70122e34  RTU0_SLICE1_b00_DMac                                                                                       
    7011f294  RTU0_SLICE1_b00_Swt                                                                                        
    70114a00  RX_PRU_SLICE0_b00_DMac                                                                                     
    7010e7bc  RX_PRU_SLICE0_b00_Swt                                                                                      
    701137d0  RX_PRU_SLICE1_b00_DMac                                                                                     
    7010d098  RX_PRU_SLICE1_b00_Swt                                                                                      
    81f4e8f0  Sciclient_abiCheck                                                                                         
    81f5c130  Sciclient_configPrmsInit                                                                                   
    81f56c40  Sciclient_flush                                                                                            
    81f57a50  Sciclient_getCurrentContext                                                                                
    81f23910  Sciclient_init                                                                                             
    81f42a60  Sciclient_pmGetModuleClkFreq                                                                               
    81f43350  Sciclient_pmGetModuleClkNumParent                                                                          
    81f43420  Sciclient_pmGetModuleClkParent                                                                             
    81f3d3c0  Sciclient_pmGetModuleState                                                                                 
    81f46d50  Sciclient_pmModuleClkRequest                                                                               
    81f43f80  Sciclient_pmModuleGetClkStatus                                                                             
    81f35110  Sciclient_pmQueryModuleClkFreq                                                                             
    81f3aec0  Sciclient_pmSetModuleClkFreq                                                                               
    81f46e10  Sciclient_pmSetModuleClkParent                                                                             
    81f4d450  Sciclient_pmSetModuleRst                                                                                   
    81f473c0  Sciclient_pmSetModuleState                                                                                 
    81f5d2d0  Sciclient_readThread32                                                                                     
    81f5fc40  Sciclient_readThreadCount                                                                                  
    81f2a620  Sciclient_rmClearInterruptRoute                                                                            
    81f497f0  Sciclient_rmGetResourceRange                                                                               
    81f5ea20  Sciclient_rmIrqRelease                                                                                     
    81f4eb30  Sciclient_rmIrqReleaseRaw                                                                                  
    81f60a80  Sciclient_rmIrqSet                                                                                         
    81f50fa0  Sciclient_rmIrqSetRaw                                                                                      
    81f60a90  Sciclient_rmIrqTranslateIrOutput                                                                           
    81f60aa0  Sciclient_rmIrqTranslateIrqInput                                                                           
    81f2af30  Sciclient_rmProgramInterruptRoute                                                                          
    81f4ec50  Sciclient_rmPsilPair                                                                                       
    81f51020  Sciclient_rmPsilRead                                                                                       
    81f4ece0  Sciclient_rmPsilUnpair                                                                                     
    81f4ed70  Sciclient_rmPsilWrite                                                                                      
    81f510a0  Sciclient_rmRingCfg                                                                                        
    81f51120  Sciclient_rmRingMonCfg                                                                                     
    81f4ee00  Sciclient_rmSetProxyCfg                                                                                    
    81f3afd0  Sciclient_rmTranslateIntOutput                                                                             
    81f3b0e0  Sciclient_rmTranslateIrqInput                                                                              
    81f511a0  Sciclient_rmUdmapFlowCfg                                                                                   
    81f51220  Sciclient_rmUdmapFlowSizeThreshCfg                                                                         
    81f512a0  Sciclient_rmUdmapRxChCfg                                                                                   
    81f51320  Sciclient_rmUdmapTxChCfg                                                                                   
    81f3b520  Sciclient_sendMessage                                                                                      
    81f5fcc0  Sciclient_service                                                                                          
    81f4d600  Sciclient_serviceGetPayloadSize                                                                            
    81f47470  Sciclient_serviceGetThreadIds                                                                              
    81f3ccc0  Sciclient_servicePrepareHeader                                                                             
    81f15340  Sciclient_serviceSecureProxy                                                                               
    81f5fce0  Sciclient_threadStatusReg                                                                                  
    81f5fd00  Sciclient_verifyThread                                                                                     
    81f57aa0  Sciclient_waitThread                                                                                       
    81f5a4f0  SemaphoreP_Params_init                                                                                     
    81f506a0  SemaphoreP_constructBinary                                                                                 
    81f59cb0  SemaphoreP_constructCounting                                                                               
    81f2c280  SemaphoreP_create                                                                                          
    81f519a0  SemaphoreP_delete                                                                                          
    81f4fba0  SemaphoreP_pend                                                                                            
    81f52370  SemaphoreP_post                                                                                            
    81f59570  TIMERCompareSet                                                                                            
    81f595c0  TIMERCounterGet2                                                                                           
    81f59610  TIMERCounterSet                                                                                            
    81f55950  TIMERDisable                                                                                               
    81f559b0  TIMEREnable                                                                                                
    81f5c160  TIMERIntDisable                                                                                            
    81f5c190  TIMERIntEnable                                                                                             
    81f5c1c0  TIMERIntStatusClear                                                                                        
    81f60570  TIMERIntStatusGet                                                                                          
    81f46ed0  TIMERModeConfigure                                                                                         
    81f59cf0  TIMERPostedModeConfig                                                                                      
    81f5a530  TIMERReadModeConfig                                                                                        
    81f59660  TIMERReloadGet2                                                                                            
    81f596b0  TIMERReloadSet                                                                                             
    81f4cc70  TIMERReset                                                                                                 
    81f60580  TIMERWritePostedStatusGet                                                                                  
    70112520  TX_PRU_SLICE0_b00_DMac                                                                                     
    70115bd0  TX_PRU_SLICE0_b00_Swt                                                                                      
    70116d78  TX_PRU_SLICE1_b00_DMac                                                                                     
    70119d60  TX_PRU_SLICE1_b00_Swt                                                                                      
    81f5aeb0  TaskP_Function                                                                                             
    81f5b570  TaskP_Params_init                                                                                          
    81f2a7f0  TaskP_create                                                                                               
    81f4b520  TaskP_delete                                                                                               
    81f5a570  TaskP_getFreertosHandle                                                                                    
    81f58cc0  TaskP_isTerminated                                                                                         
    81f60ac0  TaskP_sleep                                                                                                
    81f54f30  TimerP_Params_init                                                                                         
    81f36350  TimerP_create                                                                                              
    81f5b5b0  TimerP_getCount                                                                                            
    81f61120  TimerP_getDefaultFreqHi                                                                                    
    81f60ad0  TimerP_getDefaultFreqLo                                                                                    
    81f5b5f0  TimerP_getReloadCount                                                                                      
    81f61230  TimerP_mapId                                                                                               
    81f39b00  TimerP_start                                                                                               
    81f4b5c0  TimerP_stop                                                                                                
    81f61240  TimerP_updateDefaultInfoTbl                                                                                
    81f5ea60  UARTBreakCtl                                                                                               
    81f57af0  UARTCharGetNonBlocking2                                                                                    
    81f57b40  UARTCharPut                                                                                                
    81f56ca0  UARTCharPutNonBlocking                                                                                     
    81f5ea80  UARTDirEnControl                                                                                           
    81f5eaa0  UARTDirPolSet                                                                                              
    81f5eac0  UARTDivisorLatchDisable                                                                                    
    81f2dd40  UARTDivisorLatchWrite                                                                                      
    81f57b90  UARTDivisorValCompute                                                                                      
    81f5a5b0  UARTEnhanFuncBitValRestore                                                                                 
    81f584f0  UARTEnhanFuncEnable                                                                                        
    81f60af0  UARTFIFOCharPut                                                                                            
    81f26240  UARTFIFOConfig                                                                                             
    81f53b00  UARTFIFORegisterWrite                                                                                      
    81f5a5f0  UARTHardwareFlowCtrlOptSet                                                                                 
    81f5caf0  UARTInt2Disable                                                                                            
    81f5d390  UARTInt2Enable                                                                                             
    81f5fd20  UARTInt2StatusGet                                                                                          
    81f40270  UARTIntDisable                                                                                             
    81f40b60  UARTIntEnable                                                                                              
    81f5b630  UARTIntIdentityGet                                                                                         
    81f59d30  UARTIsTransmitterEmpty                                                                                     
    81f5c1f0  UARTLineCharacConfig                                                                                       
    81f5eae0  UARTLoopbackModeControl                                                                                    
    81f5b670  UARTOperatingModeSelect                                                                                    
    81f5b6b0  UARTReadStatus                                                                                             
    81f57be0  UARTRegConfigModeEnable                                                                                    
    81f44050  UARTSubConfigTCRTLRModeEn                                                                                  
    81f46510  UARTTCRTLRBitValRestore                                                                                    
    81f5fd40  UARTTxFIFOFullStatusGet                                                                                    
    7012bc18  UART_FxnTable_v1                                                                                           
    81f5e400  UART_Params_init                                                                                           
    70144484  UART_config                                                                                                
    81f56d00  UART_dataWrite                                                                                             
    7012bca8  UART_defaultParams                                                                                         
    81f60b00  UART_getc                                                                                                  
    81f523e0  UART_init                                                                                                  
    81f5e420  UART_open                                                                                                  
    81f1b6d0  UART_printf                                                                                                
    81f60b10  UART_putc                                                                                                  
    81f5fd60  UART_readPolling                                                                                           
    81f61250  UART_socInit                                                                                               
    81f4a0b0  UART_stdioInit                                                                                             
    81f4c370  UART_v1_callback                                                                                           
    81f5fd80  UART_write                                                                                                 
    81f5fda0  UART_writePolling                                                                                          
    81fd3200  UartObjects                                                                                                
    81f4fc20  UdmaChPrms_init                                                                                            
    81f54f90  UdmaChRxPrms_init                                                                                          
    81f52450  UdmaChTxPrms_init                                                                                          
    81f58540  UdmaChUtcPrms_init                                                                                         
    81f51a20  UdmaEventPrms_init                                                                                         
    81f54ff0  UdmaFlowPrms_init                                                                                          
    81f55a10  UdmaInitPrms_init                                                                                          
    81f508a0  UdmaOsalPrms_init                                                                                          
    81f5e440  UdmaRingMonPrms_init                                                                                       
    81f58590  UdmaRingPrms_init                                                                                          
    81f1a960  UdmaRmInitPrms_init                                                                                        
    81f5dfe0  UdmaUtils_getRingMemSize                                                                                   
    81f39c20  Udma_chClose                                                                                               
    81f1e660  Udma_chConfigRx                                                                                            
    81f2c5f0  Udma_chConfigTx                                                                                            
    81f4fca0  Udma_chDequeueTdResponse                                                                                   
    81f44120  Udma_chDisable                                                                                             
    81f450d0  Udma_chEnable                                                                                              
    81f2f8c0  Udma_chGetNum                                                                                              
    81f4fd20  Udma_chGetTdCqRingHandle                                                                                   
    81f605a0  Udma_chGetUtcInst                                                                                          
    81f24ac0  Udma_chOpen                                                                                                
    81f37b10  Udma_deinit                                                                                                
    81f57c30  Udma_eventDisable                                                                                          
    81f5aef0  Udma_eventGetGlobalHandle                                                                                  
    81f5a7f0  Udma_eventGetId                                                                                            
    81f20950  Udma_eventRegister                                                                                         
    81f33b90  Udma_eventUnRegister                                                                                       
    81f23b50  Udma_flowAlloc                                                                                             
    81f4fda0  Udma_flowAttach                                                                                            
    81f27a80  Udma_flowConfig                                                                                            
    81f55a70  Udma_flowDetach                                                                                            
    81f27e80  Udma_flowFree                                                                                              
    81f5cb20  Udma_flowGetCount                                                                                          
    81f5cb50  Udma_flowGetNum                                                                                            
    81f61160  Udma_getCoreId                                                                                             
    81f61170  Udma_getGlobalEventOffset                                                                                  
    81f24cf0  Udma_init                                                                                                  
    81f19eb0  Udma_initDrvHandle                                                                                         
    81f61180  Udma_isCacheCoherent                                                                                       
    81f58db0  Udma_phyToVirtFxn                                                                                          
    81f48de0  Udma_printf                                                                                                
    81f31df0  Udma_proxyAlloc                                                                                            
    81f3c6c0  Udma_proxyConfig                                                                                           
    81f44600  Udma_proxyFree                                                                                             
    81f21370  Udma_ringAlloc                                                                                             
    81f3a630  Udma_ringCheckParams                                                                                       
    81f42140  Udma_ringDequeueRaw                                                                                        
    81f59750  Udma_ringDequeueRawNormal                                                                                  
    81f5f290  Udma_ringFlushRawNormal                                                                                    
    81f3f730  Udma_ringFree                                                                                              
    81f5fde0  Udma_ringGetElementCnt                                                                                     
    81f5d450  Udma_ringGetElementCntNormal                                                                               
    81f5fe00  Udma_ringGetForwardRingOcc                                                                                 
    81f5fe20  Udma_ringGetMemPtr                                                                                         
    81f5d480  Udma_ringGetMemPtrNormal                                                                                   
    81f5fe40  Udma_ringGetMode                                                                                           
    81f5d4b0  Udma_ringGetModeNormal                                                                                     
    81f5d4e0  Udma_ringGetNum                                                                                            
    81f5fe60  Udma_ringGetRdIdx                                                                                          
    81f5d510  Udma_ringGetRdIdxNormal                                                                                    
    81f5fe80  Udma_ringGetReverseRingOcc                                                                                 
    81f59db0  Udma_ringGetRingOccNormal                                                                                  
    81f5fea0  Udma_ringGetWrIdx                                                                                          
    81f5d540  Udma_ringGetWrIdxNormal                                                                                    
    81f605e0  Udma_ringHandleClearRegsNormal                                                                             
    81f373f0  Udma_ringMonAlloc                                                                                          
    81f3dec0  Udma_ringMonConfig                                                                                         
    81f3f820  Udma_ringMonFree                                                                                           
    81f5fec0  Udma_ringPrime                                                                                             
    81f585e0  Udma_ringPrimeNormal                                                                                       
    81f5fee0  Udma_ringPrimeRead                                                                                         
    81f56d60  Udma_ringPrimeReadNormal                                                                                   
    81f4b700  Udma_ringProxyDequeueRaw                                                                                   
    81f4a150  Udma_ringProxyQueueRaw                                                                                     
    81f410a0  Udma_ringQueueRaw                                                                                          
    81f58630  Udma_ringQueueRawNormal                                                                                    
    81f22b70  Udma_ringReset                                                                                             
    81f2c0c0  Udma_ringSetCfgNormal                                                                                      
    81f5ff00  Udma_ringSetDoorBell                                                                                       
    81f4a1f0  Udma_ringSetDoorBellNormal                                                                                 
    81f56dc0  Udma_ringaccMemOps                                                                                         
    81f30cf0  Udma_rmAllocBlkCopyCh                                                                                      
    81f30e60  Udma_rmAllocBlkCopyHcCh                                                                                    
    81f30fd0  Udma_rmAllocBlkCopyUhcCh                                                                                   
    81f40c40  Udma_rmAllocEvent                                                                                          
    81f22dc0  Udma_rmAllocExtCh                                                                                          
    81f3b1f0  Udma_rmAllocFreeRing                                                                                       
    81f30000  Udma_rmAllocIrIntr                                                                                         
    81f3efb0  Udma_rmAllocProxy                                                                                          
    81f3f0a0  Udma_rmAllocRingMon                                                                                        
    81f30170  Udma_rmAllocRxCh                                                                                           
    81f31140  Udma_rmAllocRxHcCh                                                                                         
    81f312b0  Udma_rmAllocRxUhcCh                                                                                        
    81f302e0  Udma_rmAllocTxCh                                                                                           
    81f31420  Udma_rmAllocTxHcCh                                                                                         
    81f31590  Udma_rmAllocTxUhcCh                                                                                        
    81f40d20  Udma_rmAllocVintr                                                                                          
    81f41180  Udma_rmAllocVintrBit                                                                                       
    81f295a0  Udma_rmDeinit                                                                                              
    81f386c0  Udma_rmFreeBlkCopyCh                                                                                       
    81f387e0  Udma_rmFreeBlkCopyHcCh                                                                                     
    81f38900  Udma_rmFreeBlkCopyUhcCh                                                                                    
    81f37c40  Udma_rmFreeEvent                                                                                           
    81f32d10  Udma_rmFreeExtCh                                                                                           
    81f3f190  Udma_rmFreeFreeRing                                                                                        
    81f37d70  Udma_rmFreeIrIntr                                                                                          
    81f435c0  Udma_rmFreeProxy                                                                                           
    81f42220  Udma_rmFreeRingMon                                                                                         
    81f37ea0  Udma_rmFreeRxCh                                                                                            
    81f38a20  Udma_rmFreeRxHcCh                                                                                          
    81f38b40  Udma_rmFreeRxUhcCh                                                                                         
    81f37fd0  Udma_rmFreeTxCh                                                                                            
    81f38c60  Udma_rmFreeTxHcCh                                                                                          
    81f38d80  Udma_rmFreeTxUhcCh                                                                                         
    81f38100  Udma_rmFreeVintr                                                                                           
    81f3e650  Udma_rmFreeVintrBit                                                                                        
    81f5e480  Udma_rmGetDefBoardCfgPrms                                                                                  
    81f5b770  Udma_rmGetSharedResPrms                                                                                    
    81f10640  Udma_rmInit                                                                                                
    81f57c80  Udma_rmTranslateCoreIntrInput                                                                              
    81f57cd0  Udma_rmTranslateIrOutput                                                                                   
    81f597a0  Udma_virtToPhyFxn                                                                                          
    ffffbfe0  __ABORT_STACK_END                                                                                          
    00000100  __ABORT_STACK_SIZE                                                                                         
    ffffbee0  __ABORT_STACK_START                                                                                        
    81fd3798  __CIOBUF_                                                                                                  
    ffffbee0  __FIQ_STACK_END                                                                                            
    00000100  __FIQ_STACK_SIZE                                                                                           
    ffffbde0  __FIQ_STACK_START                                                                                          
    ffffbde0  __IRQ_STACK_END                                                                                            
    00001000  __IRQ_STACK_SIZE                                                                                           
    ffffade0  __IRQ_STACK_START                                                                                          
    ffffffe0  __STACK_END                                                                                                
    00004000  __STACK_SIZE                                                                                               
    ffffade0  __SVC_STACK_END                                                                                            
    00000100  __SVC_STACK_SIZE                                                                                           
    fffface0  __SVC_STACK_START                                                                                          
    00008000  __SYSMEM_SIZE                                                                                              
    7014f150  __TI_CINIT_Base                                                                                            
    7014f160  __TI_CINIT_Limit                                                                                           
    7014f160  __TI_CINIT_Warm                                                                                            
    7014f13c  __TI_Handler_Table_Base                                                                                    
    7014f148  __TI_Handler_Table_Limit                                                                                   
    81f55bec  __TI_auto_init_nobinit_nopinit                                                                             
    81f56e14  __TI_cleanup                                                                                               
    70144d80  __TI_cleanup_ptr                                                                                           
    81f46f84  __TI_closefile                                                                                             
    81f4822c  __TI_decompress_lzss                                                                                       
    81f5ffb4  __TI_decompress_none                                                                                       
    81f4fe20  __TI_doflush                                                                                               
    70144d84  __TI_dtors_ptr                                                                                             
    70144de8  __TI_ft_end                                                                                                
    81f4d688  __TI_ltoa                                                                                                  
    ffffffff  __TI_pprof_out_hndl                                                                                        
    81f07400  __TI_printfi                                                                                               
    ffffffff  __TI_prof_data_size                                                                                        
    ffffffff  __TI_prof_data_start                                                                                       
    81f562a8  __TI_readmsg                                                                                               
    7014d3f0  __TI_static_base__                                                                                         
    81fd3ca0  __TI_tmpnams                                                                                               
    81f56300  __TI_writemsg                                                                                              
    81f4a958  __TI_wrt_ok                                                                                                
    81f5f308  __TI_zero_init                                                                                             
    fffface0  __UND_STACK_END                                                                                            
    00000100  __UND_STACK_SIZE                                                                                           
    ffffabe0  __UND_STACK_START                                                                                          
    81f52c9c  __aeabi_assert                                                                                             
    7012ab80  __aeabi_ctype_table_                                                                                       
    7012ab80  __aeabi_ctype_table_C                                                                                      
    70144dec  __aeabi_errno                                                                                              
    81f0a014  __aeabi_errno_addr                                                                                         
    81f5cc10  __aeabi_idiv                                                                                               
    81f61280  __aeabi_idiv0                                                                                              
    81f61290  __aeabi_ldiv0                                                                                              
    81f5eba0  __aeabi_memclr                                                                                             
    81f5eba0  __aeabi_memclr4                                                                                            
    81f5eba0  __aeabi_memclr8                                                                                            
    81f0d10c  __aeabi_memcpy                                                                                             
    81f0d10c  __aeabi_memcpy4                                                                                            
    81f0d10c  __aeabi_memcpy8                                                                                            
    81f5eb90  __aeabi_memset                                                                                             
    81f5eb90  __aeabi_memset4                                                                                            
    81f5eb90  __aeabi_memset8                                                                                            
    81f29b34  __aeabi_uidiv                                                                                              
    81f5e1b4  __aeabi_uldivmod                                                                                           
    ffffffff  __binit__                                                                                                  
    UNDEFED   __c_args__                                                                                                 
    81f5cc10  __divsi3                                                                                                   
    41c3f200  __mpu_init                                                                                                 
    ffffbfe0  __stack                                                                                                    
    80000000  __start___llvm_prf_cnts                                                                                    
    80000000  __stop___llvm_prf_cnts                                                                                     
    81f39e58  __udivmoddi4                                                                                               
    81f29b34  __udivsi3                                                                                                  
    81f5e4a0  _abort_msg                                                                                                 
    81f5e4c0  _args_main                                                                                                 
    41c3f8cc  _c_int00                                                                                                   
    70143808  _device                                                                                                    
    41c3e100  _freertosresetvectors                                                                                      
    70142ae4  _ftable                                                                                                    
    70144df0  _lock                                                                                                      
    81f0ba7c  _nop                                                                                                       
    70144008  _stream                                                                                                    
    70144f00  _sys_memory                                                                                                
    81f5e4e0  _system_post_cinit                                                                                         
    41c3f370  _system_pre_init                                                                                           
    70144df4  _unlock                                                                                                    
    81f0ba74  abort                                                                                                      
    81f2c950  aligned_alloc                                                                                              
    7013f980  argArray                                                                                                   
    81f52d08  atoi                                                                                                       
    ffffffff  binit                                                                                                      
    7012c0f8  cal_main_0_bus_int_cal_l_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_11_11                                 
    81f4ee84  close                                                                                                      
    7012c100  cmp_event_introuter_main_0_bus_outp_0_15_to_gic500ss_main_0_bus_spi_544_559                                
    7012c108  cmp_event_introuter_main_0_bus_outp_24_31_to_pdma_main1_main_0_bus_levent_in_8_15                          
    7012c110  cpsw_2guss_mcu_0_bus_cpts_comp_6_6_to_cmp_event_introuter_main_0_bus_in_7_7                                
    7012c118  cpsw_2guss_mcu_0_bus_cpts_genf0_3_3_to_timesync_event_introuter_main_0_bus_in_12_12                        
    7012c120  cpsw_2guss_mcu_0_bus_cpts_genf1_4_4_to_timesync_event_introuter_main_0_bus_in_13_13                        
    7012c128  cpsw_2guss_mcu_0_bus_cpts_sync_5_5_to_timesync_event_introuter_main_0_bus_in_31_31                         
    81f291e0  csl_wiz8m_sb_refclk100p0MHz_32b_8Gbps_PCIE_1l1c                                                            
    7012c130  dcc_main_0_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_120_120                         
    7012c138  dcc_main_1_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_121_121                         
    7012c140  dcc_main_2_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_122_122                         
    7012c148  dcc_main_3_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_123_123                         
    7012c150  dcc_main_4_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_124_124                         
    7012c158  dcc_main_5_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_125_125                         
    7012c160  dcc_main_6_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_126_126                         
    7012c168  dcc_main_7_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_127_127                         
    7012c170  ddr39ss_gs80_main_0_bus_ddrss_v2h_other_err_lvl_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_10_10          
    7012c178  dmtimer_dmc1ms_main_0_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_108_108                    
    7012c180  dmtimer_dmc1ms_main_10_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_118_118                   
    7012c188  dmtimer_dmc1ms_main_11_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_119_119                   
    7012c190  dmtimer_dmc1ms_main_1_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_109_109                    
    7012c198  dmtimer_dmc1ms_main_2_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_110_110                    
    7012c1a0  dmtimer_dmc1ms_main_3_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_111_111                    
    7012c1a8  dmtimer_dmc1ms_main_4_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_112_112                    
    7012c1b0  dmtimer_dmc1ms_main_5_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_113_113                    
    7012c1b8  dmtimer_dmc1ms_main_6_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_114_114                    
    7012c1c0  dmtimer_dmc1ms_main_7_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_115_115                    
    7012c1c8  dmtimer_dmc1ms_main_8_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_116_116                    
    7012c1d0  dmtimer_dmc1ms_main_9_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_117_117                    
    81f446d0  eTaskGetState                                                                                              
    7012c1d8  ecap_main_0_bus_ecap_int_0_0_to_main2mcu_pls_introuter_main_0_bus_in_17_17                                 
    7012c1e0  ehrpwm_main_0_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_2_2                               
    7012c1e8  ehrpwm_main_0_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_8_8                            
    7012c1f0  ehrpwm_main_1_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_3_3                               
    7012c1f8  ehrpwm_main_1_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_9_9                            
    7012c200  ehrpwm_main_2_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_4_4                               
    7012c208  ehrpwm_main_2_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_10_10                          
    7012c210  ehrpwm_main_3_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_5_5                               
    7012c218  ehrpwm_main_3_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_11_11                          
    7012c220  ehrpwm_main_4_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_6_6                               
    7012c228  ehrpwm_main_4_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_12_12                          
    7012c230  ehrpwm_main_5_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_7_7                               
    7012c238  ehrpwm_main_5_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_13_13                          
    7012c240  elm_main_0_bus_elm_porocpsinterrupt_lvl_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_7_7                    
    7012c248  emmc2sd3ss_gs80_main_0_bus_emmcsdss_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_29_29                 
    7012c250  emmc4sd3ss_gs80_main_0_bus_emmcsdss_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_28_28                 
    7012c258  eqep_main_0_bus_eqep_int_0_0_to_main2mcu_pls_introuter_main_0_bus_in_14_14                                 
    7012c260  eqep_main_1_bus_eqep_int_0_0_to_main2mcu_pls_introuter_main_0_bus_in_15_15                                 
    7012c268  eqep_main_2_bus_eqep_int_0_0_to_main2mcu_pls_introuter_main_0_bus_in_16_16                                 
    81f56e68  exit                                                                                                       
    81f47ebc  fflush                                                                                                     
    81f52d74  finddevice                                                                                                 
    81f2fa3c  fputs                                                                                                      
    81f2bd3c  free                                                                                                       
    81f50920  frexp                                                                                                      
    81f50920  frexpl                                                                                                     
    81f0d104  fseek                                                                                                      
    81f47f68  fseeko                                                                                                     
    70140180  fxnArray                                                                                                   
    70144880  gAM65xxMIIPinmuxData                                                                                       
    70142e8c  gAM65xxMainPinmuxData                                                                                      
    70143880  gAM65xxWkupPinmuxData                                                                                      
    70141980  gBoardClkModuleID                                                                                          
    70128f54  gCslR5MpuCfg                                                                                               
    70144254  gDmTimerPInfoTbl                                                                                           
    81fbbd80  gEnetMp                                                                                                    
    81fd2778  gEnetMp_cpswStats                                                                                          
    81fd38b8  gEnetMp_icssgPaStats                                                                                       
    81fd3ad8  gEnetMp_icssgStats                                                                                         
    81fd3d90  gEnetOsalObj                                                                                               
    701445d4  gEnetPhyDrvDp83822                                                                                         
    701445fc  gEnetPhyDrvDp83867                                                                                         
    70144624  gEnetPhyDrvGeneric                                                                                         
    7014464c  gEnetPhyDrvVsc8514                                                                                         
    70144b70  gEnetSoc_PruIcssg0                                                                                         
    70144b80  gEnetSoc_PruIcssg1                                                                                         
    70144b90  gEnetSoc_PruIcssg2                                                                                         
    7012cf00  gEnetSoc_cpsw2g                                                                                            
    70144180  gEnetSoc_cpsw2gMacObj                                                                                      
    701441c8  gEnetSoc_cpsw2gSocCfg                                                                                      
    81fc6240  gEnetSoc_dmaObj                                                                                            
    70144294  gEnetSoc_icssg0DMacSocCfg                                                                                  
    701352c0  gEnetSoc_icssg0DMacp1                                                                                      
    70136380  gEnetSoc_icssg0DMacp2                                                                                      
    70000000  gEnetSoc_icssg0HostPoolMem                                                                                 
    70038000  gEnetSoc_icssg0HostPreQueueMem                                                                             
    70030000  gEnetSoc_icssg0HostQueueMem                                                                                
    700c3000  gEnetSoc_icssg0PortPoolMem                                                                                 
    70040000  gEnetSoc_icssg0ScratchMem                                                                                  
    70137440  gEnetSoc_icssg0Swt                                                                                         
    7014477c  gEnetSoc_icssg0SwtSocCfg                                                                                   
    701442d4  gEnetSoc_icssg1DMacSocCfg                                                                                  
    70138500  gEnetSoc_icssg1DMacp1                                                                                      
    701395c0  gEnetSoc_icssg1DMacp2                                                                                      
    70041000  gEnetSoc_icssg1HostPoolMem                                                                                 
    70079000  gEnetSoc_icssg1HostPreQueueMem                                                                             
    70071000  gEnetSoc_icssg1HostQueueMem                                                                                
    700db000  gEnetSoc_icssg1PortPoolMem                                                                                 
    70081000  gEnetSoc_icssg1ScratchMem                                                                                  
    7013a680  gEnetSoc_icssg1Swt                                                                                         
    7014479c  gEnetSoc_icssg1SwtSocCfg                                                                                   
    70144314  gEnetSoc_icssg2DMacSocCfg                                                                                  
    7013b740  gEnetSoc_icssg2DMacp1                                                                                      
    7013c800  gEnetSoc_icssg2DMacp2                                                                                      
    70082000  gEnetSoc_icssg2HostPoolMem                                                                                 
    700ba000  gEnetSoc_icssg2HostPreQueueMem                                                                             
    700b2000  gEnetSoc_icssg2HostQueueMem                                                                                
    700f3000  gEnetSoc_icssg2PortPoolMem                                                                                 
    700c2000  gEnetSoc_icssg2ScratchMem                                                                                  
    7013d8c0  gEnetSoc_icssg2Swt                                                                                         
    701447bc  gEnetSoc_icssg2SwtSocCfg                                                                                   
    701438f8  gEnetSoc_perObj                                                                                            
    70144ec9  gEnetTrace_runtimeLevel                                                                                    
    81fd3bc8  gEnetUtilsObj                                                                                              
    701444b4  gExptnHandlers                                                                                             
    70144ecd  gOsalArchConfig                                                                                            
    70144df8  gOsalClockAllocCnt                                                                                         
    70144dfc  gOsalClockPeak                                                                                             
    70144e00  gOsalHwiAllocCnt                                                                                           
    70144e04  gOsalHwiPeak                                                                                               
    70144e08  gOsalMutexAllocCnt                                                                                         
    70144e0c  gOsalMutexPeak                                                                                             
    70144e10  gOsalSemAllocCnt                                                                                           
    70144e14  gOsalSemPeak                                                                                               
    70144e18  gOsalTaskAllocCnt                                                                                          
    70144e1c  gOsalTaskPeak                                                                                              
    70144e20  gOsalTimerAllocCnt                                                                                         
    70144e24  gOsalTimerPeak                                                                                             
    70144820  gOsal_HwAttrs                                                                                              
    701444e4  gPruicssMdioInfo                                                                                           
    70143614  gRmIaInstances                                                                                             
    70142f4c  gRmIrInstances                                                                                             
    7012a3f0  gRmIrqTree                                                                                                 
    7012ab7c  gRmIrqTreeCount                                                                                            
    81fd3d40  gRovDummyQueue                                                                                             
    70143fb4  gSciclientHandle                                                                                           
    701296f8  gSciclientMap                                                                                              
    70144840  gSciclient_secProxyCfg                                                                                     
    701445a4  gSystem0PinCfgPG1                                                                                          
    70144c70  gSystemPinCfg                                                                                              
    81fd3e40  gTimerCntrl                                                                                                
    70142458  gTimerStructs                                                                                              
    7012b070  gUdmaRmDefBoardCfg_MainNavss                                                                               
    7012b118  gUdmaRmDefBoardCfg_McuNavss                                                                                
    70143e48  gUdmaRmSharedResPrms                                                                                       
    81fd3f04  gVimBaseAddr                                                                                               
    7014444c  gWkup_system0PinCfgPG1                                                                                     
    70144d10  gWkup_systemPinCfg                                                                                         
    81f4368c  getdevice                                                                                                  
    7012c270  gpio_144_main_0_bus_gpio_0_95_to_main_gpiomux_introuter_main_0_bus_in_0_95                                 
    7012c278  gpio_144_main_0_bus_gpio_bank_256_261_to_main_gpiomux_introuter_main_0_bus_in_192_197                      
    7012c280  gpio_144_main_1_bus_gpio_0_89_to_main_gpiomux_introuter_main_0_bus_in_96_185                               
    7012c288  gpio_144_main_1_bus_gpio_bank_256_261_to_main_gpiomux_introuter_main_0_bus_in_200_205                      
    7012c290  gpio_144_wkup_0_bus_gpio_0_55_to_wkup_gpiomux_introuter_wkup_0_bus_in_0_55                                 
    7012c298  gpio_144_wkup_0_bus_gpio_bank_128_131_to_wkup_gpiomux_introuter_wkup_0_bus_in_60_63                        
    7012c2a0  gpmc_main_0_bus_gpmc_sinterrupt_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_8_8                            
    7012c2a8  icss_g_main_0_bus_pr1_edc0_sync0_out_304_304_to_timesync_event_introuter_main_0_bus_in_16_16               
    7012c2b0  icss_g_main_0_bus_pr1_edc0_sync1_out_305_305_to_timesync_event_introuter_main_0_bus_in_17_17               
    7012c2b8  icss_g_main_0_bus_pr1_edc1_sync0_out_306_306_to_timesync_event_introuter_main_0_bus_in_18_18               
    7012c2c0  icss_g_main_0_bus_pr1_edc1_sync1_out_307_307_to_timesync_event_introuter_main_0_bus_in_19_19               
    7012c2c8  icss_g_main_0_bus_pr1_host_intr_pend_294_301_to_main2mcu_lvl_introuter_main_0_bus_in_32_39                 
    7012c2d0  icss_g_main_0_bus_pr1_host_intr_req_286_293_to_cmp_event_introuter_main_0_bus_in_8_15                      
    7012c2d8  icss_g_main_0_bus_pr1_iep0_cmp_intr_req_268_283_to_cmp_event_introuter_main_0_bus_in_32_47                 
    7012c2e0  icss_g_main_0_bus_pr1_iep1_cmp_intr_req_256_261_to_cmp_event_introuter_main_0_bus_in_48_53                 
    7012c2e8  icss_g_main_0_bus_pr1_iep1_cmp_intr_req_6_15_to_cmp_event_introuter_main_0_bus_in_54_63                    
    7012c2f0  icss_g_main_0_bus_pr1_rx_sof_intr_req_284_285_to_main2mcu_pls_introuter_main_0_bus_in_20_21                
    7012c2f8  icss_g_main_0_bus_pr1_tx_sof_intr_req_302_303_to_main2mcu_pls_introuter_main_0_bus_in_22_23                
    7012c300  icss_g_main_1_bus_pr1_edc0_sync0_out_304_304_to_timesync_event_introuter_main_0_bus_in_20_20               
    7012c308  icss_g_main_1_bus_pr1_edc0_sync1_out_305_305_to_timesync_event_introuter_main_0_bus_in_21_21               
    7012c310  icss_g_main_1_bus_pr1_edc1_sync0_out_306_306_to_timesync_event_introuter_main_0_bus_in_22_22               
    7012c318  icss_g_main_1_bus_pr1_edc1_sync1_out_307_307_to_timesync_event_introuter_main_0_bus_in_23_23               
    7012c320  icss_g_main_1_bus_pr1_host_intr_pend_294_301_to_main2mcu_lvl_introuter_main_0_bus_in_40_47                 
    7012c328  icss_g_main_1_bus_pr1_host_intr_req_286_293_to_cmp_event_introuter_main_0_bus_in_16_23                     
    7012c330  icss_g_main_1_bus_pr1_iep0_cmp_intr_req_268_283_to_cmp_event_introuter_main_0_bus_in_64_79                 
    7012c338  icss_g_main_1_bus_pr1_iep1_cmp_intr_req_256_261_to_cmp_event_introuter_main_0_bus_in_80_85                 
    7012c340  icss_g_main_1_bus_pr1_iep1_cmp_intr_req_6_15_to_cmp_event_introuter_main_0_bus_in_86_95                    
    7012c348  icss_g_main_1_bus_pr1_rx_sof_intr_req_284_285_to_main2mcu_pls_introuter_main_0_bus_in_24_25                
    7012c350  icss_g_main_1_bus_pr1_tx_sof_intr_req_302_303_to_main2mcu_pls_introuter_main_0_bus_in_26_27                
    7012c358  icss_g_main_2_bus_pr1_edc0_sync0_out_304_304_to_timesync_event_introuter_main_0_bus_in_24_24               
    7012c360  icss_g_main_2_bus_pr1_edc0_sync1_out_305_305_to_timesync_event_introuter_main_0_bus_in_25_25               
    7012c368  icss_g_main_2_bus_pr1_edc1_sync0_out_306_306_to_timesync_event_introuter_main_0_bus_in_26_26               
    7012c370  icss_g_main_2_bus_pr1_edc1_sync1_out_307_307_to_timesync_event_introuter_main_0_bus_in_27_27               
    7012c378  icss_g_main_2_bus_pr1_host_intr_pend_294_301_to_main2mcu_lvl_introuter_main_0_bus_in_48_55                 
    7012c380  icss_g_main_2_bus_pr1_host_intr_req_286_293_to_cmp_event_introuter_main_0_bus_in_24_31                     
    7012c388  icss_g_main_2_bus_pr1_iep0_cmp_intr_req_268_283_to_cmp_event_introuter_main_0_bus_in_96_111                
    7012c390  icss_g_main_2_bus_pr1_iep1_cmp_intr_req_256_261_to_cmp_event_introuter_main_0_bus_in_112_117               
    7012c398  icss_g_main_2_bus_pr1_iep1_cmp_intr_req_6_15_to_cmp_event_introuter_main_0_bus_in_118_127                  
    7012c3a0  icss_g_main_2_bus_pr1_rx_sof_intr_req_284_285_to_main2mcu_pls_introuter_main_0_bus_in_28_29                
    7012c3a8  icss_g_main_2_bus_pr1_tx_sof_intr_req_302_303_to_main2mcu_pls_introuter_main_0_bus_in_30_31                
    70141f28  intrMap                                                                                                    
    70141180  intrPri                                                                                                    
    70140980  intrSrcType                                                                                                
    7012c3b0  k3_boltv2_main_0_bus_exp_intr_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_57_57                            
    7012c3b8  k3_boltv2_main_0_bus_gpu_irq_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_56_56                             
    7012c3c0  k3_boltv2_main_0_bus_init_err_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_58_58                            
    7012c3c8  k3_boltv2_main_0_bus_target_err_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_59_59                          
    7012c3d0  k3_cc_debug_cell_main_0_bus_aqcmpintr_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_13_13              
    7012c3d8  k3_dss_ul_main_0_bus_dispc_intr_req_0_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_2_2                      
    7012c3e0  k3_dss_ul_main_0_bus_dispc_intr_req_1_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_3_3                      
    7012c3e8  k3_main_debug_cell_main_0_bus_aqcmpintr_level_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_14_14            
    7012c3f0  k3_main_debug_cell_main_0_bus_ctm_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_15_15                  
    81f34990  ldexp                                                                                                      
    81f34990  ldexpl                                                                                                     
    81f5b7a4  lseek                                                                                                      
    7012c3f8  m4_main_cbass_main_0_bus_LPSC_per_common_err_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_172_172      
    7012c400  m4_main_dbg_cbass_main_0_bus_LPSC_main_debug_err_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_173_173  
    7012c408  m4_main_fw_cbass_main_0_bus_LPSC_main_infra_err_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_174_174   
    7012c410  m4_main_infra_cbass_main_0_bus_LPSC_main_infra_err_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_175_175
    81f38ea0  main                                                                                                       
    7012c418  main2mcu_lvl_introuter_main_0_bus_outl_0_63_to_mcu_armss0_cpu0_bus_intr_160_223                            
    7012c420  main2mcu_lvl_introuter_main_0_bus_outl_0_63_to_mcu_armss0_cpu1_bus_intr_160_223                            
    7012c428  main2mcu_pls_introuter_main_0_bus_outp_0_47_to_mcu_armss0_cpu0_bus_intr_224_271                            
    7012c430  main2mcu_pls_introuter_main_0_bus_outp_0_47_to_mcu_armss0_cpu1_bus_intr_224_271                            
    7012c438  main_ctrl_mmr_main_0_bus_access_err_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_6_6                        
    7012c440  main_gpiomux_introuter_main_0_bus_outp_0_31_to_gic500ss_main_0_bus_spi_392_423                             
    7012c448  main_gpiomux_introuter_main_0_bus_outp_0_7_to_esm_main_main_0_bus_esm_pls_event0_512_519                   
    7012c450  main_gpiomux_introuter_main_0_bus_outp_0_7_to_esm_main_main_0_bus_esm_pls_event1_520_527                   
    7012c458  main_gpiomux_introuter_main_0_bus_outp_0_7_to_esm_main_main_0_bus_esm_pls_event2_248_255                   
    7012c460  main_gpiomux_introuter_main_0_bus_outp_20_25_to_icss_g_main_0_bus_pr1_iep0_cap_intr_req_262_267            
    7012c468  main_gpiomux_introuter_main_0_bus_outp_20_25_to_icss_g_main_1_bus_pr1_iep0_cap_intr_req_262_267            
    7012c470  main_gpiomux_introuter_main_0_bus_outp_20_25_to_icss_g_main_2_bus_pr1_iep0_cap_intr_req_262_267            
    7012c478  main_gpiomux_introuter_main_0_bus_outp_24_31_to_icss_g_main_0_bus_pr1_slv_intr_88_95                       
    7012c480  main_gpiomux_introuter_main_0_bus_outp_24_31_to_icss_g_main_1_bus_pr1_slv_intr_88_95                       
    7012c488  main_gpiomux_introuter_main_0_bus_outp_24_31_to_icss_g_main_2_bus_pr1_slv_intr_88_95                       
    7012c490  main_gpiomux_introuter_main_0_bus_outp_26_31_to_icss_g_main_0_bus_pr1_iep1_cap_intr_req_0_5                
    7012c498  main_gpiomux_introuter_main_0_bus_outp_26_31_to_icss_g_main_1_bus_pr1_iep1_cap_intr_req_0_5                
    7012c4a0  main_gpiomux_introuter_main_0_bus_outp_26_31_to_icss_g_main_2_bus_pr1_iep1_cap_intr_req_0_5                
    81f0adb4  malloc                                                                                                     
    7012c4a8  mcasp_main_0_bus_rec_intr_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_17_17                           
    7012c4b0  mcasp_main_0_bus_xmit_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_16_16                          
    7012c4b8  mcasp_main_1_bus_rec_intr_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_19_19                           
    7012c4c0  mcasp_main_1_bus_xmit_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_18_18                          
    7012c4c8  mcasp_main_2_bus_rec_intr_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_21_21                           
    7012c4d0  mcasp_main_2_bus_xmit_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_20_20                          
    7012c4d8  mcu_navss0_intr_aggr_0_intaggr_vintr_pend_0_255_to_mcu_navss0_intr_router_0_in_intr_0_255                  
    7012c4e0  mcu_navss0_intr_router_0_outl_intr_0_31_to_mcu_armss0_cpu0_bus_intr_64_95                                  
    7012c4e8  mcu_navss0_intr_router_0_outl_intr_32_63_to_mcu_armss0_cpu1_bus_intr_64_95                                 
    81f2c950  memalign                                                                                                   
    81f58df8  memccpy                                                                                                    
    81f2f5c0  memcpy                                                                                                     
    81f49a70  memset                                                                                                     
    7012c4f0  mshsi2c_main_0_bus_pointrpend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_100_100                          
    7012c4f8  mshsi2c_main_1_bus_pointrpend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_101_101                          
    7012c500  mshsi2c_main_2_bus_pointrpend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_102_102                          
    7012c508  mshsi2c_main_3_bus_pointrpend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_103_103                          
    7012c510  navss0_cpts0_event_pend_intr_0_0_to_navss0_intr_router_0_in_intr_391_391                                   
    7012c518  navss0_intr_router_0_outl_intr_0_63_to_gic500ss_main_0_bus_spi_64_127                                      
    7012c520  navss0_intr_router_0_outl_intr_120_127_to_main2mcu_lvl_introuter_main_0_bus_in_184_191                     
    7012c528  navss0_intr_router_0_outl_intr_128_135_to_icss_g_main_0_bus_pr1_slv_intr_46_53                             
    7012c530  navss0_intr_router_0_outl_intr_136_143_to_icss_g_main_1_bus_pr1_slv_intr_46_53                             
    7012c538  navss0_intr_router_0_outl_intr_144_151_to_icss_g_main_2_bus_pr1_slv_intr_46_53                             
    7012c540  navss0_intr_router_0_outl_intr_64_119_to_gic500ss_main_0_bus_spi_448_503                                   
    7012c548  navss0_mailbox0_cluster0_pend_intr_0_3_to_navss0_intr_router_0_in_intr_436_439                             
    7012c550  navss0_mailbox0_cluster10_pend_intr_0_3_to_navss0_intr_router_0_in_intr_396_399                            
    7012c558  navss0_mailbox0_cluster11_pend_intr_0_3_to_navss0_intr_router_0_in_intr_392_395                            
    7012c560  navss0_mailbox0_cluster1_pend_intr_0_3_to_navss0_intr_router_0_in_intr_432_435                             
    7012c568  navss0_mailbox0_cluster2_pend_intr_0_3_to_navss0_intr_router_0_in_intr_428_431                             
    7012c570  navss0_mailbox0_cluster3_pend_intr_0_3_to_navss0_intr_router_0_in_intr_424_427                             
    7012c578  navss0_mailbox0_cluster4_pend_intr_0_3_to_navss0_intr_router_0_in_intr_420_423                             
    7012c580  navss0_mailbox0_cluster5_pend_intr_0_3_to_navss0_intr_router_0_in_intr_416_419                             
    7012c588  navss0_mailbox0_cluster6_pend_intr_0_3_to_navss0_intr_router_0_in_intr_412_415                             
    7012c590  navss0_mailbox0_cluster7_pend_intr_0_3_to_navss0_intr_router_0_in_intr_408_411                             
    7012c598  navss0_mailbox0_cluster8_pend_intr_0_3_to_navss0_intr_router_0_in_intr_404_407                             
    7012c5a0  navss0_mailbox0_cluster9_pend_intr_0_3_to_navss0_intr_router_0_in_intr_400_403                             
    7012c5a8  navss0_mcrc0_dma_event_intr_0_3_to_navss0_intr_router_0_in_intr_384_387                                    
    7012c5b0  navss0_mcrc0_dma_event_intr_0_3_to_navss0_udmass_inta0_intaggr_levt_pend_0_3                               
    7012c5b8  navss0_mcrc0_int_mcrc_intr_8_8_to_navss0_intr_router_0_in_intr_388_388                                     
    7012c5c0  navss0_modss_inta0_intaggr_vintr_pend_0_63_to_navss0_intr_router_0_in_intr_320_383                         
    7012c5c8  navss0_modss_inta1_intaggr_vintr_pend_0_63_to_navss0_intr_router_0_in_intr_256_319                         
    7012c5d0  navss0_pvu0_pend_intr_0_0_to_navss0_intr_router_0_in_intr_390_390                                          
    7012c5d8  navss0_pvu1_pend_intr_0_0_to_navss0_intr_router_0_in_intr_389_389                                          
    7012c5e0  navss0_udmass_inta0_intaggr_vintr_pend_0_255_to_navss0_intr_router_0_in_intr_0_255                         
    7012c5e8  navss256l_main_0_bus_cpts0_comp_9_9_to_cmp_event_introuter_main_0_bus_in_4_4                               
    7012c5f0  navss256l_main_0_bus_cpts0_genf0_10_10_to_timesync_event_introuter_main_0_bus_in_4_4                       
    7012c5f8  navss256l_main_0_bus_cpts0_genf1_11_11_to_timesync_event_introuter_main_0_bus_in_5_5                       
    7012c600  navss256l_main_0_bus_cpts0_genf2_12_12_to_timesync_event_introuter_main_0_bus_in_6_6                       
    7012c608  navss256l_main_0_bus_cpts0_genf3_13_13_to_timesync_event_introuter_main_0_bus_in_7_7                       
    7012c610  navss256l_main_0_bus_cpts0_genf4_14_14_to_timesync_event_introuter_main_0_bus_in_8_8                       
    7012c618  navss256l_main_0_bus_cpts0_genf5_15_15_to_timesync_event_introuter_main_0_bus_in_9_9                       
    7012c620  navss256l_main_0_bus_cpts0_sync_16_16_to_timesync_event_introuter_main_0_bus_in_30_30                      
    81f5ff50  osalArch_Init                                                                                              
    81fd3ee4  parmbuf                                                                                                    
    7012c628  pcie_g3x2_main_0_bus_pcie0_pend_13_13_to_main2mcu_lvl_introuter_main_0_bus_in_64_64                        
    7012c630  pcie_g3x2_main_0_bus_pcie10_pend_15_15_to_main2mcu_lvl_introuter_main_0_bus_in_74_74                       
    7012c638  pcie_g3x2_main_0_bus_pcie11_pend_14_14_to_main2mcu_lvl_introuter_main_0_bus_in_75_75                       
    7012c640  pcie_g3x2_main_0_bus_pcie12_pend_6_6_to_main2mcu_lvl_introuter_main_0_bus_in_76_76                         
    7012c648  pcie_g3x2_main_0_bus_pcie13_pend_10_10_to_main2mcu_lvl_introuter_main_0_bus_in_77_77                       
    7012c650  pcie_g3x2_main_0_bus_pcie14_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_78_78                         
    7012c658  pcie_g3x2_main_0_bus_pcie1_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_65_65                          
    7012c660  pcie_g3x2_main_0_bus_pcie2_pend_7_7_to_main2mcu_lvl_introuter_main_0_bus_in_66_66                          
    7012c668  pcie_g3x2_main_0_bus_pcie3_pend_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_67_67                          
    7012c670  pcie_g3x2_main_0_bus_pcie4_pend_5_5_to_main2mcu_lvl_introuter_main_0_bus_in_68_68                          
    7012c678  pcie_g3x2_main_0_bus_pcie5_pend_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_69_69                          
    7012c680  pcie_g3x2_main_0_bus_pcie6_pend_11_11_to_main2mcu_lvl_introuter_main_0_bus_in_70_70                        
    7012c688  pcie_g3x2_main_0_bus_pcie7_pend_8_8_to_main2mcu_lvl_introuter_main_0_bus_in_71_71                          
    7012c690  pcie_g3x2_main_0_bus_pcie8_pend_9_9_to_main2mcu_lvl_introuter_main_0_bus_in_72_72                          
    7012c698  pcie_g3x2_main_0_bus_pcie9_pend_16_16_to_main2mcu_lvl_introuter_main_0_bus_in_73_73                        
    7012c6a0  pcie_g3x2_main_0_bus_pcie_cpts_comp_19_19_to_cmp_event_introuter_main_0_bus_in_5_5                         
    7012c6a8  pcie_g3x2_main_0_bus_pcie_cpts_genf0_20_20_to_timesync_event_introuter_main_0_bus_in_10_10                 
    7012c6b0  pcie_g3x2_main_0_bus_pcie_cpts_hw1_push_17_17_to_timesync_event_introuter_main_0_bus_in_14_14              
    7012c6b8  pcie_g3x2_main_0_bus_pcie_cpts_pend_12_12_to_main2mcu_lvl_introuter_main_0_bus_in_79_79                    
    7012c6c0  pcie_g3x2_main_0_bus_pcie_cpts_sync_21_21_to_timesync_event_introuter_main_0_bus_in_28_28                  
    7012c6c8  pcie_g3x2_main_1_bus_pcie0_pend_13_13_to_main2mcu_lvl_introuter_main_0_bus_in_80_80                        
    7012c6d0  pcie_g3x2_main_1_bus_pcie10_pend_15_15_to_main2mcu_lvl_introuter_main_0_bus_in_90_90                       
    7012c6d8  pcie_g3x2_main_1_bus_pcie11_pend_14_14_to_main2mcu_lvl_introuter_main_0_bus_in_91_91                       
    7012c6e0  pcie_g3x2_main_1_bus_pcie12_pend_6_6_to_main2mcu_lvl_introuter_main_0_bus_in_92_92                         
    7012c6e8  pcie_g3x2_main_1_bus_pcie13_pend_10_10_to_main2mcu_lvl_introuter_main_0_bus_in_93_93                       
    7012c6f0  pcie_g3x2_main_1_bus_pcie14_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_94_94                         
    7012c6f8  pcie_g3x2_main_1_bus_pcie1_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_81_81                          
    7012c700  pcie_g3x2_main_1_bus_pcie2_pend_7_7_to_main2mcu_lvl_introuter_main_0_bus_in_82_82                          
    7012c708  pcie_g3x2_main_1_bus_pcie3_pend_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_83_83                          
    7012c710  pcie_g3x2_main_1_bus_pcie4_pend_5_5_to_main2mcu_lvl_introuter_main_0_bus_in_84_84                          
    7012c718  pcie_g3x2_main_1_bus_pcie5_pend_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_85_85                          
    7012c720  pcie_g3x2_main_1_bus_pcie6_pend_11_11_to_main2mcu_lvl_introuter_main_0_bus_in_86_86                        
    7012c728  pcie_g3x2_main_1_bus_pcie7_pend_8_8_to_main2mcu_lvl_introuter_main_0_bus_in_87_87                          
    7012c730  pcie_g3x2_main_1_bus_pcie8_pend_9_9_to_main2mcu_lvl_introuter_main_0_bus_in_88_88                          
    7012c738  pcie_g3x2_main_1_bus_pcie9_pend_16_16_to_main2mcu_lvl_introuter_main_0_bus_in_89_89                        
    7012c740  pcie_g3x2_main_1_bus_pcie_cpts_comp_19_19_to_cmp_event_introuter_main_0_bus_in_6_6                         
    7012c748  pcie_g3x2_main_1_bus_pcie_cpts_genf0_20_20_to_timesync_event_introuter_main_0_bus_in_11_11                 
    7012c750  pcie_g3x2_main_1_bus_pcie_cpts_hw1_push_17_17_to_timesync_event_introuter_main_0_bus_in_15_15              
    7012c758  pcie_g3x2_main_1_bus_pcie_cpts_pend_12_12_to_main2mcu_lvl_introuter_main_0_bus_in_95_95                    
    7012c760  pcie_g3x2_main_1_bus_pcie_cpts_sync_21_21_to_timesync_event_introuter_main_0_bus_in_29_29                  
    81f39d40  pruicss_get_mem_info                                                                                       
    701422cc  prussInitCfg                                                                                               
    81fd2df8  prussObjects                                                                                               
    70144b08  pruss_config                                                                                               
    81f5d5d0  pvTaskIncrementMutexHeldCount                                                                              
    81f5b8e0  pvTimerGetTimerID                                                                                          
    70144e38  pxCurrentTCB                                                                                               
    81f3f910  pxPortInitialiseStack                                                                                      
    81f5867c  rand                                                                                                       
    81f0d108  remove                                                                                                     
    7012c768  sa2_ul_main_0_bus_sa_ul_pka_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_5_5                                
    7012c770  sa2_ul_main_0_bus_sa_ul_trng_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_4_4                               
    81f34990  scalbn                                                                                                     
    81f34990  scalbnl                                                                                                    
    81f33e20  setvbuf                                                                                                    
    81f51b08  snprintf                                                                                                   
    7012c778  spi_main_0_bus_intr_spi_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_96_96                                  
    7012c780  spi_main_1_bus_intr_spi_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_97_97                                  
    7012c788  spi_main_2_bus_intr_spi_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_98_98                                  
    7012c790  spi_main_3_bus_intr_spi_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_99_99                                  
    81f56460  sprintf                                                                                                    
    7012c7a0  timesync_event_introuter_main_0_bus_outl_0_0_to_navss256l_main_0_bus_cpts0_hw1_push_0_0                    
    7012c7a8  timesync_event_introuter_main_0_bus_outl_10_10_to_icss_g_main_0_bus_pr1_edc1_latch0_in_310_310             
    7012c7b0  timesync_event_introuter_main_0_bus_outl_11_11_to_icss_g_main_0_bus_pr1_edc1_latch1_in_311_311             
    7012c7b8  timesync_event_introuter_main_0_bus_outl_12_12_to_icss_g_main_1_bus_pr1_edc0_latch0_in_308_308             
    7012c7c0  timesync_event_introuter_main_0_bus_outl_13_13_to_icss_g_main_1_bus_pr1_edc0_latch1_in_309_309             
    7012c7c8  timesync_event_introuter_main_0_bus_outl_14_14_to_icss_g_main_1_bus_pr1_edc1_latch0_in_310_310             
    7012c7d0  timesync_event_introuter_main_0_bus_outl_15_15_to_icss_g_main_1_bus_pr1_edc1_latch1_in_311_311             
    7012c7d8  timesync_event_introuter_main_0_bus_outl_16_16_to_icss_g_main_2_bus_pr1_edc0_latch0_in_308_308             
    7012c7e0  timesync_event_introuter_main_0_bus_outl_17_17_to_icss_g_main_2_bus_pr1_edc0_latch1_in_309_309             
    7012c7e8  timesync_event_introuter_main_0_bus_outl_18_18_to_icss_g_main_2_bus_pr1_edc1_latch0_in_310_310             
    7012c7f0  timesync_event_introuter_main_0_bus_outl_19_19_to_icss_g_main_2_bus_pr1_edc1_latch1_in_311_311             
    7012c7f8  timesync_event_introuter_main_0_bus_outl_1_1_to_navss256l_main_0_bus_cpts0_hw2_push_2_2                    
    7012c800  timesync_event_introuter_main_0_bus_outl_20_20_to_pcie_g3x2_main_0_bus_pcie_cpts_hw2_push_18_18            
    7012c808  timesync_event_introuter_main_0_bus_outl_21_21_to_pcie_g3x2_main_1_bus_pcie_cpts_hw2_push_18_18            
    7012c810  timesync_event_introuter_main_0_bus_outl_24_24_to_cpsw_2guss_mcu_0_bus_cpts_hw3_push_0_0                   
    7012c818  timesync_event_introuter_main_0_bus_outl_25_25_to_cpsw_2guss_mcu_0_bus_cpts_hw4_push_2_2                   
    7012c820  timesync_event_introuter_main_0_bus_outl_2_2_to_navss256l_main_0_bus_cpts0_hw3_push_3_3                    
    7012c828  timesync_event_introuter_main_0_bus_outl_32_39_to_pdma_main1_main_0_bus_levent_in_0_7                      
    7012c830  timesync_event_introuter_main_0_bus_outl_3_3_to_navss256l_main_0_bus_cpts0_hw4_push_4_4                    
    7012c838  timesync_event_introuter_main_0_bus_outl_4_4_to_navss256l_main_0_bus_cpts0_hw5_push_5_5                    
    7012c840  timesync_event_introuter_main_0_bus_outl_5_5_to_navss256l_main_0_bus_cpts0_hw6_push_6_6                    
    7012c848  timesync_event_introuter_main_0_bus_outl_6_6_to_navss256l_main_0_bus_cpts0_hw7_push_7_7                    
    7012c850  timesync_event_introuter_main_0_bus_outl_7_7_to_navss256l_main_0_bus_cpts0_hw8_push_8_8                    
    7012c858  timesync_event_introuter_main_0_bus_outl_8_8_to_icss_g_main_0_bus_pr1_edc0_latch0_in_308_308               
    7012c860  timesync_event_introuter_main_0_bus_outl_9_9_to_icss_g_main_0_bus_pr1_edc0_latch1_in_309_309               
    7012cdb0  tisci_if_CAL0                                                                                              
    7012cdb4  tisci_if_CBASS0                                                                                            
    7012cdb8  tisci_if_CBASS_DEBUG0                                                                                      
    7012cdbc  tisci_if_CBASS_FW0                                                                                         
    7012cdc0  tisci_if_CBASS_INFRA0                                                                                      
    7012cdc4  tisci_if_CCDEBUGSS0                                                                                        
    7012c868  tisci_if_CMPEVENT_INTRTR0                                                                                  
    7012cdc8  tisci_if_CTRL_MMR0                                                                                         
    7012cdcc  tisci_if_DCC0                                                                                              
    7012cdd0  tisci_if_DCC1                                                                                              
    7012cdd4  tisci_if_DCC2                                                                                              
    7012cdd8  tisci_if_DCC3                                                                                              
    7012cddc  tisci_if_DCC4                                                                                              
    7012cde0  tisci_if_DCC5                                                                                              
    7012cde4  tisci_if_DCC6                                                                                              
    7012cde8  tisci_if_DCC7                                                                                              
    7012cdec  tisci_if_DDRSS0                                                                                            
    7012c870  tisci_if_DEBUGSS0                                                                                          
    7012c878  tisci_if_DSS0                                                                                              
    7012cdf0  tisci_if_ECAP0                                                                                             
    7012c880  tisci_if_EHRPWM0                                                                                           
    7012c888  tisci_if_EHRPWM1                                                                                           
    7012c890  tisci_if_EHRPWM2                                                                                           
    7012c898  tisci_if_EHRPWM3                                                                                           
    7012c8a0  tisci_if_EHRPWM4                                                                                           
    7012c8a8  tisci_if_EHRPWM5                                                                                           
    7012cdf4  tisci_if_ELM0                                                                                              
    7012cdf8  tisci_if_EQEP0                                                                                             
    7012cdfc  tisci_if_EQEP1                                                                                             
    7012ce00  tisci_if_EQEP2                                                                                             
    7012c8b0  tisci_if_GPIO0                                                                                             
    7012c8b8  tisci_if_GPIO1                                                                                             
    7012bbe4  tisci_if_GPIOMUX_INTRTR0                                                                                   
    7012ce04  tisci_if_GPMC0                                                                                             
    7012c048  tisci_if_GPU0                                                                                              
    7012ce08  tisci_if_I2C0                                                                                              
    7012ce0c  tisci_if_I2C1                                                                                              
    7012ce10  tisci_if_I2C2                                                                                              
    7012ce14  tisci_if_I2C3                                                                                              
    7012c8c0  tisci_if_MAIN2MCU_LVL_INTRTR0                                                                              
    7012c8c8  tisci_if_MAIN2MCU_PLS_INTRTR0                                                                              
    7012c8d0  tisci_if_MCASP0                                                                                            
    7012c8d8  tisci_if_MCASP1                                                                                            
    7012c8e0  tisci_if_MCASP2                                                                                            
    7012ce18  tisci_if_MCSPI0                                                                                            
    7012ce1c  tisci_if_MCSPI1                                                                                            
    7012ce20  tisci_if_MCSPI2                                                                                            
    7012ce24  tisci_if_MCSPI3                                                                                            
    7012c058  tisci_if_MCU_CPSW0                                                                                         
    7012ce28  tisci_if_MMCSD0                                                                                            
    7012ce2c  tisci_if_MMCSD1                                                                                            
    7012beb8  tisci_if_NAVSS0                                                                                            
    7012b90c  tisci_if_PCIE0                                                                                             
    7012b95c  tisci_if_PCIE1                                                                                             
    7012bcd4  tisci_if_PRU_ICSSG0                                                                                        
    7012bd00  tisci_if_PRU_ICSSG1                                                                                        
    7012bd2c  tisci_if_PRU_ICSSG2                                                                                        
    7012c8e8  tisci_if_SA2_UL0                                                                                           
    7012ce30  tisci_if_TIMER0                                                                                            
    7012ce3c  tisci_if_TIMER1                                                                                            
    7012ce34  tisci_if_TIMER10                                                                                           
    7012ce38  tisci_if_TIMER11                                                                                           
    7012ce40  tisci_if_TIMER2                                                                                            
    7012ce44  tisci_if_TIMER3                                                                                            
    7012ce48  tisci_if_TIMER4                                                                                            
    7012ce4c  tisci_if_TIMER5                                                                                            
    7012ce50  tisci_if_TIMER6                                                                                            
    7012ce54  tisci_if_TIMER7                                                                                            
    7012ce58  tisci_if_TIMER8                                                                                            
    7012ce5c  tisci_if_TIMER9                                                                                            
    7012b688  tisci_if_TIMESYNC_INTRTR0                                                                                  
    7012ce60  tisci_if_UART0                                                                                             
    7012ce64  tisci_if_UART1                                                                                             
    7012ce68  tisci_if_UART2                                                                                             
    7012b9ac  tisci_if_USB3SS0                                                                                           
    7012b9fc  tisci_if_USB3SS1                                                                                           
    7012c8f0  tisci_if_WKUP_GPIO0                                                                                        
    7012bf30  tisci_if_WKUP_GPIOMUX_INTRTR0                                                                              
    7012ce6c  tisci_if_mcu_navss0_intr_aggr_0                                                                            
    7012c8f8  tisci_if_mcu_navss0_intr_router_0                                                                          
    7012ce70  tisci_if_navss0_cpts0                                                                                      
    7012bfe0  tisci_if_navss0_intr_router_0                                                                              
    7012ce74  tisci_if_navss0_mailbox0_cluster0                                                                          
    7012ce80  tisci_if_navss0_mailbox0_cluster1                                                                          
    7012ce78  tisci_if_navss0_mailbox0_cluster10                                                                         
    7012ce7c  tisci_if_navss0_mailbox0_cluster11                                                                         
    7012ce84  tisci_if_navss0_mailbox0_cluster2                                                                          
    7012ce88  tisci_if_navss0_mailbox0_cluster3                                                                          
    7012ce8c  tisci_if_navss0_mailbox0_cluster4                                                                          
    7012ce90  tisci_if_navss0_mailbox0_cluster5                                                                          
    7012ce94  tisci_if_navss0_mailbox0_cluster6                                                                          
    7012ce98  tisci_if_navss0_mailbox0_cluster7                                                                          
    7012ce9c  tisci_if_navss0_mailbox0_cluster8                                                                          
    7012cea0  tisci_if_navss0_mailbox0_cluster9                                                                          
    7012c0e4  tisci_if_navss0_mcrc0                                                                                      
    7012cea4  tisci_if_navss0_modss_inta0                                                                                
    7012cea8  tisci_if_navss0_modss_inta1                                                                                
    7012ceac  tisci_if_navss0_pvu0                                                                                       
    7012ceb0  tisci_if_navss0_pvu1                                                                                       
    7012ceb4  tisci_if_navss0_udmass_inta0                                                                               
    701429e8  uartInitCfg                                                                                                
    70144dd8  uart_stdio                                                                                                 
    81f60b60  uiPortGetRunTimeCounterValue                                                                               
    70144e40  ulCriticalNesting                                                                                          
    70144e44  ulPortInterruptNesting                                                                                     
    70144e48  ulPortSchedularRunning                                                                                     
    70144e4c  ulPortTaskHasFPUContext                                                                                    
    70144e50  ulPortYieldRequired                                                                                        
    81f5ff80  ulTaskGetIdleRunTimeCounter                                                                                
    81f58e40  unlink                                                                                                     
    7012cc20  usart_main_0_bus_usart_irq_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_104_104                             
    7012cc28  usart_main_1_bus_usart_irq_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_105_105                             
    7012cc30  usart_main_2_bus_usart_irq_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_106_106                             
    7012cc38  usb3ss2p0_gs80_main_0_bus_bc_lvl_18_18_to_main2mcu_lvl_introuter_main_0_bus_in_130_130                     
    7012cc40  usb3ss2p0_gs80_main_0_bus_i00_lvl_19_19_to_main2mcu_lvl_introuter_main_0_bus_in_132_132                    
    7012cc48  usb3ss2p0_gs80_main_0_bus_i01_lvl_8_8_to_main2mcu_lvl_introuter_main_0_bus_in_133_133                      
    7012cc50  usb3ss2p0_gs80_main_0_bus_i02_lvl_7_7_to_main2mcu_lvl_introuter_main_0_bus_in_134_134                      
    7012cc58  usb3ss2p0_gs80_main_0_bus_i03_lvl_13_13_to_main2mcu_lvl_introuter_main_0_bus_in_135_135                    
    7012cc60  usb3ss2p0_gs80_main_0_bus_i04_lvl_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_136_136                      
    7012cc68  usb3ss2p0_gs80_main_0_bus_i05_lvl_12_12_to_main2mcu_lvl_introuter_main_0_bus_in_137_137                    
    7012cc70  usb3ss2p0_gs80_main_0_bus_i06_lvl_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_138_138                      
    7012cc78  usb3ss2p0_gs80_main_0_bus_i07_lvl_6_6_to_main2mcu_lvl_introuter_main_0_bus_in_139_139                      
    7012cc80  usb3ss2p0_gs80_main_0_bus_i08_lvl_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_140_140                      
    7012cc88  usb3ss2p0_gs80_main_0_bus_i09_lvl_11_11_to_main2mcu_lvl_introuter_main_0_bus_in_141_141                    
    7012cc90  usb3ss2p0_gs80_main_0_bus_i10_lvl_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_142_142                      
    7012cc98  usb3ss2p0_gs80_main_0_bus_i11_lvl_20_20_to_main2mcu_lvl_introuter_main_0_bus_in_143_143                    
    7012cca0  usb3ss2p0_gs80_main_0_bus_i12_lvl_9_9_to_main2mcu_lvl_introuter_main_0_bus_in_144_144                      
    7012cca8  usb3ss2p0_gs80_main_0_bus_i13_lvl_15_15_to_main2mcu_lvl_introuter_main_0_bus_in_145_145                    
    7012ccb0  usb3ss2p0_gs80_main_0_bus_i14_lvl_5_5_to_main2mcu_lvl_introuter_main_0_bus_in_146_146                      
    7012ccb8  usb3ss2p0_gs80_main_0_bus_i15_lvl_10_10_to_main2mcu_lvl_introuter_main_0_bus_in_147_147                    
    7012ccc0  usb3ss2p0_gs80_main_0_bus_misc_lvl_17_17_to_main2mcu_lvl_introuter_main_0_bus_in_129_129                   
    7012ccc8  usb3ss2p0_gs80_main_0_bus_otg_lvl_14_14_to_main2mcu_lvl_introuter_main_0_bus_in_128_128                    
    7012ccd0  usb3ss2p0_gs80_main_0_bus_pme_gen_lvl_16_16_to_main2mcu_lvl_introuter_main_0_bus_in_131_131                
    7012ccd8  usb3ss2p0_gs80_main_1_bus_bc_lvl_18_18_to_main2mcu_lvl_introuter_main_0_bus_in_150_150                     
    7012cce0  usb3ss2p0_gs80_main_1_bus_i00_lvl_19_19_to_main2mcu_lvl_introuter_main_0_bus_in_152_152                    
    7012cce8  usb3ss2p0_gs80_main_1_bus_i01_lvl_8_8_to_main2mcu_lvl_introuter_main_0_bus_in_153_153                      
    7012ccf0  usb3ss2p0_gs80_main_1_bus_i02_lvl_7_7_to_main2mcu_lvl_introuter_main_0_bus_in_154_154                      
    7012ccf8  usb3ss2p0_gs80_main_1_bus_i03_lvl_13_13_to_main2mcu_lvl_introuter_main_0_bus_in_155_155                    
    7012cd00  usb3ss2p0_gs80_main_1_bus_i04_lvl_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_156_156                      
    7012cd08  usb3ss2p0_gs80_main_1_bus_i05_lvl_12_12_to_main2mcu_lvl_introuter_main_0_bus_in_157_157                    
    7012cd10  usb3ss2p0_gs80_main_1_bus_i06_lvl_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_158_158                      
    7012cd18  usb3ss2p0_gs80_main_1_bus_i07_lvl_6_6_to_main2mcu_lvl_introuter_main_0_bus_in_159_159                      
    7012cd20  usb3ss2p0_gs80_main_1_bus_i08_lvl_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_160_160                      
    7012cd28  usb3ss2p0_gs80_main_1_bus_i09_lvl_11_11_to_main2mcu_lvl_introuter_main_0_bus_in_161_161                    
    7012cd30  usb3ss2p0_gs80_main_1_bus_i10_lvl_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_162_162                      
    7012cd38  usb3ss2p0_gs80_main_1_bus_i11_lvl_20_20_to_main2mcu_lvl_introuter_main_0_bus_in_163_163                    
    7012cd40  usb3ss2p0_gs80_main_1_bus_i12_lvl_9_9_to_main2mcu_lvl_introuter_main_0_bus_in_164_164                      
    7012cd48  usb3ss2p0_gs80_main_1_bus_i13_lvl_15_15_to_main2mcu_lvl_introuter_main_0_bus_in_165_165                    
    7012cd50  usb3ss2p0_gs80_main_1_bus_i14_lvl_5_5_to_main2mcu_lvl_introuter_main_0_bus_in_166_166                      
    7012cd58  usb3ss2p0_gs80_main_1_bus_i15_lvl_10_10_to_main2mcu_lvl_introuter_main_0_bus_in_167_167                    
    7012cd60  usb3ss2p0_gs80_main_1_bus_misc_lvl_17_17_to_main2mcu_lvl_introuter_main_0_bus_in_149_149                   
    7012cd68  usb3ss2p0_gs80_main_1_bus_otg_lvl_14_14_to_main2mcu_lvl_introuter_main_0_bus_in_148_148                    
    7012cd70  usb3ss2p0_gs80_main_1_bus_pme_gen_lvl_16_16_to_main2mcu_lvl_introuter_main_0_bus_in_151_151                
    81f59f70  uxListRemove                                                                                               
    81f55110  uxPortGetTimeInUsec                                                                                        
    7012ceb8  uxTopUsedPriority                                                                                          
    81f5e0d0  vApplicationGetIdleTaskMemory                                                                              
    81f5e100  vApplicationGetTimerTaskMemory                                                                             
    81f60600  vApplicationIdleHook                                                                                       
    81f58e90  vApplicationLoadHook                                                                                       
    81f5d650  vApplicationStackOverflowHook                                                                              
    81f5e130  vListInitialise                                                                                            
    81f60b70  vListInitialiseItem                                                                                        
    81f546d0  vListInsert                                                                                                
    81f5c3a0  vListInsertEnd                                                                                             
    81f612a0  vPortConfigTimerForRunTimeStats                                                                            
    81f612b0  vPortEndScheduler                                                                                          
    81f57dc0  vPortEnterCritical                                                                                         
    81f58ee0  vPortExitCritical                                                                                          
    81f43760  vPortFree                                                                                                  
    7014d164  vPortRestoreTaskContext                                                                                    
    81f5b920  vPortTimerTickHandler                                                                                      
    81f612c0  vPortValidateInterruptPriority                                                                             
    81f5f2b0  vPortYeildFromISR                                                                                          
    81f5af70  vQueueAddToRegistry                                                                                        
    81f59fb0  vQueueDelete                                                                                               
    81f59ff0  vQueueUnregisterQueue                                                                                      
    81f55170  vQueueWaitForMessageRestricted                                                                             
    81f55b90  vTaskDelay                                                                                                 
    81f365b0  vTaskDelete                                                                                                
    81f5e500  vTaskEndScheduler                                                                                          
    81f44870  vTaskGetInfo                                                                                               
    81f5e160  vTaskInternalSetTimeOutState                                                                               
    81f5ffa0  vTaskMissedYield                                                                                           
    81f586d0  vTaskPlaceOnEventList                                                                                      
    81f56520  vTaskPlaceOnEventListRestricted                                                                            
    81f3bda0  vTaskPriorityDisinheritAfterTimeout                                                                        
    81f40450  vTaskStartScheduler                                                                                        
    81f366e0  vTaskSuspend                                                                                               
    81f5f2d0  vTaskSuspendAll                                                                                            
    81f31700  vTaskSwitchContext                                                                                         
    701427e8  vint_usage_count_MCU_NAVSS0_INTR_AGGR_0                                                                    
    70144394  vint_usage_count_NAVSS0_MODSS_INTA0                                                                        
    701443d4  vint_usage_count_NAVSS0_MODSS_INTA1                                                                        
    701428e8  vint_usage_count_NAVSS0_UDMASS_INTA0                                                                       
    81f54734  vsnprintf                                                                                                  
    81f5e520  wcslen                                                                                                     
    7012cd78  wkup_gpiomux_introuter_wkup_0_bus_outp_0_11_to_dmsc_wkup_0_bus_int_8_19                                    
    7012cd80  wkup_gpiomux_introuter_wkup_0_bus_outp_0_15_to_gic500ss_main_0_bus_spi_712_727                             
    7012cd88  wkup_gpiomux_introuter_wkup_0_bus_outp_0_15_to_mcu_armss0_cpu0_bus_intr_124_139                            
    7012cd90  wkup_gpiomux_introuter_wkup_0_bus_outp_0_15_to_mcu_armss0_cpu1_bus_intr_124_139                            
    7012cd98  wkup_gpiomux_introuter_wkup_0_bus_outp_8_15_to_esm_wkup_wkup_0_bus_esm_pls_event0_256_263                  
    7012cda0  wkup_gpiomux_introuter_wkup_0_bus_outp_8_15_to_esm_wkup_wkup_0_bus_esm_pls_event1_264_271                  
    7012cda8  wkup_gpiomux_introuter_wkup_0_bus_outp_8_15_to_esm_wkup_wkup_0_bus_esm_pls_event2_88_95                    
    81f5b954  write                                                                                                      
    81f5f2f0  xPortInIsrContext                                                                                          
    81f5a030  xPortStartScheduler                                                                                        
    81f51b80  xQueueCreateCountingSemaphoreStatic                                                                        
    81f5b990  xQueueCreateMutexStatic                                                                                    
    81f3e740  xQueueGenericCreateStatic                                                                                  
    81f499d0  xQueueGenericReset                                                                                         
    81f26450  xQueueGenericSend                                                                                          
    81f37520  xQueueGenericSendFromISR                                                                                   
    81f3c7c0  xQueueGiveFromISR                                                                                          
    81f52de0  xQueueGiveMutexRecursive                                                                                   
    81f255b0  xQueueReceive                                                                                              
    81f3e830  xQueueReceiveFromISR                                                                                       
    81fd39d8  xQueueRegistry                                                                                             
    81f22200  xQueueSemaphoreTake                                                                                        
    81f547a0  xQueueTakeMutexRecursive                                                                                   
    81f459d0  xTaskCheckForTimeOut                                                                                       
    81f41880  xTaskCreateStatic                                                                                          
    81f60610  xTaskGetCurrentTaskHandle                                                                                  
    81f5b9d0  xTaskGetSchedulerState                                                                                     
    81f5e540  xTaskGetTickCount                                                                                          
    81f5e190  xTaskGetTickCountFromISR                                                                                   
    81f2ad60  xTaskIncrementTick                                                                                         
    81f3fa00  xTaskPriorityDisinherit                                                                                    
    81f3beb0  xTaskPriorityInherit                                                                                       
    81f44940  xTaskRemoveFromEventList                                                                                   
    81f31f50  xTaskResumeAll                                                                                             
    81f4a290  xTimerCreateStatic                                                                                         
    81f480d0  xTimerCreateTimerTask                                                                                      
    81f48180  xTimerGenericCommand                                                                                       
    
    
    GLOBAL SYMBOLS: SORTED BY Symbol Address 
    
    address   name                                                                                                       
    -------   ----                                                                                                       
    00000100  __ABORT_STACK_SIZE                                                                                         
    00000100  __FIQ_STACK_SIZE                                                                                           
    00000100  __SVC_STACK_SIZE                                                                                           
    00000100  __UND_STACK_SIZE                                                                                           
    00001000  __IRQ_STACK_SIZE                                                                                           
    00004000  __STACK_SIZE                                                                                               
    00008000  __SYSMEM_SIZE                                                                                              
    41c3e100  _freertosresetvectors                                                                                      
    41c3f100  CSL_armR5MPUCfg                                                                                            
    41c3f200  __mpu_init                                                                                                 
    41c3f2a0  CSL_armR5StartupGetCpuID                                                                                   
    41c3f2c0  CSL_startupVimSetIntrEnable                                                                                
    41c3f320  CSL_startupVimClrIntrPending                                                                               
    41c3f370  _system_pre_init                                                                                           
    41c3f3c4  CSL_armR5StartupCacheEnableAllCache                                                                        
    41c3f3d8  CSL_armR5StartupCacheEnableForceWrThru                                                                     
    41c3f3f8  CSL_armR5StartupCacheEnableICache                                                                          
    41c3f428  CSL_armR5StartupCacheEnableDCache                                                                          
    41c3f458  CSL_armR5StartupCacheInvalidateAllIcache                                                                   
    41c3f470  CSL_armR5StartupCacheInvalidateAllDcache                                                                   
    41c3f488  CSL_armR5StartupCacheInvalidateAllCache                                                                    
    41c3f49c  CSL_armR5StartupMpuEnable                                                                                  
    41c3f4c4  CSL_armR5StartupMpuCfgRegion                                                                               
    41c3f4e0  CSL_armR5StartupReadMpidrReg                                                                               
    41c3f4ec  CSL_armR5StartupFpuEnable                                                                                  
    41c3f514  CSL_armR5StartupIntrEnableVic                                                                              
    41c3f538  CSL_armR5StartupIntrEnableFiq                                                                              
    41c3f558  CSL_armR5StartupIntrEnableIrq                                                                              
    41c3f578  CSL_armR5SetDLFOBit                                                                                        
    41c3f8cc  _c_int00                                                                                                   
    41c3f9a4  HF                                                                                                         
    70000000  gEnetSoc_icssg0HostPoolMem                                                                                 
    70030000  gEnetSoc_icssg0HostQueueMem                                                                                
    70038000  gEnetSoc_icssg0HostPreQueueMem                                                                             
    70040000  gEnetSoc_icssg0ScratchMem                                                                                  
    70041000  gEnetSoc_icssg1HostPoolMem                                                                                 
    70071000  gEnetSoc_icssg1HostQueueMem                                                                                
    70079000  gEnetSoc_icssg1HostPreQueueMem                                                                             
    70081000  gEnetSoc_icssg1ScratchMem                                                                                  
    70082000  gEnetSoc_icssg2HostPoolMem                                                                                 
    700b2000  gEnetSoc_icssg2HostQueueMem                                                                                
    700ba000  gEnetSoc_icssg2HostPreQueueMem                                                                             
    700c2000  gEnetSoc_icssg2ScratchMem                                                                                  
    700c3000  gEnetSoc_icssg0PortPoolMem                                                                                 
    700db000  gEnetSoc_icssg1PortPoolMem                                                                                 
    700f3000  gEnetSoc_icssg2PortPoolMem                                                                                 
    7010d098  RX_PRU_SLICE1_b00_Swt                                                                                      
    7010e7bc  RX_PRU_SLICE0_b00_Swt                                                                                      
    70112520  TX_PRU_SLICE0_b00_DMac                                                                                     
    701137d0  RX_PRU_SLICE1_b00_DMac                                                                                     
    70114a00  RX_PRU_SLICE0_b00_DMac                                                                                     
    70115bd0  TX_PRU_SLICE0_b00_Swt                                                                                      
    70116d78  TX_PRU_SLICE1_b00_DMac                                                                                     
    70119d60  TX_PRU_SLICE1_b00_Swt                                                                                      
    7011cb20  RTU0_SLICE0_b00_Swt                                                                                        
    7011f294  RTU0_SLICE1_b00_Swt                                                                                        
    7011ff48  RTU0_SLICE0_b00_DMac                                                                                       
    70122e34  RTU0_SLICE1_b00_DMac                                                                                       
    70128f54  gCslR5MpuCfg                                                                                               
    701296f8  gSciclientMap                                                                                              
    7012a3f0  gRmIrqTree                                                                                                 
    7012ab7c  gRmIrqTreeCount                                                                                            
    7012ab80  __aeabi_ctype_table_                                                                                       
    7012ab80  __aeabi_ctype_table_C                                                                                      
    7012b070  gUdmaRmDefBoardCfg_MainNavss                                                                               
    7012b118  gUdmaRmDefBoardCfg_McuNavss                                                                                
    7012b688  tisci_if_TIMESYNC_INTRTR0                                                                                  
    7012b90c  tisci_if_PCIE0                                                                                             
    7012b95c  tisci_if_PCIE1                                                                                             
    7012b9ac  tisci_if_USB3SS0                                                                                           
    7012b9fc  tisci_if_USB3SS1                                                                                           
    7012bbe4  tisci_if_GPIOMUX_INTRTR0                                                                                   
    7012bc18  UART_FxnTable_v1                                                                                           
    7012bca8  UART_defaultParams                                                                                         
    7012bcd4  tisci_if_PRU_ICSSG0                                                                                        
    7012bd00  tisci_if_PRU_ICSSG1                                                                                        
    7012bd2c  tisci_if_PRU_ICSSG2                                                                                        
    7012beb8  tisci_if_NAVSS0                                                                                            
    7012bf30  tisci_if_WKUP_GPIOMUX_INTRTR0                                                                              
    7012bfe0  tisci_if_navss0_intr_router_0                                                                              
    7012c048  tisci_if_GPU0                                                                                              
    7012c058  tisci_if_MCU_CPSW0                                                                                         
    7012c0e4  tisci_if_navss0_mcrc0                                                                                      
    7012c0f8  cal_main_0_bus_int_cal_l_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_11_11                                 
    7012c100  cmp_event_introuter_main_0_bus_outp_0_15_to_gic500ss_main_0_bus_spi_544_559                                
    7012c108  cmp_event_introuter_main_0_bus_outp_24_31_to_pdma_main1_main_0_bus_levent_in_8_15                          
    7012c110  cpsw_2guss_mcu_0_bus_cpts_comp_6_6_to_cmp_event_introuter_main_0_bus_in_7_7                                
    7012c118  cpsw_2guss_mcu_0_bus_cpts_genf0_3_3_to_timesync_event_introuter_main_0_bus_in_12_12                        
    7012c120  cpsw_2guss_mcu_0_bus_cpts_genf1_4_4_to_timesync_event_introuter_main_0_bus_in_13_13                        
    7012c128  cpsw_2guss_mcu_0_bus_cpts_sync_5_5_to_timesync_event_introuter_main_0_bus_in_31_31                         
    7012c130  dcc_main_0_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_120_120                         
    7012c138  dcc_main_1_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_121_121                         
    7012c140  dcc_main_2_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_122_122                         
    7012c148  dcc_main_3_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_123_123                         
    7012c150  dcc_main_4_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_124_124                         
    7012c158  dcc_main_5_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_125_125                         
    7012c160  dcc_main_6_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_126_126                         
    7012c168  dcc_main_7_bus_intr_done_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_127_127                         
    7012c170  ddr39ss_gs80_main_0_bus_ddrss_v2h_other_err_lvl_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_10_10          
    7012c178  dmtimer_dmc1ms_main_0_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_108_108                    
    7012c180  dmtimer_dmc1ms_main_10_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_118_118                   
    7012c188  dmtimer_dmc1ms_main_11_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_119_119                   
    7012c190  dmtimer_dmc1ms_main_1_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_109_109                    
    7012c198  dmtimer_dmc1ms_main_2_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_110_110                    
    7012c1a0  dmtimer_dmc1ms_main_3_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_111_111                    
    7012c1a8  dmtimer_dmc1ms_main_4_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_112_112                    
    7012c1b0  dmtimer_dmc1ms_main_5_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_113_113                    
    7012c1b8  dmtimer_dmc1ms_main_6_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_114_114                    
    7012c1c0  dmtimer_dmc1ms_main_7_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_115_115                    
    7012c1c8  dmtimer_dmc1ms_main_8_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_116_116                    
    7012c1d0  dmtimer_dmc1ms_main_9_bus_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_117_117                    
    7012c1d8  ecap_main_0_bus_ecap_int_0_0_to_main2mcu_pls_introuter_main_0_bus_in_17_17                                 
    7012c1e0  ehrpwm_main_0_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_2_2                               
    7012c1e8  ehrpwm_main_0_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_8_8                            
    7012c1f0  ehrpwm_main_1_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_3_3                               
    7012c1f8  ehrpwm_main_1_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_9_9                            
    7012c200  ehrpwm_main_2_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_4_4                               
    7012c208  ehrpwm_main_2_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_10_10                          
    7012c210  ehrpwm_main_3_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_5_5                               
    7012c218  ehrpwm_main_3_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_11_11                          
    7012c220  ehrpwm_main_4_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_6_6                               
    7012c228  ehrpwm_main_4_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_12_12                          
    7012c230  ehrpwm_main_5_bus_epwm_etint_2_2_to_main2mcu_pls_introuter_main_0_bus_in_7_7                               
    7012c238  ehrpwm_main_5_bus_epwm_tripzint_0_0_to_main2mcu_pls_introuter_main_0_bus_in_13_13                          
    7012c240  elm_main_0_bus_elm_porocpsinterrupt_lvl_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_7_7                    
    7012c248  emmc2sd3ss_gs80_main_0_bus_emmcsdss_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_29_29                 
    7012c250  emmc4sd3ss_gs80_main_0_bus_emmcsdss_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_28_28                 
    7012c258  eqep_main_0_bus_eqep_int_0_0_to_main2mcu_pls_introuter_main_0_bus_in_14_14                                 
    7012c260  eqep_main_1_bus_eqep_int_0_0_to_main2mcu_pls_introuter_main_0_bus_in_15_15                                 
    7012c268  eqep_main_2_bus_eqep_int_0_0_to_main2mcu_pls_introuter_main_0_bus_in_16_16                                 
    7012c270  gpio_144_main_0_bus_gpio_0_95_to_main_gpiomux_introuter_main_0_bus_in_0_95                                 
    7012c278  gpio_144_main_0_bus_gpio_bank_256_261_to_main_gpiomux_introuter_main_0_bus_in_192_197                      
    7012c280  gpio_144_main_1_bus_gpio_0_89_to_main_gpiomux_introuter_main_0_bus_in_96_185                               
    7012c288  gpio_144_main_1_bus_gpio_bank_256_261_to_main_gpiomux_introuter_main_0_bus_in_200_205                      
    7012c290  gpio_144_wkup_0_bus_gpio_0_55_to_wkup_gpiomux_introuter_wkup_0_bus_in_0_55                                 
    7012c298  gpio_144_wkup_0_bus_gpio_bank_128_131_to_wkup_gpiomux_introuter_wkup_0_bus_in_60_63                        
    7012c2a0  gpmc_main_0_bus_gpmc_sinterrupt_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_8_8                            
    7012c2a8  icss_g_main_0_bus_pr1_edc0_sync0_out_304_304_to_timesync_event_introuter_main_0_bus_in_16_16               
    7012c2b0  icss_g_main_0_bus_pr1_edc0_sync1_out_305_305_to_timesync_event_introuter_main_0_bus_in_17_17               
    7012c2b8  icss_g_main_0_bus_pr1_edc1_sync0_out_306_306_to_timesync_event_introuter_main_0_bus_in_18_18               
    7012c2c0  icss_g_main_0_bus_pr1_edc1_sync1_out_307_307_to_timesync_event_introuter_main_0_bus_in_19_19               
    7012c2c8  icss_g_main_0_bus_pr1_host_intr_pend_294_301_to_main2mcu_lvl_introuter_main_0_bus_in_32_39                 
    7012c2d0  icss_g_main_0_bus_pr1_host_intr_req_286_293_to_cmp_event_introuter_main_0_bus_in_8_15                      
    7012c2d8  icss_g_main_0_bus_pr1_iep0_cmp_intr_req_268_283_to_cmp_event_introuter_main_0_bus_in_32_47                 
    7012c2e0  icss_g_main_0_bus_pr1_iep1_cmp_intr_req_256_261_to_cmp_event_introuter_main_0_bus_in_48_53                 
    7012c2e8  icss_g_main_0_bus_pr1_iep1_cmp_intr_req_6_15_to_cmp_event_introuter_main_0_bus_in_54_63                    
    7012c2f0  icss_g_main_0_bus_pr1_rx_sof_intr_req_284_285_to_main2mcu_pls_introuter_main_0_bus_in_20_21                
    7012c2f8  icss_g_main_0_bus_pr1_tx_sof_intr_req_302_303_to_main2mcu_pls_introuter_main_0_bus_in_22_23                
    7012c300  icss_g_main_1_bus_pr1_edc0_sync0_out_304_304_to_timesync_event_introuter_main_0_bus_in_20_20               
    7012c308  icss_g_main_1_bus_pr1_edc0_sync1_out_305_305_to_timesync_event_introuter_main_0_bus_in_21_21               
    7012c310  icss_g_main_1_bus_pr1_edc1_sync0_out_306_306_to_timesync_event_introuter_main_0_bus_in_22_22               
    7012c318  icss_g_main_1_bus_pr1_edc1_sync1_out_307_307_to_timesync_event_introuter_main_0_bus_in_23_23               
    7012c320  icss_g_main_1_bus_pr1_host_intr_pend_294_301_to_main2mcu_lvl_introuter_main_0_bus_in_40_47                 
    7012c328  icss_g_main_1_bus_pr1_host_intr_req_286_293_to_cmp_event_introuter_main_0_bus_in_16_23                     
    7012c330  icss_g_main_1_bus_pr1_iep0_cmp_intr_req_268_283_to_cmp_event_introuter_main_0_bus_in_64_79                 
    7012c338  icss_g_main_1_bus_pr1_iep1_cmp_intr_req_256_261_to_cmp_event_introuter_main_0_bus_in_80_85                 
    7012c340  icss_g_main_1_bus_pr1_iep1_cmp_intr_req_6_15_to_cmp_event_introuter_main_0_bus_in_86_95                    
    7012c348  icss_g_main_1_bus_pr1_rx_sof_intr_req_284_285_to_main2mcu_pls_introuter_main_0_bus_in_24_25                
    7012c350  icss_g_main_1_bus_pr1_tx_sof_intr_req_302_303_to_main2mcu_pls_introuter_main_0_bus_in_26_27                
    7012c358  icss_g_main_2_bus_pr1_edc0_sync0_out_304_304_to_timesync_event_introuter_main_0_bus_in_24_24               
    7012c360  icss_g_main_2_bus_pr1_edc0_sync1_out_305_305_to_timesync_event_introuter_main_0_bus_in_25_25               
    7012c368  icss_g_main_2_bus_pr1_edc1_sync0_out_306_306_to_timesync_event_introuter_main_0_bus_in_26_26               
    7012c370  icss_g_main_2_bus_pr1_edc1_sync1_out_307_307_to_timesync_event_introuter_main_0_bus_in_27_27               
    7012c378  icss_g_main_2_bus_pr1_host_intr_pend_294_301_to_main2mcu_lvl_introuter_main_0_bus_in_48_55                 
    7012c380  icss_g_main_2_bus_pr1_host_intr_req_286_293_to_cmp_event_introuter_main_0_bus_in_24_31                     
    7012c388  icss_g_main_2_bus_pr1_iep0_cmp_intr_req_268_283_to_cmp_event_introuter_main_0_bus_in_96_111                
    7012c390  icss_g_main_2_bus_pr1_iep1_cmp_intr_req_256_261_to_cmp_event_introuter_main_0_bus_in_112_117               
    7012c398  icss_g_main_2_bus_pr1_iep1_cmp_intr_req_6_15_to_cmp_event_introuter_main_0_bus_in_118_127                  
    7012c3a0  icss_g_main_2_bus_pr1_rx_sof_intr_req_284_285_to_main2mcu_pls_introuter_main_0_bus_in_28_29                
    7012c3a8  icss_g_main_2_bus_pr1_tx_sof_intr_req_302_303_to_main2mcu_pls_introuter_main_0_bus_in_30_31                
    7012c3b0  k3_boltv2_main_0_bus_exp_intr_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_57_57                            
    7012c3b8  k3_boltv2_main_0_bus_gpu_irq_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_56_56                             
    7012c3c0  k3_boltv2_main_0_bus_init_err_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_58_58                            
    7012c3c8  k3_boltv2_main_0_bus_target_err_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_59_59                          
    7012c3d0  k3_cc_debug_cell_main_0_bus_aqcmpintr_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_13_13              
    7012c3d8  k3_dss_ul_main_0_bus_dispc_intr_req_0_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_2_2                      
    7012c3e0  k3_dss_ul_main_0_bus_dispc_intr_req_1_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_3_3                      
    7012c3e8  k3_main_debug_cell_main_0_bus_aqcmpintr_level_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_14_14            
    7012c3f0  k3_main_debug_cell_main_0_bus_ctm_level_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_15_15                  
    7012c3f8  m4_main_cbass_main_0_bus_LPSC_per_common_err_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_172_172      
    7012c400  m4_main_dbg_cbass_main_0_bus_LPSC_main_debug_err_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_173_173  
    7012c408  m4_main_fw_cbass_main_0_bus_LPSC_main_infra_err_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_174_174   
    7012c410  m4_main_infra_cbass_main_0_bus_LPSC_main_infra_err_intr_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_175_175
    7012c418  main2mcu_lvl_introuter_main_0_bus_outl_0_63_to_mcu_armss0_cpu0_bus_intr_160_223                            
    7012c420  main2mcu_lvl_introuter_main_0_bus_outl_0_63_to_mcu_armss0_cpu1_bus_intr_160_223                            
    7012c428  main2mcu_pls_introuter_main_0_bus_outp_0_47_to_mcu_armss0_cpu0_bus_intr_224_271                            
    7012c430  main2mcu_pls_introuter_main_0_bus_outp_0_47_to_mcu_armss0_cpu1_bus_intr_224_271                            
    7012c438  main_ctrl_mmr_main_0_bus_access_err_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_6_6                        
    7012c440  main_gpiomux_introuter_main_0_bus_outp_0_31_to_gic500ss_main_0_bus_spi_392_423                             
    7012c448  main_gpiomux_introuter_main_0_bus_outp_0_7_to_esm_main_main_0_bus_esm_pls_event0_512_519                   
    7012c450  main_gpiomux_introuter_main_0_bus_outp_0_7_to_esm_main_main_0_bus_esm_pls_event1_520_527                   
    7012c458  main_gpiomux_introuter_main_0_bus_outp_0_7_to_esm_main_main_0_bus_esm_pls_event2_248_255                   
    7012c460  main_gpiomux_introuter_main_0_bus_outp_20_25_to_icss_g_main_0_bus_pr1_iep0_cap_intr_req_262_267            
    7012c468  main_gpiomux_introuter_main_0_bus_outp_20_25_to_icss_g_main_1_bus_pr1_iep0_cap_intr_req_262_267            
    7012c470  main_gpiomux_introuter_main_0_bus_outp_20_25_to_icss_g_main_2_bus_pr1_iep0_cap_intr_req_262_267            
    7012c478  main_gpiomux_introuter_main_0_bus_outp_24_31_to_icss_g_main_0_bus_pr1_slv_intr_88_95                       
    7012c480  main_gpiomux_introuter_main_0_bus_outp_24_31_to_icss_g_main_1_bus_pr1_slv_intr_88_95                       
    7012c488  main_gpiomux_introuter_main_0_bus_outp_24_31_to_icss_g_main_2_bus_pr1_slv_intr_88_95                       
    7012c490  main_gpiomux_introuter_main_0_bus_outp_26_31_to_icss_g_main_0_bus_pr1_iep1_cap_intr_req_0_5                
    7012c498  main_gpiomux_introuter_main_0_bus_outp_26_31_to_icss_g_main_1_bus_pr1_iep1_cap_intr_req_0_5                
    7012c4a0  main_gpiomux_introuter_main_0_bus_outp_26_31_to_icss_g_main_2_bus_pr1_iep1_cap_intr_req_0_5                
    7012c4a8  mcasp_main_0_bus_rec_intr_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_17_17                           
    7012c4b0  mcasp_main_0_bus_xmit_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_16_16                          
    7012c4b8  mcasp_main_1_bus_rec_intr_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_19_19                           
    7012c4c0  mcasp_main_1_bus_xmit_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_18_18                          
    7012c4c8  mcasp_main_2_bus_rec_intr_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_21_21                           
    7012c4d0  mcasp_main_2_bus_xmit_intr_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_20_20                          
    7012c4d8  mcu_navss0_intr_aggr_0_intaggr_vintr_pend_0_255_to_mcu_navss0_intr_router_0_in_intr_0_255                  
    7012c4e0  mcu_navss0_intr_router_0_outl_intr_0_31_to_mcu_armss0_cpu0_bus_intr_64_95                                  
    7012c4e8  mcu_navss0_intr_router_0_outl_intr_32_63_to_mcu_armss0_cpu1_bus_intr_64_95                                 
    7012c4f0  mshsi2c_main_0_bus_pointrpend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_100_100                          
    7012c4f8  mshsi2c_main_1_bus_pointrpend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_101_101                          
    7012c500  mshsi2c_main_2_bus_pointrpend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_102_102                          
    7012c508  mshsi2c_main_3_bus_pointrpend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_103_103                          
    7012c510  navss0_cpts0_event_pend_intr_0_0_to_navss0_intr_router_0_in_intr_391_391                                   
    7012c518  navss0_intr_router_0_outl_intr_0_63_to_gic500ss_main_0_bus_spi_64_127                                      
    7012c520  navss0_intr_router_0_outl_intr_120_127_to_main2mcu_lvl_introuter_main_0_bus_in_184_191                     
    7012c528  navss0_intr_router_0_outl_intr_128_135_to_icss_g_main_0_bus_pr1_slv_intr_46_53                             
    7012c530  navss0_intr_router_0_outl_intr_136_143_to_icss_g_main_1_bus_pr1_slv_intr_46_53                             
    7012c538  navss0_intr_router_0_outl_intr_144_151_to_icss_g_main_2_bus_pr1_slv_intr_46_53                             
    7012c540  navss0_intr_router_0_outl_intr_64_119_to_gic500ss_main_0_bus_spi_448_503                                   
    7012c548  navss0_mailbox0_cluster0_pend_intr_0_3_to_navss0_intr_router_0_in_intr_436_439                             
    7012c550  navss0_mailbox0_cluster10_pend_intr_0_3_to_navss0_intr_router_0_in_intr_396_399                            
    7012c558  navss0_mailbox0_cluster11_pend_intr_0_3_to_navss0_intr_router_0_in_intr_392_395                            
    7012c560  navss0_mailbox0_cluster1_pend_intr_0_3_to_navss0_intr_router_0_in_intr_432_435                             
    7012c568  navss0_mailbox0_cluster2_pend_intr_0_3_to_navss0_intr_router_0_in_intr_428_431                             
    7012c570  navss0_mailbox0_cluster3_pend_intr_0_3_to_navss0_intr_router_0_in_intr_424_427                             
    7012c578  navss0_mailbox0_cluster4_pend_intr_0_3_to_navss0_intr_router_0_in_intr_420_423                             
    7012c580  navss0_mailbox0_cluster5_pend_intr_0_3_to_navss0_intr_router_0_in_intr_416_419                             
    7012c588  navss0_mailbox0_cluster6_pend_intr_0_3_to_navss0_intr_router_0_in_intr_412_415                             
    7012c590  navss0_mailbox0_cluster7_pend_intr_0_3_to_navss0_intr_router_0_in_intr_408_411                             
    7012c598  navss0_mailbox0_cluster8_pend_intr_0_3_to_navss0_intr_router_0_in_intr_404_407                             
    7012c5a0  navss0_mailbox0_cluster9_pend_intr_0_3_to_navss0_intr_router_0_in_intr_400_403                             
    7012c5a8  navss0_mcrc0_dma_event_intr_0_3_to_navss0_intr_router_0_in_intr_384_387                                    
    7012c5b0  navss0_mcrc0_dma_event_intr_0_3_to_navss0_udmass_inta0_intaggr_levt_pend_0_3                               
    7012c5b8  navss0_mcrc0_int_mcrc_intr_8_8_to_navss0_intr_router_0_in_intr_388_388                                     
    7012c5c0  navss0_modss_inta0_intaggr_vintr_pend_0_63_to_navss0_intr_router_0_in_intr_320_383                         
    7012c5c8  navss0_modss_inta1_intaggr_vintr_pend_0_63_to_navss0_intr_router_0_in_intr_256_319                         
    7012c5d0  navss0_pvu0_pend_intr_0_0_to_navss0_intr_router_0_in_intr_390_390                                          
    7012c5d8  navss0_pvu1_pend_intr_0_0_to_navss0_intr_router_0_in_intr_389_389                                          
    7012c5e0  navss0_udmass_inta0_intaggr_vintr_pend_0_255_to_navss0_intr_router_0_in_intr_0_255                         
    7012c5e8  navss256l_main_0_bus_cpts0_comp_9_9_to_cmp_event_introuter_main_0_bus_in_4_4                               
    7012c5f0  navss256l_main_0_bus_cpts0_genf0_10_10_to_timesync_event_introuter_main_0_bus_in_4_4                       
    7012c5f8  navss256l_main_0_bus_cpts0_genf1_11_11_to_timesync_event_introuter_main_0_bus_in_5_5                       
    7012c600  navss256l_main_0_bus_cpts0_genf2_12_12_to_timesync_event_introuter_main_0_bus_in_6_6                       
    7012c608  navss256l_main_0_bus_cpts0_genf3_13_13_to_timesync_event_introuter_main_0_bus_in_7_7                       
    7012c610  navss256l_main_0_bus_cpts0_genf4_14_14_to_timesync_event_introuter_main_0_bus_in_8_8                       
    7012c618  navss256l_main_0_bus_cpts0_genf5_15_15_to_timesync_event_introuter_main_0_bus_in_9_9                       
    7012c620  navss256l_main_0_bus_cpts0_sync_16_16_to_timesync_event_introuter_main_0_bus_in_30_30                      
    7012c628  pcie_g3x2_main_0_bus_pcie0_pend_13_13_to_main2mcu_lvl_introuter_main_0_bus_in_64_64                        
    7012c630  pcie_g3x2_main_0_bus_pcie10_pend_15_15_to_main2mcu_lvl_introuter_main_0_bus_in_74_74                       
    7012c638  pcie_g3x2_main_0_bus_pcie11_pend_14_14_to_main2mcu_lvl_introuter_main_0_bus_in_75_75                       
    7012c640  pcie_g3x2_main_0_bus_pcie12_pend_6_6_to_main2mcu_lvl_introuter_main_0_bus_in_76_76                         
    7012c648  pcie_g3x2_main_0_bus_pcie13_pend_10_10_to_main2mcu_lvl_introuter_main_0_bus_in_77_77                       
    7012c650  pcie_g3x2_main_0_bus_pcie14_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_78_78                         
    7012c658  pcie_g3x2_main_0_bus_pcie1_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_65_65                          
    7012c660  pcie_g3x2_main_0_bus_pcie2_pend_7_7_to_main2mcu_lvl_introuter_main_0_bus_in_66_66                          
    7012c668  pcie_g3x2_main_0_bus_pcie3_pend_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_67_67                          
    7012c670  pcie_g3x2_main_0_bus_pcie4_pend_5_5_to_main2mcu_lvl_introuter_main_0_bus_in_68_68                          
    7012c678  pcie_g3x2_main_0_bus_pcie5_pend_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_69_69                          
    7012c680  pcie_g3x2_main_0_bus_pcie6_pend_11_11_to_main2mcu_lvl_introuter_main_0_bus_in_70_70                        
    7012c688  pcie_g3x2_main_0_bus_pcie7_pend_8_8_to_main2mcu_lvl_introuter_main_0_bus_in_71_71                          
    7012c690  pcie_g3x2_main_0_bus_pcie8_pend_9_9_to_main2mcu_lvl_introuter_main_0_bus_in_72_72                          
    7012c698  pcie_g3x2_main_0_bus_pcie9_pend_16_16_to_main2mcu_lvl_introuter_main_0_bus_in_73_73                        
    7012c6a0  pcie_g3x2_main_0_bus_pcie_cpts_comp_19_19_to_cmp_event_introuter_main_0_bus_in_5_5                         
    7012c6a8  pcie_g3x2_main_0_bus_pcie_cpts_genf0_20_20_to_timesync_event_introuter_main_0_bus_in_10_10                 
    7012c6b0  pcie_g3x2_main_0_bus_pcie_cpts_hw1_push_17_17_to_timesync_event_introuter_main_0_bus_in_14_14              
    7012c6b8  pcie_g3x2_main_0_bus_pcie_cpts_pend_12_12_to_main2mcu_lvl_introuter_main_0_bus_in_79_79                    
    7012c6c0  pcie_g3x2_main_0_bus_pcie_cpts_sync_21_21_to_timesync_event_introuter_main_0_bus_in_28_28                  
    7012c6c8  pcie_g3x2_main_1_bus_pcie0_pend_13_13_to_main2mcu_lvl_introuter_main_0_bus_in_80_80                        
    7012c6d0  pcie_g3x2_main_1_bus_pcie10_pend_15_15_to_main2mcu_lvl_introuter_main_0_bus_in_90_90                       
    7012c6d8  pcie_g3x2_main_1_bus_pcie11_pend_14_14_to_main2mcu_lvl_introuter_main_0_bus_in_91_91                       
    7012c6e0  pcie_g3x2_main_1_bus_pcie12_pend_6_6_to_main2mcu_lvl_introuter_main_0_bus_in_92_92                         
    7012c6e8  pcie_g3x2_main_1_bus_pcie13_pend_10_10_to_main2mcu_lvl_introuter_main_0_bus_in_93_93                       
    7012c6f0  pcie_g3x2_main_1_bus_pcie14_pend_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_94_94                         
    7012c6f8  pcie_g3x2_main_1_bus_pcie1_pend_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_81_81                          
    7012c700  pcie_g3x2_main_1_bus_pcie2_pend_7_7_to_main2mcu_lvl_introuter_main_0_bus_in_82_82                          
    7012c708  pcie_g3x2_main_1_bus_pcie3_pend_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_83_83                          
    7012c710  pcie_g3x2_main_1_bus_pcie4_pend_5_5_to_main2mcu_lvl_introuter_main_0_bus_in_84_84                          
    7012c718  pcie_g3x2_main_1_bus_pcie5_pend_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_85_85                          
    7012c720  pcie_g3x2_main_1_bus_pcie6_pend_11_11_to_main2mcu_lvl_introuter_main_0_bus_in_86_86                        
    7012c728  pcie_g3x2_main_1_bus_pcie7_pend_8_8_to_main2mcu_lvl_introuter_main_0_bus_in_87_87                          
    7012c730  pcie_g3x2_main_1_bus_pcie8_pend_9_9_to_main2mcu_lvl_introuter_main_0_bus_in_88_88                          
    7012c738  pcie_g3x2_main_1_bus_pcie9_pend_16_16_to_main2mcu_lvl_introuter_main_0_bus_in_89_89                        
    7012c740  pcie_g3x2_main_1_bus_pcie_cpts_comp_19_19_to_cmp_event_introuter_main_0_bus_in_6_6                         
    7012c748  pcie_g3x2_main_1_bus_pcie_cpts_genf0_20_20_to_timesync_event_introuter_main_0_bus_in_11_11                 
    7012c750  pcie_g3x2_main_1_bus_pcie_cpts_hw1_push_17_17_to_timesync_event_introuter_main_0_bus_in_15_15              
    7012c758  pcie_g3x2_main_1_bus_pcie_cpts_pend_12_12_to_main2mcu_lvl_introuter_main_0_bus_in_95_95                    
    7012c760  pcie_g3x2_main_1_bus_pcie_cpts_sync_21_21_to_timesync_event_introuter_main_0_bus_in_29_29                  
    7012c768  sa2_ul_main_0_bus_sa_ul_pka_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_5_5                                
    7012c770  sa2_ul_main_0_bus_sa_ul_trng_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_4_4                               
    7012c778  spi_main_0_bus_intr_spi_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_96_96                                  
    7012c780  spi_main_1_bus_intr_spi_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_97_97                                  
    7012c788  spi_main_2_bus_intr_spi_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_98_98                                  
    7012c790  spi_main_3_bus_intr_spi_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_99_99                                  
    7012c7a0  timesync_event_introuter_main_0_bus_outl_0_0_to_navss256l_main_0_bus_cpts0_hw1_push_0_0                    
    7012c7a8  timesync_event_introuter_main_0_bus_outl_10_10_to_icss_g_main_0_bus_pr1_edc1_latch0_in_310_310             
    7012c7b0  timesync_event_introuter_main_0_bus_outl_11_11_to_icss_g_main_0_bus_pr1_edc1_latch1_in_311_311             
    7012c7b8  timesync_event_introuter_main_0_bus_outl_12_12_to_icss_g_main_1_bus_pr1_edc0_latch0_in_308_308             
    7012c7c0  timesync_event_introuter_main_0_bus_outl_13_13_to_icss_g_main_1_bus_pr1_edc0_latch1_in_309_309             
    7012c7c8  timesync_event_introuter_main_0_bus_outl_14_14_to_icss_g_main_1_bus_pr1_edc1_latch0_in_310_310             
    7012c7d0  timesync_event_introuter_main_0_bus_outl_15_15_to_icss_g_main_1_bus_pr1_edc1_latch1_in_311_311             
    7012c7d8  timesync_event_introuter_main_0_bus_outl_16_16_to_icss_g_main_2_bus_pr1_edc0_latch0_in_308_308             
    7012c7e0  timesync_event_introuter_main_0_bus_outl_17_17_to_icss_g_main_2_bus_pr1_edc0_latch1_in_309_309             
    7012c7e8  timesync_event_introuter_main_0_bus_outl_18_18_to_icss_g_main_2_bus_pr1_edc1_latch0_in_310_310             
    7012c7f0  timesync_event_introuter_main_0_bus_outl_19_19_to_icss_g_main_2_bus_pr1_edc1_latch1_in_311_311             
    7012c7f8  timesync_event_introuter_main_0_bus_outl_1_1_to_navss256l_main_0_bus_cpts0_hw2_push_2_2                    
    7012c800  timesync_event_introuter_main_0_bus_outl_20_20_to_pcie_g3x2_main_0_bus_pcie_cpts_hw2_push_18_18            
    7012c808  timesync_event_introuter_main_0_bus_outl_21_21_to_pcie_g3x2_main_1_bus_pcie_cpts_hw2_push_18_18            
    7012c810  timesync_event_introuter_main_0_bus_outl_24_24_to_cpsw_2guss_mcu_0_bus_cpts_hw3_push_0_0                   
    7012c818  timesync_event_introuter_main_0_bus_outl_25_25_to_cpsw_2guss_mcu_0_bus_cpts_hw4_push_2_2                   
    7012c820  timesync_event_introuter_main_0_bus_outl_2_2_to_navss256l_main_0_bus_cpts0_hw3_push_3_3                    
    7012c828  timesync_event_introuter_main_0_bus_outl_32_39_to_pdma_main1_main_0_bus_levent_in_0_7                      
    7012c830  timesync_event_introuter_main_0_bus_outl_3_3_to_navss256l_main_0_bus_cpts0_hw4_push_4_4                    
    7012c838  timesync_event_introuter_main_0_bus_outl_4_4_to_navss256l_main_0_bus_cpts0_hw5_push_5_5                    
    7012c840  timesync_event_introuter_main_0_bus_outl_5_5_to_navss256l_main_0_bus_cpts0_hw6_push_6_6                    
    7012c848  timesync_event_introuter_main_0_bus_outl_6_6_to_navss256l_main_0_bus_cpts0_hw7_push_7_7                    
    7012c850  timesync_event_introuter_main_0_bus_outl_7_7_to_navss256l_main_0_bus_cpts0_hw8_push_8_8                    
    7012c858  timesync_event_introuter_main_0_bus_outl_8_8_to_icss_g_main_0_bus_pr1_edc0_latch0_in_308_308               
    7012c860  timesync_event_introuter_main_0_bus_outl_9_9_to_icss_g_main_0_bus_pr1_edc0_latch1_in_309_309               
    7012c868  tisci_if_CMPEVENT_INTRTR0                                                                                  
    7012c870  tisci_if_DEBUGSS0                                                                                          
    7012c878  tisci_if_DSS0                                                                                              
    7012c880  tisci_if_EHRPWM0                                                                                           
    7012c888  tisci_if_EHRPWM1                                                                                           
    7012c890  tisci_if_EHRPWM2                                                                                           
    7012c898  tisci_if_EHRPWM3                                                                                           
    7012c8a0  tisci_if_EHRPWM4                                                                                           
    7012c8a8  tisci_if_EHRPWM5                                                                                           
    7012c8b0  tisci_if_GPIO0                                                                                             
    7012c8b8  tisci_if_GPIO1                                                                                             
    7012c8c0  tisci_if_MAIN2MCU_LVL_INTRTR0                                                                              
    7012c8c8  tisci_if_MAIN2MCU_PLS_INTRTR0                                                                              
    7012c8d0  tisci_if_MCASP0                                                                                            
    7012c8d8  tisci_if_MCASP1                                                                                            
    7012c8e0  tisci_if_MCASP2                                                                                            
    7012c8e8  tisci_if_SA2_UL0                                                                                           
    7012c8f0  tisci_if_WKUP_GPIO0                                                                                        
    7012c8f8  tisci_if_mcu_navss0_intr_router_0                                                                          
    7012cc20  usart_main_0_bus_usart_irq_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_104_104                             
    7012cc28  usart_main_1_bus_usart_irq_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_105_105                             
    7012cc30  usart_main_2_bus_usart_irq_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_106_106                             
    7012cc38  usb3ss2p0_gs80_main_0_bus_bc_lvl_18_18_to_main2mcu_lvl_introuter_main_0_bus_in_130_130                     
    7012cc40  usb3ss2p0_gs80_main_0_bus_i00_lvl_19_19_to_main2mcu_lvl_introuter_main_0_bus_in_132_132                    
    7012cc48  usb3ss2p0_gs80_main_0_bus_i01_lvl_8_8_to_main2mcu_lvl_introuter_main_0_bus_in_133_133                      
    7012cc50  usb3ss2p0_gs80_main_0_bus_i02_lvl_7_7_to_main2mcu_lvl_introuter_main_0_bus_in_134_134                      
    7012cc58  usb3ss2p0_gs80_main_0_bus_i03_lvl_13_13_to_main2mcu_lvl_introuter_main_0_bus_in_135_135                    
    7012cc60  usb3ss2p0_gs80_main_0_bus_i04_lvl_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_136_136                      
    7012cc68  usb3ss2p0_gs80_main_0_bus_i05_lvl_12_12_to_main2mcu_lvl_introuter_main_0_bus_in_137_137                    
    7012cc70  usb3ss2p0_gs80_main_0_bus_i06_lvl_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_138_138                      
    7012cc78  usb3ss2p0_gs80_main_0_bus_i07_lvl_6_6_to_main2mcu_lvl_introuter_main_0_bus_in_139_139                      
    7012cc80  usb3ss2p0_gs80_main_0_bus_i08_lvl_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_140_140                      
    7012cc88  usb3ss2p0_gs80_main_0_bus_i09_lvl_11_11_to_main2mcu_lvl_introuter_main_0_bus_in_141_141                    
    7012cc90  usb3ss2p0_gs80_main_0_bus_i10_lvl_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_142_142                      
    7012cc98  usb3ss2p0_gs80_main_0_bus_i11_lvl_20_20_to_main2mcu_lvl_introuter_main_0_bus_in_143_143                    
    7012cca0  usb3ss2p0_gs80_main_0_bus_i12_lvl_9_9_to_main2mcu_lvl_introuter_main_0_bus_in_144_144                      
    7012cca8  usb3ss2p0_gs80_main_0_bus_i13_lvl_15_15_to_main2mcu_lvl_introuter_main_0_bus_in_145_145                    
    7012ccb0  usb3ss2p0_gs80_main_0_bus_i14_lvl_5_5_to_main2mcu_lvl_introuter_main_0_bus_in_146_146                      
    7012ccb8  usb3ss2p0_gs80_main_0_bus_i15_lvl_10_10_to_main2mcu_lvl_introuter_main_0_bus_in_147_147                    
    7012ccc0  usb3ss2p0_gs80_main_0_bus_misc_lvl_17_17_to_main2mcu_lvl_introuter_main_0_bus_in_129_129                   
    7012ccc8  usb3ss2p0_gs80_main_0_bus_otg_lvl_14_14_to_main2mcu_lvl_introuter_main_0_bus_in_128_128                    
    7012ccd0  usb3ss2p0_gs80_main_0_bus_pme_gen_lvl_16_16_to_main2mcu_lvl_introuter_main_0_bus_in_131_131                
    7012ccd8  usb3ss2p0_gs80_main_1_bus_bc_lvl_18_18_to_main2mcu_lvl_introuter_main_0_bus_in_150_150                     
    7012cce0  usb3ss2p0_gs80_main_1_bus_i00_lvl_19_19_to_main2mcu_lvl_introuter_main_0_bus_in_152_152                    
    7012cce8  usb3ss2p0_gs80_main_1_bus_i01_lvl_8_8_to_main2mcu_lvl_introuter_main_0_bus_in_153_153                      
    7012ccf0  usb3ss2p0_gs80_main_1_bus_i02_lvl_7_7_to_main2mcu_lvl_introuter_main_0_bus_in_154_154                      
    7012ccf8  usb3ss2p0_gs80_main_1_bus_i03_lvl_13_13_to_main2mcu_lvl_introuter_main_0_bus_in_155_155                    
    7012cd00  usb3ss2p0_gs80_main_1_bus_i04_lvl_3_3_to_main2mcu_lvl_introuter_main_0_bus_in_156_156                      
    7012cd08  usb3ss2p0_gs80_main_1_bus_i05_lvl_12_12_to_main2mcu_lvl_introuter_main_0_bus_in_157_157                    
    7012cd10  usb3ss2p0_gs80_main_1_bus_i06_lvl_4_4_to_main2mcu_lvl_introuter_main_0_bus_in_158_158                      
    7012cd18  usb3ss2p0_gs80_main_1_bus_i07_lvl_6_6_to_main2mcu_lvl_introuter_main_0_bus_in_159_159                      
    7012cd20  usb3ss2p0_gs80_main_1_bus_i08_lvl_2_2_to_main2mcu_lvl_introuter_main_0_bus_in_160_160                      
    7012cd28  usb3ss2p0_gs80_main_1_bus_i09_lvl_11_11_to_main2mcu_lvl_introuter_main_0_bus_in_161_161                    
    7012cd30  usb3ss2p0_gs80_main_1_bus_i10_lvl_0_0_to_main2mcu_lvl_introuter_main_0_bus_in_162_162                      
    7012cd38  usb3ss2p0_gs80_main_1_bus_i11_lvl_20_20_to_main2mcu_lvl_introuter_main_0_bus_in_163_163                    
    7012cd40  usb3ss2p0_gs80_main_1_bus_i12_lvl_9_9_to_main2mcu_lvl_introuter_main_0_bus_in_164_164                      
    7012cd48  usb3ss2p0_gs80_main_1_bus_i13_lvl_15_15_to_main2mcu_lvl_introuter_main_0_bus_in_165_165                    
    7012cd50  usb3ss2p0_gs80_main_1_bus_i14_lvl_5_5_to_main2mcu_lvl_introuter_main_0_bus_in_166_166                      
    7012cd58  usb3ss2p0_gs80_main_1_bus_i15_lvl_10_10_to_main2mcu_lvl_introuter_main_0_bus_in_167_167                    
    7012cd60  usb3ss2p0_gs80_main_1_bus_misc_lvl_17_17_to_main2mcu_lvl_introuter_main_0_bus_in_149_149                   
    7012cd68  usb3ss2p0_gs80_main_1_bus_otg_lvl_14_14_to_main2mcu_lvl_introuter_main_0_bus_in_148_148                    
    7012cd70  usb3ss2p0_gs80_main_1_bus_pme_gen_lvl_16_16_to_main2mcu_lvl_introuter_main_0_bus_in_151_151                
    7012cd78  wkup_gpiomux_introuter_wkup_0_bus_outp_0_11_to_dmsc_wkup_0_bus_int_8_19                                    
    7012cd80  wkup_gpiomux_introuter_wkup_0_bus_outp_0_15_to_gic500ss_main_0_bus_spi_712_727                             
    7012cd88  wkup_gpiomux_introuter_wkup_0_bus_outp_0_15_to_mcu_armss0_cpu0_bus_intr_124_139                            
    7012cd90  wkup_gpiomux_introuter_wkup_0_bus_outp_0_15_to_mcu_armss0_cpu1_bus_intr_124_139                            
    7012cd98  wkup_gpiomux_introuter_wkup_0_bus_outp_8_15_to_esm_wkup_wkup_0_bus_esm_pls_event0_256_263                  
    7012cda0  wkup_gpiomux_introuter_wkup_0_bus_outp_8_15_to_esm_wkup_wkup_0_bus_esm_pls_event1_264_271                  
    7012cda8  wkup_gpiomux_introuter_wkup_0_bus_outp_8_15_to_esm_wkup_wkup_0_bus_esm_pls_event2_88_95                    
    7012cdb0  tisci_if_CAL0                                                                                              
    7012cdb4  tisci_if_CBASS0                                                                                            
    7012cdb8  tisci_if_CBASS_DEBUG0                                                                                      
    7012cdbc  tisci_if_CBASS_FW0                                                                                         
    7012cdc0  tisci_if_CBASS_INFRA0                                                                                      
    7012cdc4  tisci_if_CCDEBUGSS0                                                                                        
    7012cdc8  tisci_if_CTRL_MMR0                                                                                         
    7012cdcc  tisci_if_DCC0                                                                                              
    7012cdd0  tisci_if_DCC1                                                                                              
    7012cdd4  tisci_if_DCC2                                                                                              
    7012cdd8  tisci_if_DCC3                                                                                              
    7012cddc  tisci_if_DCC4                                                                                              
    7012cde0  tisci_if_DCC5                                                                                              
    7012cde4  tisci_if_DCC6                                                                                              
    7012cde8  tisci_if_DCC7                                                                                              
    7012cdec  tisci_if_DDRSS0                                                                                            
    7012cdf0  tisci_if_ECAP0                                                                                             
    7012cdf4  tisci_if_ELM0                                                                                              
    7012cdf8  tisci_if_EQEP0                                                                                             
    7012cdfc  tisci_if_EQEP1                                                                                             
    7012ce00  tisci_if_EQEP2                                                                                             
    7012ce04  tisci_if_GPMC0                                                                                             
    7012ce08  tisci_if_I2C0                                                                                              
    7012ce0c  tisci_if_I2C1                                                                                              
    7012ce10  tisci_if_I2C2                                                                                              
    7012ce14  tisci_if_I2C3                                                                                              
    7012ce18  tisci_if_MCSPI0                                                                                            
    7012ce1c  tisci_if_MCSPI1                                                                                            
    7012ce20  tisci_if_MCSPI2                                                                                            
    7012ce24  tisci_if_MCSPI3                                                                                            
    7012ce28  tisci_if_MMCSD0                                                                                            
    7012ce2c  tisci_if_MMCSD1                                                                                            
    7012ce30  tisci_if_TIMER0                                                                                            
    7012ce34  tisci_if_TIMER10                                                                                           
    7012ce38  tisci_if_TIMER11                                                                                           
    7012ce3c  tisci_if_TIMER1                                                                                            
    7012ce40  tisci_if_TIMER2                                                                                            
    7012ce44  tisci_if_TIMER3                                                                                            
    7012ce48  tisci_if_TIMER4                                                                                            
    7012ce4c  tisci_if_TIMER5                                                                                            
    7012ce50  tisci_if_TIMER6                                                                                            
    7012ce54  tisci_if_TIMER7                                                                                            
    7012ce58  tisci_if_TIMER8                                                                                            
    7012ce5c  tisci_if_TIMER9                                                                                            
    7012ce60  tisci_if_UART0                                                                                             
    7012ce64  tisci_if_UART1                                                                                             
    7012ce68  tisci_if_UART2                                                                                             
    7012ce6c  tisci_if_mcu_navss0_intr_aggr_0                                                                            
    7012ce70  tisci_if_navss0_cpts0                                                                                      
    7012ce74  tisci_if_navss0_mailbox0_cluster0                                                                          
    7012ce78  tisci_if_navss0_mailbox0_cluster10                                                                         
    7012ce7c  tisci_if_navss0_mailbox0_cluster11                                                                         
    7012ce80  tisci_if_navss0_mailbox0_cluster1                                                                          
    7012ce84  tisci_if_navss0_mailbox0_cluster2                                                                          
    7012ce88  tisci_if_navss0_mailbox0_cluster3                                                                          
    7012ce8c  tisci_if_navss0_mailbox0_cluster4                                                                          
    7012ce90  tisci_if_navss0_mailbox0_cluster5                                                                          
    7012ce94  tisci_if_navss0_mailbox0_cluster6                                                                          
    7012ce98  tisci_if_navss0_mailbox0_cluster7                                                                          
    7012ce9c  tisci_if_navss0_mailbox0_cluster8                                                                          
    7012cea0  tisci_if_navss0_mailbox0_cluster9                                                                          
    7012cea4  tisci_if_navss0_modss_inta0                                                                                
    7012cea8  tisci_if_navss0_modss_inta1                                                                                
    7012ceac  tisci_if_navss0_pvu0                                                                                       
    7012ceb0  tisci_if_navss0_pvu1                                                                                       
    7012ceb4  tisci_if_navss0_udmass_inta0                                                                               
    7012ceb8  uxTopUsedPriority                                                                                          
    7012cf00  gEnetSoc_cpsw2g                                                                                            
    701352a8  IcssgUtils_R30DmemAddr                                                                                     
    701352c0  gEnetSoc_icssg0DMacp1                                                                                      
    70136380  gEnetSoc_icssg0DMacp2                                                                                      
    70137440  gEnetSoc_icssg0Swt                                                                                         
    70138500  gEnetSoc_icssg1DMacp1                                                                                      
    701395c0  gEnetSoc_icssg1DMacp2                                                                                      
    7013a680  gEnetSoc_icssg1Swt                                                                                         
    7013b740  gEnetSoc_icssg2DMacp1                                                                                      
    7013c800  gEnetSoc_icssg2DMacp2                                                                                      
    7013d8c0  gEnetSoc_icssg2Swt                                                                                         
    7013f980  argArray                                                                                                   
    70140180  fxnArray                                                                                                   
    70140980  intrSrcType                                                                                                
    70141180  intrPri                                                                                                    
    70141980  gBoardClkModuleID                                                                                          
    70141f28  intrMap                                                                                                    
    701422cc  prussInitCfg                                                                                               
    70142458  gTimerStructs                                                                                              
    701427e8  vint_usage_count_MCU_NAVSS0_INTR_AGGR_0                                                                    
    701428e8  vint_usage_count_NAVSS0_UDMASS_INTA0                                                                       
    701429e8  uartInitCfg                                                                                                
    70142ae4  _ftable                                                                                                    
    70142e8c  gAM65xxMainPinmuxData                                                                                      
    70142f4c  gRmIrInstances                                                                                             
    70143614  gRmIaInstances                                                                                             
    70143808  _device                                                                                                    
    70143880  gAM65xxWkupPinmuxData                                                                                      
    701438f8  gEnetSoc_perObj                                                                                            
    70143e48  gUdmaRmSharedResPrms                                                                                       
    70143fb4  gSciclientHandle                                                                                           
    70144008  _stream                                                                                                    
    70144180  gEnetSoc_cpsw2gMacObj                                                                                      
    701441c8  gEnetSoc_cpsw2gSocCfg                                                                                      
    70144254  gDmTimerPInfoTbl                                                                                           
    70144294  gEnetSoc_icssg0DMacSocCfg                                                                                  
    701442d4  gEnetSoc_icssg1DMacSocCfg                                                                                  
    70144314  gEnetSoc_icssg2DMacSocCfg                                                                                  
    70144394  vint_usage_count_NAVSS0_MODSS_INTA0                                                                        
    701443d4  vint_usage_count_NAVSS0_MODSS_INTA1                                                                        
    7014444c  gWkup_system0PinCfgPG1                                                                                     
    70144484  UART_config                                                                                                
    701444b4  gExptnHandlers                                                                                             
    701444e4  gPruicssMdioInfo                                                                                           
    701445a4  gSystem0PinCfgPG1                                                                                          
    701445d4  gEnetPhyDrvDp83822                                                                                         
    701445fc  gEnetPhyDrvDp83867                                                                                         
    70144624  gEnetPhyDrvGeneric                                                                                         
    7014464c  gEnetPhyDrvVsc8514                                                                                         
    7014477c  gEnetSoc_icssg0SwtSocCfg                                                                                   
    7014479c  gEnetSoc_icssg1SwtSocCfg                                                                                   
    701447bc  gEnetSoc_icssg2SwtSocCfg                                                                                   
    70144820  gOsal_HwAttrs                                                                                              
    70144840  gSciclient_secProxyCfg                                                                                     
    70144880  gAM65xxMIIPinmuxData                                                                                       
    70144b08  pruss_config                                                                                               
    70144b70  gEnetSoc_PruIcssg0                                                                                         
    70144b80  gEnetSoc_PruIcssg1                                                                                         
    70144b90  gEnetSoc_PruIcssg2                                                                                         
    70144c70  gSystemPinCfg                                                                                              
    70144d10  gWkup_systemPinCfg                                                                                         
    70144d80  __TI_cleanup_ptr                                                                                           
    70144d84  __TI_dtors_ptr                                                                                             
    70144dd8  uart_stdio                                                                                                 
    70144de0  FreeRTOS_errno                                                                                             
    70144de8  __TI_ft_end                                                                                                
    70144dec  __aeabi_errno                                                                                              
    70144df0  _lock                                                                                                      
    70144df4  _unlock                                                                                                    
    70144df8  gOsalClockAllocCnt                                                                                         
    70144dfc  gOsalClockPeak                                                                                             
    70144e00  gOsalHwiAllocCnt                                                                                           
    70144e04  gOsalHwiPeak                                                                                               
    70144e08  gOsalMutexAllocCnt                                                                                         
    70144e0c  gOsalMutexPeak                                                                                             
    70144e10  gOsalSemAllocCnt                                                                                           
    70144e14  gOsalSemPeak                                                                                               
    70144e18  gOsalTaskAllocCnt                                                                                          
    70144e1c  gOsalTaskPeak                                                                                              
    70144e20  gOsalTimerAllocCnt                                                                                         
    70144e24  gOsalTimerPeak                                                                                             
    70144e38  pxCurrentTCB                                                                                               
    70144e40  ulCriticalNesting                                                                                          
    70144e44  ulPortInterruptNesting                                                                                     
    70144e48  ulPortSchedularRunning                                                                                     
    70144e4c  ulPortTaskHasFPUContext                                                                                    
    70144e50  ulPortYieldRequired                                                                                        
    70144ec6  Osal_DebugP_Assert_Val                                                                                     
    70144ec9  gEnetTrace_runtimeLevel                                                                                    
    70144ecd  gOsalArchConfig                                                                                            
    70144f00  _sys_memory                                                                                                
    7014cf00  HwiP_fiq_handler                                                                                           
    7014cfd0  HwiP_irq_handler_c                                                                                         
    7014d080  HwiP_reserved_handler                                                                                      
    7014d0b0  HwiP_undefined_handler                                                                                     
    7014d0e0  HwiP_prefetch_abort_handler                                                                                
    7014d110  HwiP_data_abort_handler_c                                                                                  
    7014d164  vPortRestoreTaskContext                                                                                    
    7014d1a8  HwiP_svc_handler                                                                                           
    7014d230  HwiP_irq_handler                                                                                           
    7014d368  HwiP_data_abort_handler                                                                                    
    7014d3f0  __TI_static_base__                                                                                         
    7014f13c  __TI_Handler_Table_Base                                                                                    
    7014f148  __TI_Handler_Table_Limit                                                                                   
    7014f150  __TI_CINIT_Base                                                                                            
    7014f160  __TI_CINIT_Limit                                                                                           
    7014f160  __TI_CINIT_Warm                                                                                            
    80000000  __start___llvm_prf_cnts                                                                                    
    80000000  __stop___llvm_prf_cnts                                                                                     
    81f07400  __TI_printfi                                                                                               
    81f082d0  CpswAle_ioctl                                                                                              
    81f09190  IcssgUtils_CRC64                                                                                           
    81f0a014  __aeabi_errno_addr                                                                                         
    81f0a020  CpswMacPort_ioctl                                                                                          
    81f0adb4  malloc                                                                                                     
    81f0ba74  C$$EXIT                                                                                                    
    81f0ba74  abort                                                                                                      
    81f0ba7c  _nop                                                                                                       
    81f0ba80  EnetDma_openRxCh                                                                                           
    81f0c5d0  CpswCpts_ioctl                                                                                             
    81f0d104  fseek                                                                                                      
    81f0d108  remove                                                                                                     
    81f0d10c  __aeabi_memcpy                                                                                             
    81f0d10c  __aeabi_memcpy4                                                                                            
    81f0d10c  __aeabi_memcpy8                                                                                            
    81f0db50  EnetDma_openTxCh                                                                                           
    81f0ef60  IcssgUtils_configSwtFw                                                                                     
    81f0f880  IcssgUtils_fwConfig                                                                                        
    81f0ff60  Icssg_open                                                                                                 
    81f10640  Udma_rmInit                                                                                                
    81f124d0  EnetOsal_init                                                                                              
    81f12a60  EnetAppUtils_printIcssgPaStats                                                                             
    81f13540  CpswMacPort_open                                                                                           
    81f13f80  EnetAppUtils_printIcssgMacPortStats                                                                        
    81f15340  Sciclient_serviceSecureProxy                                                                               
    81f16170  EnetUdma_openRxRsvdFlow                                                                                    
    81f16620  Mdio_ioctl                                                                                                 
    81f16f10  EnetAppUtils_printMacPortStats2G                                                                           
    81f17380  EnetUdma_submitPkts                                                                                        
    81f177e0  CpswHostPort_ioctl                                                                                         
    81f17c20  EnetUdma_openRxCh                                                                                          
    81f18040  EnetDma_closeRxCh                                                                                          
    81f18fe0  EnetRm_ioctl                                                                                               
    81f19760  EnetDma_closeTxCh                                                                                          
    81f19b10  Cpsw_open                                                                                                  
    81f19eb0  Udma_initDrvHandle                                                                                         
    81f1a5e0  EnetRm_close                                                                                               
    81f1a960  UdmaRmInitPrms_init                                                                                        
    81f1acd0  CpswAle_open                                                                                               
    81f1b040  Icssg_ioctl                                                                                                
    81f1b6d0  UART_printf                                                                                                
    81f1c680  IcssgUtils_checkFwPoolMem                                                                                  
    81f1cc90  EnetPhyMdioDflt_ioctl                                                                                      
    81f1cf80  CpswStats_ioctl                                                                                            
    81f1d830  CSL_armR5Dsb                                                                                               
    81f1d838  CSL_armR5FpuEnable                                                                                         
    81f1d860  CSL_armR5IntrEnableFiq                                                                                     
    81f1d880  CSL_armR5IntrEnableIrq                                                                                     
    81f1d8a0  CSL_armR5IntrEnableVic                                                                                     
    81f1d8c4  CSL_armR5CacheEnableICache                                                                                 
    81f1d8f4  CSL_armR5CacheEnableDCache                                                                                 
    81f1d924  CSL_armR5CacheGetIcacheLineSize                                                                            
    81f1d940  CSL_armR5CacheGetDcacheLineSize                                                                            
    81f1d95c  CSL_armR5CacheEnableAllCache                                                                               
    81f1d970  CSL_armR5CacheInvalidateAllIcache                                                                          
    81f1d988  CSL_armR5CacheInvalidateAllDcache                                                                          
    81f1d9a0  CSL_armR5CacheInvalidateAllCache                                                                           
    81f1d9b4  CSL_armR5CacheInvalidateIcacheMva                                                                          
    81f1d9c4  CSL_armR5CacheInvalidateDcacheMva                                                                          
    81f1d9d4  CSL_armR5CacheInvalidateDcacheSetWay                                                                       
    81f1d9f8  CSL_armR5CacheCleanDcacheMva                                                                               
    81f1da08  CSL_armR5CacheCleanDcacheSetWay                                                                            
    81f1da2c  CSL_armR5CacheCleanInvalidateDcacheMva                                                                     
    81f1da34  CSL_armR5CacheCleanInvalidateDcacheSetWay                                                                  
    81f1da58  CSL_armR5CacheEnableForceWrThru                                                                            
    81f1da78  CSL_armR5CacheDisableEcc                                                                                   
    81f1daac  CSL_armR5CacheEnableAxiAccess                                                                              
    81f1dabc  CSL_armR5ReadMpidrReg                                                                                      
    81f1dac8  CSL_armR5GetCpsrRegVal                                                                                     
    81f1dad8  CSL_armR5DisableIrqFiq                                                                                     
    81f1daec  CSL_armR5EnableIrqFiq                                                                                      
    81f1e660  Udma_chConfigRx                                                                                            
    81f1e930  Mdio_open                                                                                                  
    81f1f170  Cpsw_periodicTick                                                                                          
    81f201a0  CSL_CPSW_setAleIPv6Entry_4G                                                                                
    81f20430  CSL_CPSW_setAleIPv6Entry_9G                                                                                
    81f206c0  CSL_serdesLaneEnable                                                                                       
    81f20950  Udma_eventRegister                                                                                         
    81f20be0  EnetUdma_allocRing                                                                                         
    81f210f0  PMLIBClkRateSet                                                                                            
    81f21370  Udma_ringAlloc                                                                                             
    81f22200  xQueueSemaphoreTake                                                                                        
    81f22b70  Udma_ringReset                                                                                             
    81f22dc0  Udma_rmAllocExtCh                                                                                          
    81f236d0  EnetUdma_retrievePkts                                                                                      
    81f23910  Sciclient_init                                                                                             
    81f23b50  Udma_flowAlloc                                                                                             
    81f23fd0  Board_DDRInit                                                                                              
    81f24430  CSL_serdesSetLaneRate                                                                                      
    81f24660  CpswMacPort_ioctlInterVlan                                                                                 
    81f24ac0  Udma_chOpen                                                                                                
    81f24cf0  Udma_init                                                                                                  
    81f24f20  EnetMem_init                                                                                               
    81f255b0  xQueueReceive                                                                                              
    81f257d0  EnetMem_deInit                                                                                             
    81f25c10  Board_icssEthConfig                                                                                        
    81f25e20  CSL_CPSW_getAlePolicerEntry                                                                                
    81f26240  UARTFIFOConfig                                                                                             
    81f26450  xQueueGenericSend                                                                                          
    81f26c80  EnetAppUtils_openRxFlowForChIdx                                                                            
    81f27080  EnetUdma_registerEvent                                                                                     
    81f27280  EnetUdma_closeRxRsvdFlow                                                                                   
    81f27680  CpswHostPort_open                                                                                          
    81f27a80  Udma_flowConfig                                                                                            
    81f27e80  Udma_flowFree                                                                                              
    81f28660  CpswStats_open                                                                                             
    81f28850  EnetAppUtils_closeRxFlowForChIdx                                                                           
    81f28a40  EnetUdma_initTxFreeDescQ                                                                                   
    81f291e0  csl_wiz8m_sb_refclk100p0MHz_32b_8Gbps_PCIE_1l1c                                                            
    81f293c0  Cpsw_ioctl                                                                                                 
    81f295a0  Udma_rmDeinit                                                                                              
    81f29b34  __aeabi_uidiv                                                                                              
    81f29b34  __udivsi3                                                                                                  
    81f29d10  OsalArch_HwiPCreate                                                                                        
    81f2a280  EnetPhy_open                                                                                               
    81f2a450  IcssgTimeSync_setClockTime                                                                                 
    81f2a620  Sciclient_rmClearInterruptRoute                                                                            
    81f2a7f0  TaskP_create                                                                                               
    81f2ad60  xTaskIncrementTick                                                                                         
    81f2af30  Sciclient_rmProgramInterruptRoute                                                                          
    81f2b480  EnetUdma_closeRxCh                                                                                         
    81f2b9c0  Enet_validateGenericIoctl                                                                                  
    81f2bd3c  free                                                                                                       
    81f2c0c0  Udma_ringSetCfgNormal                                                                                      
    81f2c280  SemaphoreP_create                                                                                          
    81f2c5f0  Udma_chConfigTx                                                                                            
    81f2c950  aligned_alloc                                                                                              
    81f2c950  memalign                                                                                                   
    81f2d1c0  CpswCpts_open                                                                                              
    81f2d520  Board_twoLanePcieSerdesCfg                                                                                 
    81f2d6c0  CSL_CPSW_setAlePolicerEntry                                                                                
    81f2d860  ClockP_create                                                                                              
    81f2dba0  EnetUdma_allocRingMon                                                                                      
    81f2dd40  UARTDivisorLatchWrite                                                                                      
    81f2e1f0  EnetUdma_reconfigureDescQ                                                                                  
    81f2e830  IcssgTas_ioctl                                                                                             
    81f2e9c0  Board_mcuEthConfig                                                                                         
    81f2eb40  CSL_CPGMAC_SL_setInterVLANCfg                                                                              
    81f2f140  Enet_validateIoctl                                                                                         
    81f2f5c0  memcpy                                                                                                     
    81f2f740  EnetRm_open                                                                                                
    81f2f8c0  Udma_chGetNum                                                                                              
    81f2fa3c  fputs                                                                                                      
    81f2fbb0  EnetAppUtils_enableClocks                                                                                  
    81f2fd20  IcssgTimeSync_ioctl                                                                                        
    81f30000  Udma_rmAllocIrIntr                                                                                         
    81f30170  Udma_rmAllocRxCh                                                                                           
    81f302e0  Udma_rmAllocTxCh                                                                                           
    81f30450  CSL_CPSW_setPortRxDscpMap                                                                                  
    81f30cf0  Udma_rmAllocBlkCopyCh                                                                                      
    81f30e60  Udma_rmAllocBlkCopyHcCh                                                                                    
    81f30fd0  Udma_rmAllocBlkCopyUhcCh                                                                                   
    81f31140  Udma_rmAllocRxHcCh                                                                                         
    81f312b0  Udma_rmAllocRxUhcCh                                                                                        
    81f31420  Udma_rmAllocTxHcCh                                                                                         
    81f31590  Udma_rmAllocTxUhcCh                                                                                        
    81f31700  vTaskSwitchContext                                                                                         
    81f31870  CSL_CPSW_setPortTimeSyncConfig                                                                             
    81f31c90  EnetSoc_getRxChPeerId                                                                                      
    81f31df0  Udma_proxyAlloc                                                                                            
    81f31f50  xTaskResumeAll                                                                                             
    81f32370  EnetUdma_memMgrInit                                                                                        
    81f32a50  Enet_open                                                                                                  
    81f32d10  Udma_rmFreeExtCh                                                                                           
    81f33110  EnetDma_submitRxPktQ                                                                                       
    81f33260  EnetDma_submitTxPktQ                                                                                       
    81f333b0  EnetMod_open                                                                                               
    81f337a0  MutexP_create                                                                                              
    81f33a40  EnetUdma_initRxFreeDescQ                                                                                   
    81f33b90  Udma_eventUnRegister                                                                                       
    81f33e20  setvbuf                                                                                                    
    81f34350  EnetSoc_getRxFlowCount                                                                                     
    81f34490  EnetSoc_getTxChCount                                                                                       
    81f34990  ldexp                                                                                                      
    81f34990  ldexpl                                                                                                     
    81f34990  scalbn                                                                                                     
    81f34990  scalbnl                                                                                                    
    81f34c10  EnetPhyMdioDflt_writeC45                                                                                   
    81f34fd0  EnetSoc_getTxChPeerId                                                                                      
    81f35110  Sciclient_pmQueryModuleClkFreq                                                                             
    81f35750  EnetPhyMdioDflt_writeC22                                                                                   
    81f359d0  CSL_CPSW_getAleIPv6Entry_4G                                                                                
    81f35b00  CSL_CPSW_getAleIPv6Entry_9G                                                                                
    81f35e90  EnetPhyMdioDflt_readC45                                                                                    
    81f35fc0  EnetUdma_ringDequeue                                                                                       
    81f360f0  EnetUdma_ringEnqueue                                                                                       
    81f36350  TimerP_create                                                                                              
    81f365b0  vTaskDelete                                                                                                
    81f366e0  vTaskSuspend                                                                                               
    81f36a70  Board_pinmuxUpdate                                                                                         
    81f36cd0  EnetDma_retrieveTxPktQ                                                                                     
    81f36e00  EnetPhyMdioDflt_readC22                                                                                    
    81f36f30  EnetPhy_getId                                                                                              
    81f373f0  Udma_ringMonAlloc                                                                                          
    81f37520  xQueueGenericSendFromISR                                                                                   
    81f37650  CSL_CPSW_getPortTimeSyncConfig                                                                             
    81f37780  Cpsw_ioctlInterVlan                                                                                        
    81f378b0  EnetAppUtils_disableClocks                                                                                 
    81f379e0  EnetDma_retrieveRxPktQ                                                                                     
    81f37b10  Udma_deinit                                                                                                
    81f37c40  Udma_rmFreeEvent                                                                                           
    81f37d70  Udma_rmFreeIrIntr                                                                                          
    81f37ea0  Udma_rmFreeRxCh                                                                                            
    81f37fd0  Udma_rmFreeTxCh                                                                                            
    81f38100  Udma_rmFreeVintr                                                                                           
    81f38360  EnetPhyMdioDflt_isAlive                                                                                    
    81f38480  EnetPhyMdioDflt_isLinked                                                                                   
    81f386c0  Udma_rmFreeBlkCopyCh                                                                                       
    81f387e0  Udma_rmFreeBlkCopyHcCh                                                                                     
    81f38900  Udma_rmFreeBlkCopyUhcCh                                                                                    
    81f38a20  Udma_rmFreeRxHcCh                                                                                          
    81f38b40  Udma_rmFreeRxUhcCh                                                                                         
    81f38c60  Udma_rmFreeTxHcCh                                                                                          
    81f38d80  Udma_rmFreeTxUhcCh                                                                                         
    81f38ea0  main                                                                                                       
    81f39440  LoadP_update                                                                                               
    81f39b00  TimerP_start                                                                                               
    81f39c20  Udma_chClose                                                                                               
    81f39d40  pruicss_get_mem_info                                                                                       
    81f39e58  __udivmoddi4                                                                                               
    81f39f70  CSL_CPSW_getPortRxDscpMap                                                                                  
    81f3a2d0  IcssgTimeSync_open                                                                                         
    81f3a630  Udma_ringCheckParams                                                                                       
    81f3a860  EnetUdma_allocProxy                                                                                        
    81f3a970  CSL_CPSW_setAleVlanUnicastAddrEntry_4G                                                                     
    81f3aa80  CSL_CPSW_setAleVlanUnicastAddrEntry_9G                                                                     
    81f3adb0  EnetQueue_append                                                                                           
    81f3aec0  Sciclient_pmSetModuleClkFreq                                                                               
    81f3afd0  Sciclient_rmTranslateIntOutput                                                                             
    81f3b0e0  Sciclient_rmTranslateIrqInput                                                                              
    81f3b1f0  Udma_rmAllocFreeRing                                                                                       
    81f3b410  IcssgTimeSync_adjustClock                                                                                  
    81f3b520  Sciclient_sendMessage                                                                                      
    81f3b630  CSL_CPSW_setAleIPv4Entry_4G                                                                                
    81f3b740  CSL_CPSW_setAleIPv4Entry_9G                                                                                
    81f3ba70  EnetUdma_open                                                                                              
    81f3bb80  IcssgUtils_downloadFirmware                                                                                
    81f3bda0  vTaskPriorityDisinheritAfterTimeout                                                                        
    81f3beb0  xTaskPriorityInherit                                                                                       
    81f3bfc0  CSL_CPSW_setAleUnicastAddrEntry_4G                                                                         
    81f3c0c0  CSL_CPSW_setAleUnicastAddrEntry_9G                                                                         
    81f3c1c0  CSL_CPSW_setAleVlanMcastAddrEntry_4G                                                                       
    81f3c2c0  CSL_CPSW_setAleVlanMcastAddrEntry_9G                                                                       
    81f3c3c0  EnetHostPortDma_open                                                                                       
    81f3c4c0  EnetPhy_rmwReg                                                                                             
    81f3c5c0  Enet_ioctl                                                                                                 
    81f3c6c0  Udma_proxyConfig                                                                                           
    81f3c7c0  xQueueGiveFromISR                                                                                          
    81f3c8c0  CSL_CPGMAC_SL_getInterVLANCfg                                                                              
    81f3c9c0  EnetAppUtils_setDeviceState                                                                                
    81f3cbc0  Icssg_registerEventCb                                                                                      
    81f3ccc0  Sciclient_servicePrepareHeader                                                                             
    81f3cec0  CSL_vimCfgIntr                                                                                             
    81f3d1c0  EnetPhy_tick                                                                                               
    81f3d3c0  Sciclient_pmGetModuleState                                                                                 
    81f3d6c0  CSL_CPSW_setAleMcastAddrEntry_4G                                                                           
    81f3d7c0  CSL_CPSW_setAleMcastAddrEntry_9G                                                                           
    81f3d8c0  CSL_CPSW_setCpswControlReg                                                                                 
    81f3dcc0  IcssgUtils_checkPortMode                                                                                   
    81f3ddc0  IcssgUtils_disablePruss                                                                                    
    81f3dec0  Udma_ringMonConfig                                                                                         
    81f3dfc0  CSL_CPSW_setAleOutVlanEntry_9G                                                                             
    81f3e0b0  CSL_CPSW_setAleVlanEntry_9G                                                                                
    81f3e1a0  EnetHostPortDma_close                                                                                      
    81f3e290  EnetUtils_macToPhyMii                                                                                      
    81f3e380  Enet_init                                                                                                  
    81f3e470  Icssg_periodicTick                                                                                         
    81f3e650  Udma_rmFreeVintrBit                                                                                        
    81f3e740  xQueueGenericCreateStatic                                                                                  
    81f3e830  xQueueReceiveFromISR                                                                                       
    81f3e920  Board_init                                                                                                 
    81f3ece0  EnetAppUtils_initResourceConfig                                                                            
    81f3eec0  EnetUdma_memMgrAllocTdCqRingMemObj                                                                         
    81f3efb0  Udma_rmAllocProxy                                                                                          
    81f3f0a0  Udma_rmAllocRingMon                                                                                        
    81f3f190  Udma_rmFreeFreeRing                                                                                        
    81f3f460  Enet_getDmaHandle                                                                                          
    81f3f550  IcssgUtils_enablePruss                                                                                     
    81f3f640  IcssgUtils_getSliceNum                                                                                     
    81f3f730  Udma_ringFree                                                                                              
    81f3f820  Udma_ringMonFree                                                                                           
    81f3f910  pxPortInitialiseStack                                                                                      
    81f3fa00  xTaskPriorityDisinherit                                                                                    
    81f3fbe0  Cpsw_initCfg                                                                                               
    81f40270  UARTIntDisable                                                                                             
    81f40450  vTaskStartScheduler                                                                                        
    81f40b60  UARTIntEnable                                                                                              
    81f40c40  Udma_rmAllocEvent                                                                                          
    81f40d20  Udma_rmAllocVintr                                                                                          
    81f40ee0  EnetMem_allocEthPkt                                                                                        
    81f410a0  Udma_ringQueueRaw                                                                                          
    81f41180  Udma_rmAllocVintrBit                                                                                       
    81f415e0  IcssgTimeSync_getClockTime                                                                                 
    81f416c0  Icssg_initCfg                                                                                              
    81f41880  xTaskCreateStatic                                                                                          
    81f41b20  EnetPhy_isAlive                                                                                            
    81f41c00  Enet_registerEventCb                                                                                       
    81f41ce0  IcssgUtils_classiDisable                                                                                   
    81f41dc0  IcssgUtils_configFilter3                                                                                   
    81f41ea0  IcssgUtils_sendFdbCmd                                                                                      
    81f41f80  Icssg_R30SendAsyncIoctl                                                                                    
    81f42140  Udma_ringDequeueRaw                                                                                        
    81f42220  Udma_rmFreeRingMon                                                                                         
    81f42650  EnetMod_ioctl                                                                                              
    81f42720  EnetOsalDflt_initCfg                                                                                       
    81f42990  EnetUdma_txCqIsr                                                                                           
    81f42a60  Sciclient_pmGetModuleClkFreq                                                                               
    81f42c00  CSL_CPSW_setAlePortControlReg                                                                              
    81f43010  EnetUdma_flushRxFlowRing                                                                                   
    81f430e0  EnetUdma_flushTxChRing                                                                                     
    81f431b0  EnetUdma_rxCqIsr                                                                                           
    81f43350  Sciclient_pmGetModuleClkNumParent                                                                          
    81f43420  Sciclient_pmGetModuleClkParent                                                                             
    81f435c0  Udma_rmFreeProxy                                                                                           
    81f4368c  getdevice                                                                                                  
    81f43760  vPortFree                                                                                                  
    81f43b70  EnetAppUtils_mcuMmrCtrl                                                                                    
    81f43d10  GenericPhy_readExtReg                                                                                      
    81f43f80  Sciclient_pmModuleGetClkStatus                                                                             
    81f44050  UARTSubConfigTCRTLRModeEn                                                                                  
    81f44120  Udma_chDisable                                                                                             
    81f441f0  CSL_CPTS_setCntlReg                                                                                        
    81f44390  EnetMod_close                                                                                              
    81f44460  Icssg_poll                                                                                                 
    81f44600  Udma_proxyFree                                                                                             
    81f446d0  eTaskGetState                                                                                              
    81f44870  vTaskGetInfo                                                                                               
    81f44940  xTaskRemoveFromEventList                                                                                   
    81f44a10  Board_unlockMMR                                                                                            
    81f44ad0  CSL_CPSW_getCpswControlReg                                                                                 
    81f44e90  EnetDma_initRxChParams                                                                                     
    81f44f50  Enet_poll                                                                                                  
    81f450d0  Udma_chEnable                                                                                              
    81f45790  IcssgUtils_createPruss                                                                                     
    81f459d0  xTaskCheckForTimeOut                                                                                       
    81f462d0  Enet_unregisterEventCb                                                                                     
    81f46390  Intc_IntRegister                                                                                           
    81f46450  Mdio_close                                                                                                 
    81f46510  UARTTCRTLRBitValRestore                                                                                    
    81f465d0  CSL_CPSW_setAleOutVlanEntry_4G                                                                             
    81f46690  CSL_CPSW_setAleVlanEntry_4G                                                                                
    81f46b10  EnetUdma_close                                                                                             
    81f46bd0  Icssg_close                                                                                                
    81f46d50  Sciclient_pmModuleClkRequest                                                                               
    81f46e10  Sciclient_pmSetModuleClkParent                                                                             
    81f46ed0  TIMERModeConfigure                                                                                         
    81f46f84  __TI_closefile                                                                                             
    81f47100  CSL_ringaccPop64                                                                                           
    81f47310  Enet_close                                                                                                 
    81f473c0  Sciclient_pmSetModuleState                                                                                 
    81f47470  Sciclient_serviceGetThreadIds                                                                              
    81f47680  CSL_ringaccPush64                                                                                          
    81f479f0  Cpsw_close                                                                                                 
    81f47b50  EnetAppUtils_addHostPortEntry                                                                              
    81f47c00  EnetQueue_deq                                                                                              
    81f47cb0  IcssgStats_ioctl                                                                                           
    81f47ebc  fflush                                                                                                     
    81f47f68  fseeko                                                                                                     
    81f480d0  xTimerCreateTimerTask                                                                                      
    81f48180  xTimerGenericCommand                                                                                       
    81f4822c  __TI_decompress_lzss                                                                                       
    81f482e0  CSL_CPSW_setPTypeReg                                                                                       
    81f48390  CSL_intaggrSetIntrEnable                                                                                   
    81f48700  Enet_periodicTick                                                                                          
    81f48860  CSL_CPSW_setPortRxPriMapReg                                                                                
    81f48910  CSL_CPSW_setPortTxPriMapReg                                                                                
    81f489c0  CSL_CPTS_getCntlReg                                                                                        
    81f48a70  CSL_CPTS_setupESTFn                                                                                        
    81f48b20  CSL_CPTS_setupGENFn                                                                                        
    81f48bd0  ClockP_start                                                                                               
    81f48c80  EnetQueue_enq                                                                                              
    81f48de0  Udma_printf                                                                                                
    81f48f30  CSL_CPSW_getAleVlanUnicastAddrEntry_4G                                                                     
    81f48fd0  CSL_CPSW_getAleVlanUnicastAddrEntry_9G                                                                     
    81f49070  CSL_proxyCfgThread                                                                                         
    81f491b0  CpswAle_initCfg                                                                                            
    81f49610  EnetSoc_getMacPortMii                                                                                      
    81f496b0  HOSTrename                                                                                                 
    81f497f0  Sciclient_rmGetResourceRange                                                                               
    81f499d0  xQueueGenericReset                                                                                         
    81f49a70  memset                                                                                                     
    81f49f70  GenericPhy_writeExtReg                                                                                     
    81f4a0b0  UART_stdioInit                                                                                             
    81f4a150  Udma_ringProxyQueueRaw                                                                                     
    81f4a1f0  Udma_ringSetDoorBellNormal                                                                                 
    81f4a290  xTimerCreateStatic                                                                                         
    81f4a3d0  CSL_CPSW_getAlePortControlReg                                                                              
    81f4a470  CSL_CPSW_setPortStatsEnableReg                                                                             
    81f4a5b0  EnetAppUtils_openTxCh                                                                                      
    81f4a650  EnetQueue_enqHead                                                                                          
    81f4a6f0  EnetUdma_buffDescInit                                                                                      
    81f4a788  HOSTlseek                                                                                                  
    81f4a820  IcssgTas_open                                                                                              
    81f4a958  __TI_wrt_ok                                                                                                
    81f4a9f0  CSL_CPSW_SS_getRGMIIStatus                                                                                 
    81f4aa90  CSL_CPSW_getAleUnicastAddrEntry_4G                                                                         
    81f4ab30  CSL_CPSW_getAleUnicastAddrEntry_9G                                                                         
    81f4abd0  ClockP_stop                                                                                                
    81f4adb0  EnetDma_initTxChParams                                                                                     
    81f4af90  EnetQueue_copyQ                                                                                            
    81f4b030  EnetSocJ7x_releaseIntrCfg                                                                                  
    81f4b0d0  EnetSocJ7x_setupIntrCfg                                                                                    
    81f4b170  EnetUdma_memMgrAllocRingMonObj                                                                             
    81f4b210  EnetUdma_memMgrAllocRxFlowObj                                                                              
    81f4b2b0  EnetUdma_memMgrAllocTxChObj                                                                                
    81f4b344  HOSTopen                                                                                                   
    81f4b480  PRUICSS_pruWriteMemory                                                                                     
    81f4b520  TaskP_delete                                                                                               
    81f4b5c0  TimerP_stop                                                                                                
    81f4b700  Udma_ringProxyDequeueRaw                                                                                   
    81f4b7a0  Board_PLLInitAll                                                                                           
    81f4bb90  EnetMem_freeEthPkt                                                                                         
    81f4bdd0  EnetSoc_init                                                                                               
    81f4be60  EnetUdma_dmaDescEnque                                                                                      
    81f4bef0  Enet_initCfg                                                                                               
    81f4bf80  IcssgStats_open                                                                                            
    81f4c130  Icssg_unregisterEventCb                                                                                    
    81f4c370  UART_v1_callback                                                                                           
    81f4c490  Board_moduleClockEnable                                                                                    
    81f4c520  CSL_CPSW_setAleCtrl2TrunkParams                                                                            
    81f4c5b0  CSL_CPSW_setCppiP0Control                                                                                  
    81f4c7f0  Cpsw_rejoin                                                                                                
    81f4ca30  EnetAppUtils_closeTxCh                                                                                     
    81f4cb50  EnetPhy_readC45Reg                                                                                         
    81f4cbe0  EnetPhy_writeC45Reg                                                                                        
    81f4cc70  TIMERReset                                                                                                 
    81f4cd90  CSL_CPSW_getAleVlanMcastAddrEntry_4G                                                                       
    81f4ce20  CSL_CPSW_getAleVlanMcastAddrEntry_9G                                                                       
    81f4cfd0  EnetAppUtils_regDstMacRxFlow                                                                               
    81f4d060  EnetAppUtils_unregDstMacRxFlow                                                                             
    81f4d210  EnetSoc_releaseIntrCfg                                                                                     
    81f4d2a0  EnetSoc_setupIntrCfg                                                                                       
    81f4d450  Sciclient_pmSetModuleRst                                                                                   
    81f4d600  Sciclient_serviceGetPayloadSize                                                                            
    81f4d688  __TI_ltoa                                                                                                  
    81f4d830  CSL_CPSW_getAleVlanEntry_9G                                                                                
    81f4def0  EnetAppUtils_allocMac                                                                                      
    81f4df80  EnetAppUtils_allocRxFlowForChIdx                                                                           
    81f4e010  EnetAppUtils_clkRateSet                                                                                    
    81f4e0a0  EnetAppUtils_delAddrEntry                                                                                  
    81f4e130  EnetAppUtils_udmaOpen                                                                                      
    81f4e1c0  EnetMem_allocRingMem                                                                                       
    81f4e370  EnetSoc_getEnetHandle                                                                                      
    81f4e400  GenericPhy_isResetComplete                                                                                 
    81f4e484  HOSTread                                                                                                   
    81f4e508  HOSTwrite                                                                                                  
    81f4e860  Osal_RegisterInterrupt                                                                                     
    81f4e8f0  Sciclient_abiCheck                                                                                         
    81f4eb30  Sciclient_rmIrqReleaseRaw                                                                                  
    81f4ec50  Sciclient_rmPsilPair                                                                                       
    81f4ece0  Sciclient_rmPsilUnpair                                                                                     
    81f4ed70  Sciclient_rmPsilWrite                                                                                      
    81f4ee00  Sciclient_rmSetProxyCfg                                                                                    
    81f4ee84  close                                                                                                      
    81f4efa0  CSL_CPGMAC_SL_getMacStatusReg                                                                              
    81f4f020  CSL_CPSW_getAleOutVlanEntry_9G                                                                             
    81f4f0a0  CSL_CPSW_getPortRxPriMapReg                                                                                
    81f4f120  CSL_CPSW_getPortTxPriMapReg                                                                                
    81f4f1a0  CSL_CPSW_setAleOUIAddrEntry_4G                                                                             
    81f4f220  CSL_CPSW_setAleOUIAddrEntry_9G                                                                             
    81f4f2a0  CSL_CPSW_setPortControlReg                                                                                 
    81f4f320  CSL_serdesSetLoopback                                                                                      
    81f4f3a0  CSL_vimGetActivePendingIntr                                                                                
    81f4f8a0  EnetSoc_getDmaHandle                                                                                       
    81f4f9a0  Icssg_R30SendSyncIoctl                                                                                     
    81f4fba0  SemaphoreP_pend                                                                                            
    81f4fc20  UdmaChPrms_init                                                                                            
    81f4fca0  Udma_chDequeueTdResponse                                                                                   
    81f4fd20  Udma_chGetTdCqRingHandle                                                                                   
    81f4fda0  Udma_flowAttach                                                                                            
    81f4fe20  __TI_doflush                                                                                               
    81f4ff20  CSL_CPSW_getAleMcastAddrEntry_4G                                                                           
    81f4ffa0  CSL_CPSW_getAleMcastAddrEntry_9G                                                                           
    81f50020  CSL_CPSW_getPTypeReg                                                                                       
    81f500a0  CSL_CPSW_getTxMaxLenPerPriority                                                                            
    81f50120  CSL_CPSW_setTxMaxLenPerPriority                                                                            
    81f501a0  ClockP_delete                                                                                              
    81f502a0  EnetAppSoc_getMacAddrList                                                                                  
    81f50320  EnetAppUtils_freeMac                                                                                       
    81f504a0  EnetPhy_readReg                                                                                            
    81f50520  EnetPhy_writeReg                                                                                           
    81f50620  EnetUdma_dmaDescCheck                                                                                      
    81f506a0  SemaphoreP_constructBinary                                                                                 
    81f508a0  UdmaOsalPrms_init                                                                                          
    81f50920  frexp                                                                                                      
    81f50920  frexpl                                                                                                     
    81f509a0  CSL_CPTS_getEventInfo                                                                                      
    81f50a20  CSL_ringaccGetCmdRingPtr                                                                                   
    81f50aa0  CSL_ringaccGetRspRingPtr                                                                                   
    81f50d20  EnetAppUtils_print                                                                                         
    81f50e20  EnetUtils_printf                                                                                           
    81f50ea0  MutexP_delete                                                                                              
    81f50f20  MutexP_lock                                                                                                
    81f50fa0  Sciclient_rmIrqSetRaw                                                                                      
    81f51020  Sciclient_rmPsilRead                                                                                       
    81f510a0  Sciclient_rmRingCfg                                                                                        
    81f51120  Sciclient_rmRingMonCfg                                                                                     
    81f511a0  Sciclient_rmUdmapFlowCfg                                                                                   
    81f51220  Sciclient_rmUdmapFlowSizeThreshCfg                                                                         
    81f512a0  Sciclient_rmUdmapRxChCfg                                                                                   
    81f51320  Sciclient_rmUdmapTxChCfg                                                                                   
    81f51420  CSL_udmapGetCfg                                                                                            
    81f516a0  EnetAppUtils_allocTxCh                                                                                     
    81f51820  EnetMem_allocDmaDesc                                                                                       
    81f51920  PRUICSS_pruInitMemory                                                                                      
    81f519a0  SemaphoreP_delete                                                                                          
    81f51a20  UdmaEventPrms_init                                                                                         
    81f51b08  snprintf                                                                                                   
    81f51b80  xQueueCreateCountingSemaphoreStatic                                                                        
    81f51c00  CSL_serdesGetLaneStatus                                                                                    
    81f51d50  EnetAppUtils_regDfltRxFlowForChIdx                                                                         
    81f51dc0  EnetAppUtils_unregDfltRxFlowForChIdx                                                                       
    81f51f10  EnetPhy_getLinkCfg                                                                                         
    81f51ff0  EnetUdma_memMgrFreeRingMonObj                                                                              
    81f52060  EnetUdma_memMgrFreeRxFlowObj                                                                               
    81f520d0  EnetUdma_memMgrFreeTdCqRingMemObj                                                                          
    81f52140  EnetUdma_memMgrFreeTxChObj                                                                                 
    81f52300  Intc_IntUnregister                                                                                         
    81f52370  SemaphoreP_post                                                                                            
    81f523e0  UART_init                                                                                                  
    81f52450  UdmaChTxPrms_init                                                                                          
    81f525a0  CSL_CPSW_mapMacAddr2TableWord_4G                                                                           
    81f52610  CSL_CPSW_mapMacAddr2TableWord_9G                                                                           
    81f52680  CSL_CPTS_setTSCompVal                                                                                      
    81f52990  EnetSocJ7x_getIntrNum                                                                                      
    81f529fc  HOSTunlink                                                                                                 
    81f52bc0  MutexP_unlock                                                                                              
    81f52c9c  __aeabi_assert                                                                                             
    81f52d08  atoi                                                                                                       
    81f52d74  finddevice                                                                                                 
    81f52de0  xQueueGiveMutexRecursive                                                                                   
    81f52e50  CSL_CPSW_getCppiP0Control                                                                                  
    81f52ec0  CSL_intaggrIsIntrPending                                                                                   
    81f53470  EnetPhy_close                                                                                              
    81f534e0  EnetQueue_getQCount                                                                                        
    81f535c0  IcssgUtils_isR30CmdDone                                                                                    
    81f53710  Icssg_closeDma                                                                                             
    81f53860  Intc_Init                                                                                                  
    81f53b00  UARTFIFORegisterWrite                                                                                      
    81f53cc0  CSL_CPSW_setAleAgingTimerReg                                                                               
    81f53d30  CSL_intaggrClrIntr                                                                                         
    81f53e10  CpswAle_close                                                                                              
    81f54270  EnetAppUtils_clkRateSetState                                                                               
    81f54350  EnetBoard_setupPorts                                                                                       
    81f543c0  EnetPhy_initCfg                                                                                            
    81f54430  EnetSoc_getIntrNum                                                                                         
    81f544a0  HwiP_delete                                                                                                
    81f545f0  LoadP_addTask                                                                                              
    81f546d0  vListInsert                                                                                                
    81f54734  vsnprintf                                                                                                  
    81f547a0  xQueueTakeMutexRecursive                                                                                   
    81f548d0  Board_moduleClockInit                                                                                      
    81f54930  CSL_CPSW_getAleOutVlanEntry_4G                                                                             
    81f54990  CSL_CPSW_getAleVlanEntry_4G                                                                                
    81f549f0  CSL_SGMII_setAdvAbility                                                                                    
    81f54a50  CSL_vimSetIntrEnable                                                                                       
    81f54cf0  EnetSoc_getClkFreq                                                                                         
    81f54d50  EnetUdma_dmaDescDeque                                                                                      
    81f54db0  Enet_deinit                                                                                                
    81f54e10  HOSTclose                                                                                                  
    81f54ed0  Icssg_convertTs                                                                                            
    81f54f30  TimerP_Params_init                                                                                         
    81f54f90  UdmaChRxPrms_init                                                                                          
    81f54ff0  UdmaFlowPrms_init                                                                                          
    81f55110  uxPortGetTimeInUsec                                                                                        
    81f55170  vQueueWaitForMessageRestricted                                                                             
    81f551d0  CSL_MDIO_phyInitiateRegWriteC45                                                                            
    81f55350  CpswHostPort_close                                                                                         
    81f55530  EnetAppUtils_validatePacketState                                                                           
    81f55590  EnetBoard_init                                                                                             
    81f555f0  EnetMp_initAleConfig                                                                                       
    81f556b0  IcssgUtils_sendHwqMgmtMsg                                                                                  
    81f55950  TIMERDisable                                                                                               
    81f559b0  TIMEREnable                                                                                                
    81f55a10  UdmaInitPrms_init                                                                                          
    81f55a70  Udma_flowDetach                                                                                            
    81f55b90  vTaskDelay                                                                                                 
    81f55bec  __TI_auto_init_nobinit_nopinit                                                                             
    81f55c50  CSL_CPSW_getPortControlReg                                                                                 
    81f55cb0  CSL_CPSW_setAlePolicerControlReg                                                                           
    81f55d10  CSL_MDIO_phyRegRead2                                                                                       
    81f55d70  CSL_serdesCycleDelay                                                                                       
    81f55dd0  CSL_serdesPCIeInit                                                                                         
    81f56010  EnetSoc_getMacPortMax                                                                                      
    81f56070  EnetUtils_init                                                                                             
    81f560d0  EnetUtils_vprintf                                                                                          
    81f56130  GenericPhy_printRegs                                                                                       
    81f56190  IcssgUtils_hwqPop                                                                                          
    81f562a8  __TI_readmsg                                                                                               
    81f56300  __TI_writemsg                                                                                              
    81f5634c  C$$IO$$                                                                                                    
    81f56460  sprintf                                                                                                    
    81f56520  vTaskPlaceOnEventListRestricted                                                                            
    81f56580  CSL_CPSW_getPortBlockCountReg                                                                              
    81f565e0  CSL_CPSW_setAleEthertypeEntry_4G                                                                           
    81f56640  CSL_CPSW_setAleEthertypeEntry_9G                                                                           
    81f566a0  CSL_MDIO_phyInitiateRegReadC45                                                                             
    81f56700  CSL_intaggrGetCfg                                                                                          
    81f56760  CSL_serdesDisablePllAndLanes                                                                               
    81f567c0  CSL_vimClrIntrPending                                                                                      
    81f56820  CSL_vimGetIntrType                                                                                         
    81f56ac0  EnetSoc_deinit                                                                                             
    81f56b20  EnetSoc_getMacPortCaps                                                                                     
    81f56b80  GenericPhy_reset                                                                                           
    81f56c40  Sciclient_flush                                                                                            
    81f56ca0  UARTCharPutNonBlocking                                                                                     
    81f56d00  UART_dataWrite                                                                                             
    81f56d60  Udma_ringPrimeReadNormal                                                                                   
    81f56dc0  Udma_ringaccMemOps                                                                                         
    81f56e14  __TI_cleanup                                                                                               
    81f56e68  exit                                                                                                       
    81f56f10  CSL_MDIO_phyRegWrite2                                                                                      
    81f57190  EnetSoc_getEFusedMacAddrs                                                                                  
    81f57a00  MMR_unlock                                                                                                 
    81f57a50  Sciclient_getCurrentContext                                                                                
    81f57aa0  Sciclient_waitThread                                                                                       
    81f57af0  UARTCharGetNonBlocking2                                                                                    
    81f57b40  UARTCharPut                                                                                                
    81f57b90  UARTDivisorValCompute                                                                                      
    81f57be0  UARTRegConfigModeEnable                                                                                    
    81f57c30  Udma_eventDisable                                                                                          
    81f57c80  Udma_rmTranslateCoreIntrInput                                                                              
    81f57cd0  Udma_rmTranslateIrOutput                                                                                   
    81f57dc0  vPortEnterCritical                                                                                         
    81f57e60  CSL_CPSW_getP0FifoStatus                                                                                   
    81f57eb0  CSL_CPTS_setTSPpm                                                                                          
    81f57f00  CSL_CPTS_setTSVal                                                                                          
    81f57f50  CSL_MDIO_getVersionInfo                                                                                    
    81f57fa0  CSL_serdesPllEnable                                                                                        
    81f58220  EnetAppUtils_freeRxFlowForChIdx                                                                            
    81f58270  EnetAppUtils_setCommonRxFlowPrms                                                                           
    81f58310  IcssgUtils_FdbHelper                                                                                       
    81f58360  IcssgUtils_hwqLevel                                                                                        
    81f583b0  IcssgUtils_hwqPush                                                                                         
    81f58450  OsalArch_HwiPDelete                                                                                        
    81f584f0  UARTEnhanFuncEnable                                                                                        
    81f58540  UdmaChUtcPrms_init                                                                                         
    81f58590  UdmaRingPrms_init                                                                                          
    81f585e0  Udma_ringPrimeNormal                                                                                       
    81f58630  Udma_ringQueueRawNormal                                                                                    
    81f5867c  rand                                                                                                       
    81f586d0  vTaskPlaceOnEventList                                                                                      
    81f58720  Board_serdesCfg                                                                                            
    81f58770  CSL_CPGMAC_SL_getFifoStatus                                                                                
    81f587c0  CSL_CPSW_setAleIPNxtHdrWhitelist                                                                           
    81f58810  CSL_armR5CacheInv                                                                                          
    81f58860  CSL_armR5CacheWb                                                                                           
    81f588b0  CSL_armR5CacheWbInv                                                                                        
    81f58950  EnetAppUtils_freeTxCh                                                                                      
    81f58ae0  EnetUdma_freeRing                                                                                          
    81f58b80  IcssgUtils_R30CmdInit                                                                                      
    81f58bd0  IcssgUtils_hwqPushForSlice                                                                                 
    81f58cc0  TaskP_isTerminated                                                                                         
    81f58db0  Udma_phyToVirtFxn                                                                                          
    81f58df8  memccpy                                                                                                    
    81f58e40  unlink                                                                                                     
    81f58e90  vApplicationLoadHook                                                                                       
    81f58ee0  vPortExitCritical                                                                                          
    81f58f30  CSL_CPSW_getAleIPv4Entry_4G                                                                                
    81f58f80  CSL_CPSW_getAleIPv4Entry_9G                                                                                
    81f58fd0  CSL_CPSW_setPortVlanReg                                                                                    
    81f59020  CSL_druChIsTeardownComplete                                                                                
    81f59070  CSL_udmapGetRxRT                                                                                           
    81f590c0  CSL_udmapGetTxRT                                                                                           
    81f59200  EnetAppUtils_setCommonTxChPrms                                                                             
    81f592a0  EnetUdma_deInitRxFreeDescQ                                                                                 
    81f592f0  EnetUdma_deInitTxFreeDescQ                                                                                 
    81f593e0  Osal_RegisterInterrupt_initParams                                                                          
    81f59430  PRUICSS_create                                                                                             
    81f59480  PRUICSS_pruDisable                                                                                         
    81f594d0  PRUICSS_pruEnable                                                                                          
    81f59570  TIMERCompareSet                                                                                            
    81f595c0  TIMERCounterGet2                                                                                           
    81f59610  TIMERCounterSet                                                                                            
    81f59660  TIMERReloadGet2                                                                                            
    81f596b0  TIMERReloadSet                                                                                             
    81f59750  Udma_ringDequeueRawNormal                                                                                  
    81f597a0  Udma_virtToPhyFxn                                                                                          
    81f597f0  CSL_CPSW_getAlePolicerControlReg                                                                           
    81f59830  CSL_CPTS_setTSAddVal                                                                                       
    81f59870  CSL_vimAckIntr                                                                                             
    81f59bb0  Icssg_rejoin                                                                                               
    81f59cb0  SemaphoreP_constructCounting                                                                               
    81f59cf0  TIMERPostedModeConfig                                                                                      
    81f59d30  UARTIsTransmitterEmpty                                                                                     
    81f59db0  Udma_ringGetRingOccNormal                                                                                  
    81f59f70  uxListRemove                                                                                               
    81f59fb0  vQueueDelete                                                                                               
    81f59ff0  vQueueUnregisterQueue                                                                                      
    81f5a030  xPortStartScheduler                                                                                        
    81f5a070  CSL_CPSW_SS_setQSGMIIControlRdCd                                                                           
    81f5a0b0  CSL_CPTS_getTSAddVal                                                                                       
    81f5a0f0  CSL_CPTS_setTSNudge                                                                                        
    81f5a170  CSL_ringaccAckRspRing                                                                                      
    81f5a1f0  EnetAppUtils_printMacAddr                                                                                  
    81f5a270  EnetMem_freeDmaDesc                                                                                        
    81f5a2f0  HwiP_create                                                                                                
    81f5a330  IcssgMacPort_initCfg                                                                                       
    81f5a4f0  SemaphoreP_Params_init                                                                                     
    81f5a530  TIMERReadModeConfig                                                                                        
    81f5a570  TaskP_getFreertosHandle                                                                                    
    81f5a5b0  UARTEnhanFuncBitValRestore                                                                                 
    81f5a5f0  UARTHardwareFlowCtrlOptSet                                                                                 
    81f5a7f0  Udma_eventGetId                                                                                            
    81f5a8b0  CSL_CPSW_getAleUnkownVlanReg                                                                               
    81f5a8f0  CSL_CPSW_getAleVlanMaskMuxEntryReg                                                                         
    81f5a930  CSL_CPSW_setAlePolicerTestControlReg                                                                       
    81f5a970  CSL_CPTS_getESTFnLength                                                                                    
    81f5a9b0  CSL_CPTS_getGENFnLength                                                                                    
    81f5a9f0  CSL_CPTS_getTSPpm                                                                                          
    81f5aa30  CSL_SGMII_getStatus                                                                                        
    81f5aa70  CSL_druChEnable                                                                                            
    81f5aab0  CSL_druChTeardown                                                                                          
    81f5ab30  CSL_serdesPorReset                                                                                         
    81f5ab70  CSL_udmapSetRxRT                                                                                           
    81f5abb0  CSL_udmapSetTxRT                                                                                           
    81f5acb0  EnetAppUtils_freePktInfoQ                                                                                  
    81f5ad30  EnetDma_initPktInfo                                                                                        
    81f5ad70  EnetOsal_cacheInv                                                                                          
    81f5adb0  EnetOsal_cacheWb                                                                                           
    81f5adf0  EnetOsal_cacheWbInv                                                                                        
    81f5ae30  EnetTrace_trace                                                                                            
    81f5aeb0  TaskP_Function                                                                                             
    81f5aef0  Udma_eventGetGlobalHandle                                                                                  
    81f5af70  vQueueAddToRegistry                                                                                        
    81f5afb0  CSL_CPSW_getAleVersionInfo                                                                                 
    81f5aff0  CSL_CPSW_getCpswVersionInfo                                                                                
    81f5b030  CSL_CPSW_setPriCirEir                                                                                      
    81f5b070  CSL_SGMII_getVersionInfo                                                                                   
    81f5b0b0  CSL_druChSetEvent                                                                                          
    81f5b0f0  CSL_ringaccGetRingHwOcc                                                                                    
    81f5b130  CSL_ringaccGetRingOcc                                                                                      
    81f5b330  CpswMacPort_close                                                                                          
    81f5b3f0  EnetBoard_getMacAddrList                                                                                   
    81f5b470  EnetUdma_freeRingMon                                                                                       
    81f5b4b0  HwiP_restore                                                                                               
    81f5b4f0  Icssg_getDfltVlanAddr                                                                                      
    81f5b530  Intc_IntClrPend                                                                                            
    81f5b570  TaskP_Params_init                                                                                          
    81f5b5b0  TimerP_getCount                                                                                            
    81f5b5f0  TimerP_getReloadCount                                                                                      
    81f5b630  UARTIntIdentityGet                                                                                         
    81f5b670  UARTOperatingModeSelect                                                                                    
    81f5b6b0  UARTReadStatus                                                                                             
    81f5b770  Udma_rmGetSharedResPrms                                                                                    
    81f5b7a4  lseek                                                                                                      
    81f5b8e0  pvTimerGetTimerID                                                                                          
    81f5b920  vPortTimerTickHandler                                                                                      
    81f5b954  write                                                                                                      
    81f5b990  xQueueCreateMutexStatic                                                                                    
    81f5b9d0  xTaskGetSchedulerState                                                                                     
    81f5ba10  CSL_CPSW_SS_getQSGMIIStatusRxSync                                                                          
    81f5ba40  CSL_CPSW_SS_getXGMIILinkStatus                                                                             
    81f5ba70  CSL_CPSW_extractVid                                                                                        
    81f5baa0  CSL_CPSW_getALEAddressType                                                                                 
    81f5bad0  CSL_CPSW_getALEAddressType_4G                                                                              
    81f5bb00  CSL_CPSW_getALEAddressType_9G                                                                              
    81f5bb30  CSL_CPSW_getALEEntryType                                                                                   
    81f5bb60  CSL_CPSW_getALEPolicerEntryType                                                                            
    81f5bb90  CSL_CPSW_getPortMaxBlksReg                                                                                 
    81f5bbc0  CSL_CPSW_getPriCirEir                                                                                      
    81f5bbf0  CSL_CPSW_setCppiPriCirEir                                                                                  
    81f5bc20  CSL_CPTS_getCptsVersionInfo                                                                                
    81f5bc50  CSL_CPTS_setESTFnNudge                                                                                     
    81f5bc80  CSL_CPTS_setGENFnNudge                                                                                     
    81f5bcb0  CSL_MDIO_phyGetRegReadVal                                                                                  
    81f5bd40  CpswHostPort_initCfg                                                                                       
    81f5bdd0  CpswStats_rejoin                                                                                           
    81f5be00  EnetAppRm_getResPartInfo                                                                                   
    81f5be30  EnetHostPortDma_getDmaResInfo                                                                              
    81f5be60  EnetMod_ioctlFromIsr                                                                                       
    81f5bf50  EnetPhy_readExtReg                                                                                         
    81f5bf80  EnetPhy_writeExtReg                                                                                        
    81f5bfe0  EnetUdma_dmaDescCopyQ                                                                                      
    81f5c010  EnetUdma_memMgrDeInit                                                                                      
    81f5c040  HwiP_disable                                                                                               
    81f5c0a0  Intc_IntDisable                                                                                            
    81f5c0d0  Intc_IntEnable                                                                                             
    81f5c100  Mdio_initCfg                                                                                               
    81f5c130  Sciclient_configPrmsInit                                                                                   
    81f5c160  TIMERIntDisable                                                                                            
    81f5c190  TIMERIntEnable                                                                                             
    81f5c1c0  TIMERIntStatusClear                                                                                        
    81f5c1f0  UARTLineCharacConfig                                                                                       
    81f5c3a0  vListInsertEnd                                                                                             
    81f5c3d0  Board_pinmuxConfig                                                                                         
    81f5c400  CSL_CPSW_getAleOUIAddrEntry_4G                                                                             
    81f5c430  CSL_CPSW_getAleTableEntry                                                                                  
    81f5c460  CSL_CPSW_getEthertypeMax                                                                                   
    81f5c490  CSL_CPSW_getIpv4IgnBitsMax                                                                                 
    81f5c4c0  CSL_CPSW_getIpv6IgnBitsMax                                                                                 
    81f5c4f0  CSL_CPSW_getPortStats                                                                                      
    81f5c520  CSL_CPSW_mapTableWord2MacAddr_4G                                                                           
    81f5c550  CSL_CPSW_mapTableWord2MacAddr_9G                                                                           
    81f5c580  CSL_CPSW_setAleCtrl2IPPktFilterConfig                                                                      
    81f5c5b0  CSL_CPSW_setAleCtrl2MalformedFrameConfig                                                                   
    81f5c5e0  CSL_CPSW_setPort0VlanReg                                                                                   
    81f5c610  CSL_SGMII_getAdvAbility                                                                                    
    81f5c640  CSL_SGMII_getLinkPartnerAdvAbility                                                                         
    81f5c6d0  Cpsw_poll                                                                                                  
    81f5c700  EnetAppUtils_udmaclose                                                                                     
    81f5c730  EnetDma_disableRxEvent                                                                                     
    81f5c760  EnetDma_disableTxEvent                                                                                     
    81f5c850  EnetUdma_getTxChUdmaInfo                                                                                   
    81f5c8e0  EthBoard_delay                                                                                             
    81f5c9d0  Intc_IntPrioritySet                                                                                        
    81f5ca00  Osal_delay                                                                                                 
    81f5ca30  Osal_getThreadType                                                                                         
    81f5caf0  UARTInt2Disable                                                                                            
    81f5cb20  Udma_flowGetCount                                                                                          
    81f5cb50  Udma_flowGetNum                                                                                            
    81f5cc10  __aeabi_idiv                                                                                               
    81f5cc10  __divsi3                                                                                                   
    81f5cc40  CSL_CPSW_getALEPolicerEntryType_4G                                                                         
    81f5cc70  CSL_CPSW_getALEPolicerEntryType_9G                                                                         
    81f5cca0  CSL_CPSW_getAleIPv6HighEntryOffset                                                                         
    81f5ccd0  CSL_CPSW_getCppiPriCirEir                                                                                  
    81f5cd00  CSL_CPSW_setAlePolicerGlobConfig                                                                           
    81f5cd30  CSL_CPSW_setAleVlanMaskMuxEntryReg                                                                         
    81f5ce20  CSL_udmapGetChanPeerReg                                                                                    
    81f5ceb0  CSL_udmapSetChanPeerReg                                                                                    
    81f5cee0  ClockP_timerCallbackFunction                                                                               
    81f5cfa0  CpswMacPort_initCfg                                                                                        
    81f5d000  EnetAppRm_getIoctlPermissionInfo                                                                           
    81f5d1b0  EnetMem_freeRingMem                                                                                        
    81f5d210  EnetOsal_registerIntr                                                                                      
    81f5d240  EnetUtilsDflt_initCfg                                                                                      
    81f5d2a0  PMLIBClkRateGet                                                                                            
    81f5d2d0  Sciclient_readThread32                                                                                     
    81f5d390  UARTInt2Enable                                                                                             
    81f5d450  Udma_ringGetElementCntNormal                                                                               
    81f5d480  Udma_ringGetMemPtrNormal                                                                                   
    81f5d4b0  Udma_ringGetModeNormal                                                                                     
    81f5d4e0  Udma_ringGetNum                                                                                            
    81f5d510  Udma_ringGetRdIdxNormal                                                                                    
    81f5d540  Udma_ringGetWrIdxNormal                                                                                    
    81f5d5d0  pvTaskIncrementMutexHeldCount                                                                              
    81f5d650  vApplicationStackOverflowHook                                                                              
    81f5d680  CSL_CPSW_disablePortPassPriTag                                                                             
    81f5d6b0  CSL_CPSW_enablePortPassPriTag                                                                              
    81f5d6e0  CSL_CPSW_getAleEthertypeEntry                                                                              
    81f5d710  CSL_CPSW_getAleIPv4Entry                                                                                   
    81f5d740  CSL_CPSW_getAleIPv6Entry                                                                                   
    81f5d770  CSL_CPSW_getAleMcastAddrEntry                                                                              
    81f5d7a0  CSL_CPSW_getAleOutVlanEntry                                                                                
    81f5d7d0  CSL_CPSW_getAleUnicastAddrEntry                                                                            
    81f5d800  CSL_CPSW_getAleVlanEntry                                                                                   
    81f5d830  CSL_CPSW_getAleVlanMcastAddrEntry                                                                          
    81f5d860  CSL_CPSW_getAleVlanUnicastAddrEntry                                                                        
    81f5d890  CSL_CPSW_mapMacAddr2TableWord                                                                              
    81f5d8c0  CSL_CPSW_mapTableWord2MacAddr                                                                              
    81f5d8f0  CSL_CPSW_setAleEthertypeEntry                                                                              
    81f5d920  CSL_CPSW_setAleIPv4Entry                                                                                   
    81f5d950  CSL_CPSW_setAleIPv6Entry                                                                                   
    81f5d980  CSL_CPSW_setAleMcastAddrEntry                                                                              
    81f5d9b0  CSL_CPSW_setAleOUIAddrEntry                                                                                
    81f5d9e0  CSL_CPSW_setAleOutVlanEntry                                                                                
    81f5da70  CSL_CPSW_setAlePortControlTrunk                                                                            
    81f5daa0  CSL_CPSW_setAleUnicastAddrEntry                                                                            
    81f5dad0  CSL_CPSW_setAleVlanEntry                                                                                   
    81f5db00  CSL_CPSW_setAleVlanMcastAddrEntry                                                                          
    81f5db30  CSL_CPSW_setAleVlanUnicastAddrEntry                                                                        
    81f5db60  CSL_serdesEnableLanes                                                                                      
    81f5db90  CSL_udmapTeardownRxChan                                                                                    
    81f5dbc0  CSL_udmapTeardownTxChan                                                                                    
    81f5dbf0  CpswAle_clearGlobalPolicerStats                                                                            
    81f5dce0  EnetHostPortDma_openRsvdFlow                                                                               
    81f5dda0  EnetPhy_isLinked                                                                                           
    81f5ddd0  EnetPhy_printRegs                                                                                          
    81f5de00  EnetUdma_getRxFlowUdmaInfo                                                                                 
    81f5de30  EnetUtils_deinit                                                                                           
    81f5de60  IcssgUtils_WriteMem                                                                                        
    81f5dfe0  UdmaUtils_getRingMemSize                                                                                   
    81f5e0d0  vApplicationGetIdleTaskMemory                                                                              
    81f5e100  vApplicationGetTimerTaskMemory                                                                             
    81f5e130  vListInitialise                                                                                            
    81f5e160  vTaskInternalSetTimeOutState                                                                               
    81f5e190  xTaskGetTickCountFromISR                                                                                   
    81f5e1b4  __aeabi_uldivmod                                                                                           
    81f5e200  CSL_CPSW_clearAleEntry                                                                                     
    81f5e220  CSL_CPSW_getAlePolicerHstatReg                                                                             
    81f5e240  CSL_armR5GetCpuID                                                                                          
    81f5e280  ClockP_Params_init                                                                                         
    81f5e340  EnetQueue_initQ                                                                                            
    81f5e360  EnetSoc_getEnetHandleByIdx                                                                                 
    81f5e380  HwiP_Params_init                                                                                           
    81f5e3c0  Osal_DebugP_assert                                                                                         
    81f5e3e0  Osal_DebugP_assert_fcn                                                                                     
    81f5e400  UART_Params_init                                                                                           
    81f5e420  UART_open                                                                                                  
    81f5e440  UdmaRingMonPrms_init                                                                                       
    81f5e480  Udma_rmGetDefBoardCfgPrms                                                                                  
    81f5e4a0  _abort_msg                                                                                                 
    81f5e4c0  _args_main                                                                                                 
    81f5e4e0  _system_post_cinit                                                                                         
    81f5e500  vTaskEndScheduler                                                                                          
    81f5e520  wcslen                                                                                                     
    81f5e540  xTaskGetTickCount                                                                                          
    81f5e560  Board_isSocPG1                                                                                             
    81f5e580  CSL_CPSW_SS_setSGMIIMode                                                                                   
    81f5e5a0  CSL_CPSW_getAlePolicerGlobConfig                                                                           
    81f5e5c0  CSL_CPSW_getAleStatusNumAleEntries                                                                         
    81f5e5e0  CSL_CPSW_getAleStatusRamDepth                                                                              
    81f5e600  CSL_CPSW_getAleStatusVlanMask                                                                              
    81f5e620  CSL_CPSW_getThruRateReg                                                                                    
    81f5e640  CSL_CPSW_setVlanLTypeReg                                                                                   
    81f5e660  CSL_CPTS_TSEventPush                                                                                       
    81f5e680  CSL_CPTS_disableCpts                                                                                       
    81f5e6a0  CSL_CPTS_disableInterrupt                                                                                  
    81f5e6c0  CSL_CPTS_enableCpts                                                                                        
    81f5e6e0  CSL_CPTS_enableInterrupt                                                                                   
    81f5e700  CSL_CPTS_popEvent                                                                                          
    81f5e720  CSL_CPTS_setRFTCLKSelectReg                                                                                
    81f5e740  CSL_CPTS_setTSCompNudge                                                                                    
    81f5e7e0  CSL_proxyGetDataAddr                                                                                       
    81f5e800  CSL_vimGetFiqVectorAddress                                                                                 
    81f5e920  EnetUdma_dmaDescInit                                                                                       
    81f5e9a0  IcssgTimeSync_initCfg                                                                                      
    81f5e9c0  IcssgUtils_hwqReset                                                                                        
    81f5e9e0  Icssg_getDramAddr                                                                                          
    81f5ea20  Sciclient_rmIrqRelease                                                                                     
    81f5ea60  UARTBreakCtl                                                                                               
    81f5ea80  UARTDirEnControl                                                                                           
    81f5eaa0  UARTDirPolSet                                                                                              
    81f5eac0  UARTDivisorLatchDisable                                                                                    
    81f5eae0  UARTLoopbackModeControl                                                                                    
    81f5eb90  __aeabi_memset                                                                                             
    81f5eb90  __aeabi_memset4                                                                                            
    81f5eb90  __aeabi_memset8                                                                                            
    81f5eba0  __aeabi_memclr                                                                                             
    81f5eba0  __aeabi_memclr4                                                                                            
    81f5eba0  __aeabi_memclr8                                                                                            
    81f5ebf0  CSL_CPGMAC_SL_disableCastagnoliCRC                                                                         
    81f5ec10  CSL_CPGMAC_SL_disableLoopback                                                                              
    81f5ec30  CSL_CPGMAC_SL_disableTxShortGap                                                                            
    81f5ec50  CSL_CPGMAC_SL_disableTxShortGapLimit                                                                       
    81f5ec70  CSL_CPGMAC_SL_enableCastagnoliCRC                                                                          
    81f5ec90  CSL_CPGMAC_SL_enableIdleMode                                                                               
    81f5ecb0  CSL_CPGMAC_SL_enableLoopback                                                                               
    81f5ecd0  CSL_CPGMAC_SL_enableTxShortGap                                                                             
    81f5ecf0  CSL_CPGMAC_SL_enableTxShortGapLimit                                                                        
    81f5ed10  CSL_CPGMAC_SL_isMACResetDone                                                                               
    81f5ed30  CSL_CPGMAC_SL_resetMac                                                                                     
    81f5ed50  CSL_CPGMAC_SL_setRxMaxLen                                                                                  
    81f5ed70  CSL_CPGMAC_SL_setTxGap                                                                                     
    81f5ed90  CSL_CPSW_getAleEthertypeEntry_4G                                                                           
    81f5edb0  CSL_CPSW_getAleEthertypeEntry_9G                                                                           
    81f5edd0  CSL_CPSW_getAleOUIAddrEntry                                                                                
    81f5edf0  CSL_CPSW_setAlePortMirrorSouce                                                                             
    81f5ee10  CSL_CPTS_isRawInterruptStatusBitSet                                                                        
    81f5ee50  CSL_ringaccInitRingObj                                                                                     
    81f5eed0  CSL_udmapDisableTxChan                                                                                     
    81f5ef30  EnetAppUtils_getNavSSInstanceId                                                                            
    81f5ef90  EnetHostPortDma_closeRsvdFlow                                                                              
    81f5efb0  EnetOsal_createMutex                                                                                       
    81f5efd0  EnetOsal_deinit                                                                                            
    81f5eff0  EnetOsal_deleteMutex                                                                                       
    81f5f010  EnetOsal_disableAllIntr                                                                                    
    81f5f030  EnetOsal_lockMutex                                                                                         
    81f5f050  EnetOsal_restoreAllIntr                                                                                    
    81f5f070  EnetOsal_unlockMutex                                                                                       
    81f5f090  EnetOsal_unregisterIntr                                                                                    
    81f5f0d0  EnetUdma_freeProxy                                                                                         
    81f5f0f0  EnetUdma_getRxChFlowStartIdx                                                                               
    81f5f110  EnetUdma_getRxFlowCnt                                                                                      
    81f5f150  EnetUtils_physToVirt                                                                                       
    81f5f170  EnetUtils_virtToPhys                                                                                       
    81f5f1b0  Intc_IntSetSrcType                                                                                         
    81f5f1d0  Intc_SystemDisable                                                                                         
    81f5f1f0  Intc_SystemEnable                                                                                          
    81f5f210  LoadP_removeTask                                                                                           
    81f5f290  Udma_ringFlushRawNormal                                                                                    
    81f5f2b0  vPortYeildFromISR                                                                                          
    81f5f2d0  vTaskSuspendAll                                                                                            
    81f5f2f0  xPortInIsrContext                                                                                          
    81f5f308  __TI_zero_init                                                                                             
    81f5f320  Board_PLLInit                                                                                              
    81f5f340  Board_uartStdioInit                                                                                        
    81f5f360  CSL_CPGMAC_SL_getRxMaxLen                                                                                  
    81f5f380  CSL_CPGMAC_SL_getTxGap                                                                                     
    81f5f3a0  CSL_CPGMAC_SL_isGMIIEnabled                                                                                
    81f5f3c0  CSL_CPGMAC_SL_isTxShortGapEnabled                                                                          
    81f5f3e0  CSL_CPGMAC_SL_isTxShortGapLimitEnabled                                                                     
    81f5f400  CSL_CPSW_disableAlePolicerThread                                                                           
    81f5f420  CSL_CPSW_getALEEntryType_4G                                                                                
    81f5f440  CSL_CPSW_getALEEntryType_9G                                                                                
    81f5f460  CSL_CPSW_getAleIPv6HighEntryIndex                                                                          
    81f5f480  CSL_CPSW_getAlePortState                                                                                   
    81f5f4a0  CSL_CPSW_getAleStatusNumPolicers                                                                           
    81f5f500  CSL_CPSW_setAlePortState                                                                                   
    81f5f520  CSL_CPSW_setPort0FlowIdOffset                                                                              
    81f5f540  CSL_CPSW_setPort0RxMaxLen                                                                                  
    81f5f560  CSL_MDIO_clearUnmaskedLinkStatusChangeInt                                                                  
    81f5f580  CSL_MDIO_enableLinkStatusChangeInterrupt                                                                   
    81f5f5a0  CSL_MDIO_isPhyRegAccessComplete                                                                            
    81f5f5c0  CSL_MDIO_setClkDivVal                                                                                      
    81f5f5e0  CSL_MDIO_setPollIPG                                                                                        
    81f5f620  CSL_SGMII_DisableTestPattern                                                                               
    81f5f640  CSL_SGMII_disableAutoNegotiation                                                                           
    81f5f660  CSL_SGMII_disableLoopback                                                                                  
    81f5f680  CSL_SGMII_disableMasterMode                                                                                
    81f5f6a0  CSL_SGMII_enableAutoNegotiation                                                                            
    81f5f6c0  CSL_SGMII_enableLoopback                                                                                   
    81f5f6e0  CSL_SGMII_enableMasterMode                                                                                 
    81f5f700  CSL_SGMII_endRxTxSoftReset                                                                                 
    81f5f720  CSL_SGMII_startRxTxSoftReset                                                                               
    81f5f740  CSL_proxyGetNumThreads                                                                                     
    81f5f780  CSL_secProxyGetDataAddr                                                                                    
    81f5f7e0  CpswCpts_initCfg                                                                                           
    81f5f880  CpswMacPort_openInterVlan                                                                                  
    81f5f8a0  EnetBoard_getPhyCfg                                                                                        
    81f5f920  EnetUdma_dmaDescQInit                                                                                      
    81f5fb40  IcssgTas_reset                                                                                             
    81f5fb60  IcssgTimeSync_close                                                                                        
    81f5fb80  Icssg_wr16                                                                                                 
    81f5fba0  Icssg_wr32                                                                                                 
    81f5fbc0  Icssg_wr8                                                                                                  
    81f5fc00  Osal_DeleteInterrupt                                                                                       
    81f5fc20  PRUICSS_socGetInitCfg                                                                                      
    81f5fc40  Sciclient_readThreadCount                                                                                  
    81f5fcc0  Sciclient_service                                                                                          
    81f5fce0  Sciclient_threadStatusReg                                                                                  
    81f5fd00  Sciclient_verifyThread                                                                                     
    81f5fd20  UARTInt2StatusGet                                                                                          
    81f5fd40  UARTTxFIFOFullStatusGet                                                                                    
    81f5fd60  UART_readPolling                                                                                           
    81f5fd80  UART_write                                                                                                 
    81f5fda0  UART_writePolling                                                                                          
    81f5fde0  Udma_ringGetElementCnt                                                                                     
    81f5fe00  Udma_ringGetForwardRingOcc                                                                                 
    81f5fe20  Udma_ringGetMemPtr                                                                                         
    81f5fe40  Udma_ringGetMode                                                                                           
    81f5fe60  Udma_ringGetRdIdx                                                                                          
    81f5fe80  Udma_ringGetReverseRingOcc                                                                                 
    81f5fea0  Udma_ringGetWrIdx                                                                                          
    81f5fec0  Udma_ringPrime                                                                                             
    81f5fee0  Udma_ringPrimeRead                                                                                         
    81f5ff00  Udma_ringSetDoorBell                                                                                       
    81f5ff50  osalArch_Init                                                                                              
    81f5ff80  ulTaskGetIdleRunTimeCounter                                                                                
    81f5ffa0  vTaskMissedYield                                                                                           
    81f5ffb4  __TI_decompress_none                                                                                       
    81f5ffd0  CSL_CPGMAC_SL_getMacControlReg                                                                             
    81f5ffe0  CSL_CPGMAC_SL_setMacControlReg                                                                             
    81f5fff0  CSL_CPSW_clearAleTable                                                                                     
    81f60000  CSL_CPSW_disableAleBypass                                                                                  
    81f60010  CSL_CPSW_disableAleRateLimit                                                                               
    81f60020  CSL_CPSW_disableAleTxRateLimit                                                                             
    81f60030  CSL_CPSW_disableAleVlanAware                                                                               
    81f60040  CSL_CPSW_disableP0TxCastagnoliCRC                                                                          
    81f60050  CSL_CPSW_disablePort0                                                                                      
    81f60060  CSL_CPSW_disableVlanAware                                                                                  
    81f60070  CSL_CPSW_enableAleBypass                                                                                   
    81f60080  CSL_CPSW_enableAleRateLimit                                                                                
    81f60090  CSL_CPSW_enableAleTxRateLimit                                                                              
    81f600a0  CSL_CPSW_enableAleVlanAware                                                                                
    81f600b0  CSL_CPSW_enableP0TxCastagnoliCRC                                                                           
    81f600c0  CSL_CPSW_enablePort0                                                                                       
    81f600d0  CSL_CPSW_enableVlanAware                                                                                   
    81f600e0  CSL_CPSW_getPort0FlowIdOffset                                                                              
    81f600f0  CSL_CPSW_getPort0RxMaxLen                                                                                  
    81f60100  CSL_CPSW_isAleAgeOutDone                                                                                   
    81f60110  CSL_CPSW_setAleCtrl2MirrorMatchIndex                                                                       
    81f60120  CSL_CPSW_setAleOAMLpbkControl                                                                              
    81f60130  CSL_CPSW_setAlePrescaleReg                                                                                 
    81f60140  CSL_CPSW_setAleUnknwnVlanMemberReg                                                                         
    81f60150  CSL_CPSW_setAleUnknwnVlanRegMcastReg                                                                       
    81f60160  CSL_CPSW_setAleUnknwnVlanUnregMcastReg                                                                     
    81f60170  CSL_CPSW_setAleUnknwnVlanUntagReg                                                                          
    81f60180  CSL_CPSW_setGapThreshold                                                                                   
    81f60190  CSL_CPSW_setVlanType                                                                                       
    81f601a0  CSL_CPSW_startAleAgeOutNow                                                                                 
    81f601b0  CSL_MDIO_disableLinkStatusChangeInterrupt                                                                  
    81f601c0  CSL_MDIO_disableStateChangeMode                                                                            
    81f601d0  CSL_MDIO_disableStateMachine                                                                               
    81f601e0  CSL_MDIO_disableStatusChangeModeInterrupt                                                                  
    81f601f0  CSL_MDIO_enableStateChangeMode                                                                             
    81f60200  CSL_MDIO_enableStateMachine                                                                                
    81f60210  CSL_MDIO_enableStatusChangeModeInterrupt                                                                   
    81f60220  CSL_MDIO_getLinkStatusChangePhyAddr                                                                        
    81f60230  CSL_MDIO_isPhyAlive                                                                                        
    81f60240  CSL_MDIO_isPhyLinked                                                                                       
    81f60250  CSL_MDIO_isUnmaskedLinkStatusChangeIntSet                                                                  
    81f602f0  CSL_SGMII_getRxTxSoftResetStatus                                                                           
    81f60300  CSL_SGMII_getSerdesPLLLockStatus                                                                           
    81f60310  CSL_SGMII_isAutoNegotiationEnabled                                                                         
    81f60320  CSL_SGMII_isMasterModeEnabled                                                                              
    81f60340  CSL_serdesGetPLLStatus                                                                                     
    81f60350  CSL_serdesWaitForCMUOK                                                                                     
    81f60410  CpswCpts_close                                                                                             
    81f60420  CpswHostPort_rejoin                                                                                        
    81f60450  CpswMacPort_rejoin                                                                                         
    81f604a0  Icssg_getRgmiiCfgAddr                                                                                      
    81f604b0  Icssg_getVlanTableAddr                                                                                     
    81f604c0  Icssg_rd16                                                                                                 
    81f604d0  Icssg_rd32                                                                                                 
    81f604e0  Icssg_rd8                                                                                                  
    81f604f0  Icssg_wr64                                                                                                 
    81f60500  OsalArch_clearInterrupt                                                                                    
    81f60510  OsalArch_disableInterrupt                                                                                  
    81f60520  OsalArch_enableInterrupt                                                                                   
    81f60530  Osal_ClearInterrupt                                                                                        
    81f60540  Osal_DisableInterrupt                                                                                      
    81f60550  Osal_EnableInterrupt                                                                                       
    81f60570  TIMERIntStatusGet                                                                                          
    81f60580  TIMERWritePostedStatusGet                                                                                  
    81f605a0  Udma_chGetUtcInst                                                                                          
    81f605e0  Udma_ringHandleClearRegsNormal                                                                             
    81f60600  vApplicationIdleHook                                                                                       
    81f60610  xTaskGetCurrentTaskHandle                                                                                  
    81f60620  CSL_CPSW_getAlePrescaleReg                                                                                 
    81f60630  CSL_CPSW_getGapThreshold                                                                                   
    81f60640  CSL_CPSW_getTxStartWords                                                                                   
    81f60650  CSL_CPSW_isAleBypassEnabled                                                                                
    81f60660  CSL_CPSW_isAleRateLimitEnabled                                                                             
    81f60670  CSL_CPSW_isAleTxRateLimitEnabled                                                                           
    81f60680  CSL_CPSW_isAleVlanAwareEnabled                                                                             
    81f60690  CSL_CPSW_isVlanAwareEnabled                                                                                
    81f606a0  CSL_MDIO_isStateChangeModeEnabled                                                                          
    81f606b0  CSL_MDIO_setPollEnableMask                                                                                 
    81f60710  CacheP_Inv                                                                                                 
    81f60720  CacheP_wb                                                                                                  
    81f60730  CacheP_wbInv                                                                                               
    81f607c0  EnetAppUtils_getChar                                                                                       
    81f60830  EnetPhyMdioDflt_getPhyMdio                                                                                 
    81f60870  EnetUdma_unregisterEvent                                                                                   
    81f608a0  EnetUtils_min                                                                                              
    81f608b0  Enet_initOsalCfg                                                                                           
    81f608c0  Enet_initUtilsCfg                                                                                          
    81f609d0  HwiP_clearInterrupt                                                                                        
    81f609e0  HwiP_disableInterrupt                                                                                      
    81f609f0  HwiP_enableInterrupt                                                                                       
    81f60a00  Icssg_getCfgAddr                                                                                           
    81f60a10  Icssg_getSharedRamAddr                                                                                     
    81f60a20  Intc_SystemRestore                                                                                         
    81f60a30  OS_start                                                                                                   
    81f60a40  OS_stop                                                                                                    
    81f60a50  OsalArch_globalDisableInterrupt                                                                            
    81f60a60  OsalArch_globalRestoreInterrupt                                                                            
    81f60a80  Sciclient_rmIrqSet                                                                                         
    81f60a90  Sciclient_rmIrqTranslateIrOutput                                                                           
    81f60aa0  Sciclient_rmIrqTranslateIrqInput                                                                           
    81f60ac0  TaskP_sleep                                                                                                
    81f60ad0  TimerP_getDefaultFreqLo                                                                                    
    81f60af0  UARTFIFOCharPut                                                                                            
    81f60b00  UART_getc                                                                                                  
    81f60b10  UART_putc                                                                                                  
    81f60b60  uiPortGetRunTimeCounterValue                                                                               
    81f60b70  vListInitialiseItem                                                                                        
    81f60b80  Board_getNumClkConfigs                                                                                     
    81f60b90  CSL_CPSW_extractVid_4G                                                                                     
    81f60ba0  CSL_CPSW_extractVid_9G                                                                                     
    81f60bb0  CSL_CPSW_getAleControlReg                                                                                  
    81f60bc0  CSL_CPSW_getAleIPv6LowEntryIndex                                                                           
    81f60bd0  CSL_CPSW_getEthertypeMax_4G                                                                                
    81f60be0  CSL_CPSW_getEthertypeMax_9G                                                                                
    81f60bf0  CSL_CPSW_getIpv4IgnBitsMax_4G                                                                              
    81f60c00  CSL_CPSW_getIpv4IgnBitsMax_9G                                                                              
    81f60c10  CSL_CPSW_getIpv6IgnBitsMax_4G                                                                              
    81f60c20  CSL_CPSW_getIpv6IgnBitsMax_9G                                                                              
    81f60c30  CSL_CPSW_setAleControlReg                                                                                  
    81f60c40  CSL_MDIO_getClause45EnableMask                                                                             
    81f60c50  CSL_MDIO_getPollEnableMask                                                                                 
    81f60c60  CSL_MDIO_setClause45EnableMask                                                                             
    81f60fe0  CpswAle_rejoin                                                                                             
    81f60ff0  CpswCpts_rejoin                                                                                            
    81f61020  EnetRm_rejoin                                                                                              
    81f61030  EnetSoc_getCoreId                                                                                          
    81f61040  EnetSoc_getEnetNum                                                                                         
    81f61050  EnetSoc_getIntrTriggerType                                                                                 
    81f61060  EnetSoc_mapPort2QsgmiiId                                                                                   
    81f61070  EnetSoc_validateQsgmiiCfg                                                                                  
    81f61080  EnetUdma_dmaDescQCount                                                                                     
    81f610e0  IcssgStats_rejoin                                                                                          
    81f610f0  IcssgTas_rejoin                                                                                            
    81f61100  IcssgTimeSync_rejoin                                                                                       
    81f61110  Mdio_rejoin                                                                                                
    81f61120  TimerP_getDefaultFreqHi                                                                                    
    81f61160  Udma_getCoreId                                                                                             
    81f61170  Udma_getGlobalEventOffset                                                                                  
    81f61180  Udma_isCacheCoherent                                                                                       
    81f61190  CpswStats_close                                                                                            
    81f611b0  DebugP_log0                                                                                                
    81f611c0  DebugP_log1                                                                                                
    81f611d0  EnetBoard_deinit                                                                                           
    81f611f0  EnetUtils_delay                                                                                            
    81f61210  IcssgStats_close                                                                                           
    81f61220  IcssgTas_close                                                                                             
    81f61230  TimerP_mapId                                                                                               
    81f61240  TimerP_updateDefaultInfoTbl                                                                                
    81f61250  UART_socInit                                                                                               
    81f61280  __aeabi_idiv0                                                                                              
    81f61290  __aeabi_ldiv0                                                                                              
    81f612a0  vPortConfigTimerForRunTimeStats                                                                            
    81f612b0  vPortEndScheduler                                                                                          
    81f612c0  vPortValidateInterruptPriority                                                                             
    81fbbd80  gEnetMp                                                                                                    
    81fc6240  gEnetSoc_dmaObj                                                                                            
    81fc9718  IcssgUtils_BufPoolCfg                                                                                      
    81fd2778  gEnetMp_cpswStats                                                                                          
    81fd2df8  prussObjects                                                                                               
    81fd3200  UartObjects                                                                                                
    81fd3798  __CIOBUF_                                                                                                  
    81fd38b8  gEnetMp_icssgPaStats                                                                                       
    81fd39d8  xQueueRegistry                                                                                             
    81fd3ad8  gEnetMp_icssgStats                                                                                         
    81fd3bc8  gEnetUtilsObj                                                                                              
    81fd3ca0  __TI_tmpnams                                                                                               
    81fd3d40  gRovDummyQueue                                                                                             
    81fd3d90  gEnetOsalObj                                                                                               
    81fd3e40  gTimerCntrl                                                                                                
    81fd3ee4  parmbuf                                                                                                    
    81fd3f04  gVimBaseAddr                                                                                               
    ffffabe0  __UND_STACK_START                                                                                          
    fffface0  __SVC_STACK_START                                                                                          
    fffface0  __UND_STACK_END                                                                                            
    ffffade0  __IRQ_STACK_START                                                                                          
    ffffade0  __SVC_STACK_END                                                                                            
    ffffbde0  __FIQ_STACK_START                                                                                          
    ffffbde0  __IRQ_STACK_END                                                                                            
    ffffbee0  __ABORT_STACK_START                                                                                        
    ffffbee0  __FIQ_STACK_END                                                                                            
    ffffbfe0  __ABORT_STACK_END                                                                                          
    ffffbfe0  __stack                                                                                                    
    ffffffe0  __STACK_END                                                                                                
    ffffffff  __TI_pprof_out_hndl                                                                                        
    ffffffff  __TI_prof_data_size                                                                                        
    ffffffff  __TI_prof_data_start                                                                                       
    ffffffff  __binit__                                                                                                  
    ffffffff  binit                                                                                                      
    UNDEFED   __c_args__                                                                                                 
    
    [1797 symbols]
    

  • Hi Benjamin,

    not sure why main would be in DDR though. 

    I think this should be okay. The startup routine will configure MPUs so it shouldn't matter where the main function is loaded. What I find interesting here is the section `.freertosrstvectors` is not loaded to ATCM.

    From my knowledge on AM64x devices, the bootloaders sets the R5F boot vector in MMRs, which tells the location of exception table, to 0x0. Accordingly, every application's `.vectors` section is loaded to ATCM address 0x0 so everything works. I suppose this should be the same for AM65x as well.

    I am not entirely sure if it will work but can you try allocating the `.freertosrstvectors` to ATCM (MCU0_ATCM_NOT_USED).

    If this doesn't work, please share the memory contents starting from address 0x0 (exception table address) using the CCS's Memory Brower.

    Regards,

    Prashant

  • That got the app a little further, but we are still not hitting main, we are now at the HwiP_data_abort_handler_c() function at memory address 0x7014D154. 

    Here is what the memory browser shows 

    0x00000000	__TI_static_base__, _freertosresetvectors
    0x00000000	E59FF018	E59FF018	E59FF018	E59FF018	E59FF018	E59FF018	E59FF018	E59FF018
    0x00000020	c_int00_addr
    0x00000020	41C3F8CC
    0x00000024	undefInst_addr
    0x00000024	7014D0B0
    0x00000028	swi_addr
    0x00000028	7014D1A8
    0x0000002C	preAbort_addr
    0x0000002C	7014D0E0
    0x00000030	dataAbort_addr
    0x00000030	7014D368
    0x00000034	rsvd_addr
    0x00000034	7014D080
    0x00000038	irq_addr
    

    I have a hunch things are failing at the _c_int00 routine now, will try to debug a bit. 

  • Having a bit of trouble stepping through _c_int00, are there other sections that should be in TCM?

  • Hi Benjamin,

    The load address of .stack section seems fishy. Can you try allocating .stack to MSMC3 and see if that helps.

    Regards,

    Prashant

  • Nice! Moving stack to MSMC got us to main! It seems that when FreeRTOS scheduler starts we hit the data abort handler again (OS_start specifically). Perhaps there is another section that needs to be moved to MSMC?

  • Hi Benjamin,

    Try allocating every stack section .*stack to MSMC3 and see if that helps.

    Regards,

    Prashant

  • That does not seem to do it, but what did do it was moving basically everything into MSMC, besides the ENET memory sections. I am now able to get to EnetMem_init(), but I hit the data about exception handler when trying to do a memset on gRingMemArray, which is in section  .bss:ENET_DMA_RING_MEMPOOL. Here is what my linker script is looking like now:

    /*----------------------------------------------------------------------------*/
    /* r5f_linker_freertos.lds                                                    */
    /*                                                                            */
    /* (c) Texas Instruments 2021, All rights reserved.                           */
    /*                                                                            */
    
    --retain="*(.bootCode)"
    --retain="*(.startupCode)"
    --retain="*(.startupData)"
    --retain="*(.irqStack)"
    --retain="*(.fiqStack)"
    --retain="*(.abortStack)"
    --retain="*(.undStack)"
    --retain="*(.svcStack)"
    
    --fill_value=0
    --stack_size=0x4000
    --heap_size=0x8000
    --entry_point=_freertosresetvectors
    
    -stack  0x4000  /* SOFTWARE STACK SIZE */
    -heap   0x8000  /* HEAP AREA SIZE      */
    
    /*-------------------------------------------*/
    /*       Stack Sizes for various modes       */
    /*-------------------------------------------*/
    __IRQ_STACK_SIZE   = 0x1000;
    __FIQ_STACK_SIZE   = 0x0100;
    __ABORT_STACK_SIZE = 0x0100;
    __UND_STACK_SIZE   = 0x0100;
    __SVC_STACK_SIZE   = 0x0100;
    
    /*--------------------------------------------------------------------------*/
    /*                               Memory Map                                 */
    /*--------------------------------------------------------------------------*/
    MEMORY
    {
        /*--- Refer the user guide for details on persistence of these sections ---*/
        /*------------ Also, when these memories can be used by apps --------------*/
        MCU0_ATCM_NOT_USED          (R)     : ORIGIN = 0x00000000 LENGTH = 0x00007FFF
        MCU0_BTCM_NOT_USED          (R)     : ORIGIN = 0x41010000 LENGTH = 0x00007FFF
        /*----------- Used by SBL, can be used after APPs is started --------------*/
        MCU_MSRAM_RSVD_UNUSED       (R)     : ORIGIN = 0x41C00000 LENGTH = 0x00000200
        MCU_MSRAM_RSVD_SBL          (RWIX)  : ORIGIN = 0x41C00200 LENGTH = 0x0003DE00
    
        VECTORS                     (RWIX)  : ORIGIN = 0x41C3E000 LENGTH = 0x00000100
        RESET_VECTORS               (RWIX)  : ORIGIN = 0x41C3E100 LENGTH = 0x00001000
        OCMC_RAM                    (RWIX)  : ORIGIN = 0x41C3F100 LENGTH = 0x00040F00
    
        /*====================== COMPUTE_CLUSTER0_MSMC_SRAM =======================*/
        MSMC3                       (RWIX)  : ORIGIN = 0x70000000 LENGTH = 0x001EFC00
        /*---------- The ORIGIN  and LENGTH  is determined by board cfg, ----------*/ 
        /*------------------ refer user guide for details -------------------------*/
        MSMC3_RSVD_DMSC             (RWIX)  : ORIGIN = 0x701F0000 LENGTH = 0x00001000
    
        /*========================== AM65xx DDR LOCATION ==========================*/
        DDR0                        (RWIX)  : ORIGIN = 0x80000000 LENGTH = 0x7FFFFFE4
    
    }
    
    /*--------------------------------------------------------------*/
    /*                     Section Configuration                    */
    /*--------------------------------------------------------------*/
    SECTIONS
    {
        .intc_text               : {} palign(8)      > VECTORS
        .freertosrstvectors      : {} palign(8)      > MCU0_ATCM_NOT_USED /*RESET_VECTORS*/
        .bootCode                : {} palign(8)      > OCMC_RAM
        .startupCode             : {} palign(8)      > OCMC_RAM
        .startupData             : {} palign(8)      > OCMC_RAM, type = NOINIT
        .text                    : {} palign(8)      > MSMC3
        GROUP {
            .text.hwi    : palign(8)
            .text.cache  : palign(8)
            .text.mpu    : palign(8)
            .text.boot   : palign(8)
        }                                            > MSMC3
        .const                   : {} palign(8)      > MSMC3
        .rodata                  : {} palign(8)      > MSMC3
        .cinit                   : {} palign(8)      > MSMC3
        .pinit                   : {} palign(8)      > MSMC3
        .bss                     : {} align(8)       > MSMC3 /*DDR0*/
        .far                     : {} align(8)       > MSMC3 /*DDR0*/
        .data                    : {} palign(128)    > MSMC3
        .sysmem                  : {} align(8)       > MSMC3
        .data_buffer             : {} palign(128)    > MSMC3 /*DDR0*/
        .bss.devgroup*           : {} align(8)       > MSMC3 /*DDR0*/
        .const.devgroup*         : {} align(8)       > MSMC3 /*DDR0*/
        .boardcfg_data           : {} align(128)     > MSMC3
        .stack      : {}                            align(8)    > MSMC3 (HIGH) /*DDR0*/  
    
        .irqStack   : {. = . + __IRQ_STACK_SIZE;}   align(8)    > MSMC3 (HIGH) /*DDR0*/
        RUN_START(__IRQ_STACK_START)
        RUN_END(__IRQ_STACK_END)
    
        .fiqStack  	: {. = . + __FIQ_STACK_SIZE;}   align(8)    > MSMC3 (HIGH) /*DDR0*/
        RUN_START(__FIQ_STACK_START)
        RUN_END(__FIQ_STACK_END)
    
        .abortStack : {. = . + __ABORT_STACK_SIZE;} align(8)    > MSMC3 (HIGH) /*DDR0*/
        RUN_START(__ABORT_STACK_START)
        RUN_END(__ABORT_STACK_END)
    
        .undStack  	: {. = . + __UND_STACK_SIZE;}   align(8)    > MSMC3 (HIGH) /*DDR0*/
        RUN_START(__UND_STACK_START)
        RUN_END(__UND_STACK_END)
    
        .svcStack  	: {. = . + __SVC_STACK_SIZE;}   align(8)    > MSMC3 (HIGH) /*DDR0*/
        RUN_START(__SVC_STACK_START)
        RUN_END(__SVC_STACK_END)
    
        /* DMA packet info (metadata), packet data and UDMA ring and desc memory */
        .bss:ENET_DMA_DESC_MEMPOOL (NOLOAD) {} ALIGN (128) > DDR0
        .bss:ENET_DMA_RING_MEMPOOL (NOLOAD) {} ALIGN (128) > DDR0
        .bss:ENET_DMA_PKT_MEMPOOL  (NOLOAD) {} ALIGN (128) > DDR0
        .bss:ENET_DMA_OBJ_MEM      (NOLOAD) {} ALIGN (128) > DDR0
        .bss:ENET_DMA_PKT_INFO_MEMPOOL (NOLOAD) {} ALIGN (128) > DDR0
    
        /* for ICSSG MEM */
        .bss:ENET_ICSSG_OCMC_MEM (NOLOAD) {} ALIGN (128) > MSMC3
    
        /* Used in Switch configuration tool */
        .serialContext     (NOLOAD) {} ALIGN (128) > DDR0
    
        /* SA sections */
        .scBufs         : {} align(8)   > DDR0
        .saSrcBuffers   : {} align(8)   > DDR0
        .saDstBuffers   : {} align(8)   > DDR0
    }
    
    


    Strange that gRingMemArray is in DDR, and it seems like we are not able to perform operations on it without hitting the data abort handler. This is line 423 in enet_appmemutils.c by the way

  • I guess the MPU configurations are missing a region for DDR. Can you check if the DDR MPU configurations are being done?

  • Seems like it is being done, with the MPU config used in ti\drv\enet\examples\build\am65xx\r5_mpu_default.c:

    const CSL_ArmR5MpuRegionCfg  gCslR5MpuCfg[CSL_ARM_R5F_MPU_REGIONS_MAX] =
    {
        {
            /* Region 0 configuration: complete 32 bit address space = 4Gbits */
            .regionId         = 0U,
            .enable           = 1U,
            .baseAddr         = 0x0U,
            .size             = CSL_ARM_R5_MPU_REGION_SIZE_4GB,
            .subRegionEnable  = CSL_ARM_R5_MPU_SUB_REGION_ENABLE_ALL,
            .exeNeverControl  = 1U,
            .accessPermission = CSL_ARM_R5_ACC_PERM_PRIV_USR_RD_WR,
            .shareable        = 0U,
            .cacheable        = (uint32_t)FALSE,
            .cachePolicy      = 0U,
            .memAttr          = 0U,
        },
        {
            /* Region 1 configuration: ATCM memory */
            .regionId         = 1U,
            .enable           = 1U,
            .baseAddr         = 0x0U,
            .size             = CSL_ARM_R5_MPU_REGION_SIZE_32KB,
            .subRegionEnable  = CSL_ARM_R5_MPU_SUB_REGION_ENABLE_ALL,
            .exeNeverControl  = 0U,
            .accessPermission = CSL_ARM_R5_ACC_PERM_PRIV_USR_RD_WR,
            .shareable        = 0U,
            .cacheable        = (uint32_t)TRUE,
            .cachePolicy      = CSL_ARM_R5_CACHE_POLICY_WB_WA,
            .memAttr          = 0U,
        },
        {
            /* Region 2 configuration: ATCM memory as cacheble */
            .regionId         = 2U,
            .enable           = 1U,
            .baseAddr         = 0x41000000U,
            .size             = CSL_ARM_R5_MPU_REGION_SIZE_32KB,
            .subRegionEnable  = CSL_ARM_R5_MPU_SUB_REGION_ENABLE_ALL,
            .exeNeverControl  = 0U,
            .accessPermission = CSL_ARM_R5_ACC_PERM_PRIV_USR_RD_WR,
            .shareable        = 0U,
            .cacheable        = (uint32_t)TRUE,
            .cachePolicy      = CSL_ARM_R5_CACHE_POLICY_WB_WA,
            .memAttr          = 0U,
        },
        {
            /* Region 3 configuration: BTCM memory as cacheble */
            .regionId         = 3U,
            .enable           = 1U,
            .baseAddr         = 0x41010000U,
            .size             = CSL_ARM_R5_MPU_REGION_SIZE_32KB,
            .subRegionEnable  = CSL_ARM_R5_MPU_SUB_REGION_ENABLE_ALL,
            .exeNeverControl  = 0U,
            .accessPermission = CSL_ARM_R5_ACC_PERM_PRIV_USR_RD_WR,
            .shareable        = 0U,
            .cacheable        = (uint32_t)TRUE,
            .cachePolicy      = CSL_ARM_R5_CACHE_POLICY_NON_CACHEABLE,
            .memAttr          = 0U,
        },
        {
            /* Region 4 configuration: 512 KB OCMC RAM as cacheble */
            .regionId         = 4U,
            .enable           = 1U,
            .baseAddr         = 0x41C00000,
            .size             = CSL_ARM_R5_MPU_REGION_SIZE_512KB,
            .subRegionEnable  = CSL_ARM_R5_MPU_SUB_REGION_ENABLE_ALL,
            .exeNeverControl  = 0U,
            .accessPermission = CSL_ARM_R5_ACC_PERM_PRIV_USR_RD_WR,
            .shareable        = 0U,
            .cacheable        = (uint32_t)TRUE,
            .cachePolicy      = CSL_ARM_R5_CACHE_POLICY_WB_WA,
            .memAttr          = 0U,
        },
        {
            /* Region 5 configuration: 2 MB MCMS3 RAM as cacheble */
            .regionId         = 5U,
            .enable           = 1U,
            .baseAddr         = 0x70000000,
            .size             = CSL_ARM_R5_MPU_REGION_SIZE_2MB,
            .subRegionEnable  = CSL_ARM_R5_MPU_SUB_REGION_ENABLE_ALL,
            .exeNeverControl  = 0U,
            .accessPermission = CSL_ARM_R5_ACC_PERM_PRIV_USR_RD_WR,
            .shareable        = 0U,
            .cacheable        = (uint32_t)TRUE,
            .cachePolicy      = CSL_ARM_R5_CACHE_POLICY_WB_WA,
            .memAttr          = 0U,
        },
        {
            /* Region 6 configuration: 2 GB DDR RAM */
            .regionId         = 6U,
            .enable           = 1U,
            .baseAddr         = 0x80000000,
            .size             = CSL_ARM_R5_MPU_REGION_SIZE_2GB,
            .subRegionEnable  = CSL_ARM_R5_MPU_SUB_REGION_ENABLE_ALL,
            .exeNeverControl  = 0U,
            .accessPermission = CSL_ARM_R5_ACC_PERM_PRIV_USR_RD_WR,
            .shareable        = 0U,
            .cacheable        = (uint32_t)TRUE,
            .cachePolicy      = CSL_ARM_R5_CACHE_POLICY_WB_WA,
            .memAttr          = 0U,
        },
    };



    Within CCS I am able to modify the contents of DDR memory using the memory browser

  • One interesting thing, it seems like gRingMemArray does not actually have a memory address when attempting to look at it in CCS. 

    When attempting to watch &gRingMemArray CCS says that "An error occurred at &(gRingMemArray)", and I cannot even look at the contents of the array. 

  • Interesting, I may have missed something, the example seems to be loading now with the following linker configuration:

    /*----------------------------------------------------------------------------*/
    /* r5f_linker_freertos.lds                                                    */
    /*                                                                            */
    /* (c) Texas Instruments 2021, All rights reserved.                           */
    /*                                                                            */
    
    --retain="*(.bootCode)"
    --retain="*(.startupCode)"
    --retain="*(.startupData)"
    --retain="*(.irqStack)"
    --retain="*(.fiqStack)"
    --retain="*(.abortStack)"
    --retain="*(.undStack)"
    --retain="*(.svcStack)"
    
    --fill_value=0
    --stack_size=0x4000
    --heap_size=0x8000
    --entry_point=_freertosresetvectors
    
    -stack  0x4000  /* SOFTWARE STACK SIZE */
    -heap   0x8000  /* HEAP AREA SIZE      */
    
    /*-------------------------------------------*/
    /*       Stack Sizes for various modes       */
    /*-------------------------------------------*/
    __IRQ_STACK_SIZE   = 0x1000;
    __FIQ_STACK_SIZE   = 0x0100;
    __ABORT_STACK_SIZE = 0x0100;
    __UND_STACK_SIZE   = 0x0100;
    __SVC_STACK_SIZE   = 0x0100;
    
    /*--------------------------------------------------------------------------*/
    /*                               Memory Map                                 */
    /*--------------------------------------------------------------------------*/
    MEMORY
    {
        /*--- Refer the user guide for details on persistence of these sections ---*/
        /*------------ Also, when these memories can be used by apps --------------*/
        MCU0_ATCM_NOT_USED          (R)     : ORIGIN = 0x00000000 LENGTH = 0x00007FFF
        MCU0_BTCM_NOT_USED          (R)     : ORIGIN = 0x41010000 LENGTH = 0x00007FFF
        /*----------- Used by SBL, can be used after APPs is started --------------*/
        MCU_MSRAM_RSVD_UNUSED       (R)     : ORIGIN = 0x41C00000 LENGTH = 0x00000200
        MCU_MSRAM_RSVD_SBL          (RWIX)  : ORIGIN = 0x41C00200 LENGTH = 0x0003DE00
    
        VECTORS                     (RWIX)  : ORIGIN = 0x41C3E000 LENGTH = 0x00000100
        RESET_VECTORS               (RWIX)  : ORIGIN = 0x41C3E100 LENGTH = 0x00001000
        OCMC_RAM                    (RWIX)  : ORIGIN = 0x41C3F100 LENGTH = 0x00040F00
    
        /*====================== COMPUTE_CLUSTER0_MSMC_SRAM =======================*/
        MSMC3                       (RWIX)  : ORIGIN = 0x70000000 LENGTH = 0x001EFC00
        /*---------- The ORIGIN  and LENGTH  is determined by board cfg, ----------*/ 
        /*------------------ refer user guide for details -------------------------*/
        MSMC3_RSVD_DMSC             (RWIX)  : ORIGIN = 0x701F0000 LENGTH = 0x00001000
    
        /*========================== AM65xx DDR LOCATION ==========================*/
        DDR0                        (RWIX)  : ORIGIN = 0x80000000 LENGTH = 0x7FFFFFE4
    
    }
    
    /*--------------------------------------------------------------*/
    /*                     Section Configuration                    */
    /*--------------------------------------------------------------*/
    SECTIONS
    {
        .intc_text               : {} palign(8)      > VECTORS
        .freertosrstvectors      : {} palign(8)      > MCU0_ATCM_NOT_USED /*RESET_VECTORS*/
        .bootCode                : {} palign(8)      > OCMC_RAM
        .startupCode             : {} palign(8)      > OCMC_RAM
        .startupData             : {} palign(8)      > OCMC_RAM, type = NOINIT
        .text                    : {} palign(8)      > MSMC3
        GROUP {
            .text.hwi    : palign(8)
            .text.cache  : palign(8)
            .text.mpu    : palign(8)
            .text.boot   : palign(8)
        }                                            > MSMC3
        .const                   : {} palign(8)      > MSMC3
        .rodata                  : {} palign(8)      > MSMC3
        .cinit                   : {} palign(8)      > MSMC3
        .pinit                   : {} palign(8)      > MSMC3
        .bss                     : {
            *(.bss)
            *(.bss.*)
        } align(8)       > DDR0 /*DDR0*/
        .far                     : {} align(8)       > MSMC3 /*DDR0*/
        .data                    : {} palign(128)    > MSMC3
        .sysmem                  : {} align(8)       > MSMC3
        .data_buffer             : {} palign(128)    > MSMC3 /*DDR0*/
        .bss.devgroup*           : {} align(8)       > MSMC3 /*DDR0*/
        .const.devgroup*         : {} align(8)       > MSMC3 /*DDR0*/
        .boardcfg_data           : {} align(128)     > MSMC3
        .stack      : {}                            align(8)    > MSMC3 (HIGH) /*DDR0*/  
    
        .irqStack   : {. = . + __IRQ_STACK_SIZE;}   align(8)    > MSMC3 (HIGH) /*DDR0*/
        RUN_START(__IRQ_STACK_START)
        RUN_END(__IRQ_STACK_END)
    
        .fiqStack  	: {. = . + __FIQ_STACK_SIZE;}   align(8)    > MSMC3 (HIGH) /*DDR0*/
        RUN_START(__FIQ_STACK_START)
        RUN_END(__FIQ_STACK_END)
    
        .abortStack : {. = . + __ABORT_STACK_SIZE;} align(8)    > MSMC3 (HIGH) /*DDR0*/
        RUN_START(__ABORT_STACK_START)
        RUN_END(__ABORT_STACK_END)
    
        .undStack  	: {. = . + __UND_STACK_SIZE;}   align(8)    > MSMC3 (HIGH) /*DDR0*/
        RUN_START(__UND_STACK_START)
        RUN_END(__UND_STACK_END)
    
        .svcStack  	: {. = . + __SVC_STACK_SIZE;}   align(8)    > MSMC3 (HIGH) /*DDR0*/
        RUN_START(__SVC_STACK_START)
        RUN_END(__SVC_STACK_END)
    
        /* DMA packet info (metadata), packet data and UDMA ring and desc memory */
        .bss:ENET_DMA_DESC_MEMPOOL (NOLOAD) {} ALIGN (128) > DDR0
        .bss:ENET_DMA_RING_MEMPOOL (NOLOAD) {} ALIGN (128) > DDR0
        .bss:ENET_DMA_PKT_MEMPOOL  (NOLOAD) {} ALIGN (128) > DDR0
        .bss:ENET_DMA_OBJ_MEM      (NOLOAD) {} ALIGN (128) > DDR0
        .bss:ENET_DMA_PKT_INFO_MEMPOOL (NOLOAD) {} ALIGN (128) > DDR0
    
        /* for ICSSG MEM */
        .bss:ENET_ICSSG_OCMC_MEM (NOLOAD) {} ALIGN (128) > MSMC3
    
        /* Used in Switch configuration tool */
        .serialContext     (NOLOAD) {} ALIGN (128) > DDR0
    
        /* SA sections */
        .scBufs         : {} align(8)   > DDR0
        .saSrcBuffers   : {} align(8)   > DDR0
        .saDstBuffers   : {} align(8)   > DDR0
    }
    
    

    I am able to make it through all of the init and open routines! I think this is enough to close this thread for now at least