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.

PROCESSOR-SDK-J784S4: TCM performance

Part Number: PROCESSOR-SDK-J784S4

Tool/software:

Hi experts,

I am using j784s4_evm with SDK 10.

I am using main r5f cluster 0 core 0 with its BTCM memory (from local address space). 

But the performance are low ~130MB/s. 

I setup a performance test with different size which copy data from DDR to BTCM. 

/*######################################################
 *  DEFINE SECTION
 *  ----------------------------------------------------*/

#define APP_NB_TEST                     (6U)
#define APP_NB_ITERATION                (100U)
#define APP_MAX_SIZE_BYTE               (30*1024)
#define APP_WORD_SIZE                   (sizeof(uint32_t))
#define APP_MAX_SIZE_WORD               (APP_MAX_SIZE_BYTE / APP_WORD_SIZE)

#define DDR_DATA_BUFFER_ADDR      (0xAC000000)

/*######################################################
 *  STRUCTURE
 *  ----------------------------------------------------*/

typedef struct 
{
  uint32_t size;
  volatile uint64_t time;

}test_desc_t;

/*######################################################
 *  GLOBAL VARIABLES
 *  ----------------------------------------------------*/

test_desc_t test_desc[APP_NB_TEST] = 
{
    {10, 0},
    {40, 0},
    {100, 0},
    {1024, 0},
    {10*1024, 0},
    {30*1024, 0}
};

static uint32_t gSrcBuffer[APP_MAX_SIZE_WORD] __attribute__(( aligned(128), section(".ddr_data")));
static uint32_t gDstBuffer[APP_MAX_SIZE_WORD] __attribute__(( aligned(128), section(".tcmb_data")));
volatile uint64_t gStartTime = 0;


/*######################################################
 *  FUNCTIONS
 *  ----------------------------------------------------*/


/**
 * \brief   This is the Task function that test tcm performance
 *          The tast is created in main if "__TEST_TCM_ENABLE__" is defined
 *
 * \param   
 *
 * \retval  
 */
void vTaskTestTCM(void *pvParameters)
{   
    bool run = true;
    uint32_t i_test = 0;
    uint32_t i_iteration = 0;
    uint32_t i_data = 0;
    uint32_t* srcMemory = &gSrcBuffer[0];
    uint32_t* dstMemory = &gDstBuffer[0];
    float time_per_iteration = 0; 
    float speed = 0; 

    PRINT_LOG("\r\n********************************************\r\n");
    PRINT_LOG("\r\n[FreeRTOS] TCM tests ... start !!!\r\n");
    PRINT_LOG("\r\n********************************************\r\n");

    PRINT_LOG("src buffer @0x%x\n", (uint32_t) srcMemory);
    PRINT_LOG("dst buffer @0x%x\n", (uint32_t) dstMemory);

    for(i_data = 0; i_data < APP_MAX_SIZE_WORD; i_data++)
    {
        gSrcBuffer[i_data] = i_data;
    }
    CacheP_wb(gSrcBuffer, APP_MAX_SIZE_BYTE);

    for(i_test = 0; i_test < APP_NB_TEST; i_test++)
    {
        
        for(i_iteration = 0; i_iteration < APP_NB_ITERATION; i_iteration++)
        {
            memset(dstMemory, 0, APP_MAX_SIZE_BYTE);

            gStartTime = portGET_RUN_TIME_COUNTER_VALUE();
            CacheP_Inv(srcMemory, test_desc[i_test].size);
            memcpy(dstMemory, srcMemory, test_desc[i_test].size);
            CacheP_wb(dstMemory, test_desc[i_test].size);
            test_desc[i_test].time += portGET_RUN_TIME_COUNTER_VALUE() - gStartTime;
        }

        PRINT_LOG("\n ------------- \n\n");
        PRINT_LOG("Time to cpy data from DDR to BTCM: \n");
        PRINT_LOG("     data size  = %d Bytes\n", test_desc[i_test].size);
        PRINT_LOG("     total time = %llu us\n", test_desc[i_test].time);
        
        time_per_iteration = (float) test_desc[i_test].time / (float) APP_NB_ITERATION;
        speed = (float) test_desc[i_test].size / time_per_iteration;
        
        PRINT_LOG("     1 cpy     = %.2f us\n", time_per_iteration);
        PRINT_LOG("     speed     = %.2f MB/s\n", speed);
    }

    while(run)
    {
        BOARD_delay(1000000);
    }
    
    vTaskDelete( NULL );
}

This is the output: 

[FreeRTOS] TCM test is starting !!!
[FreeRTOS] creating tasks ...

********************************************

[FreeRTOS] TCM tests ... start !!!

********************************************
src buffer @0xa242b600
dst buffer @0x41010080

 -------------

Time to cpy data from DDR to BTCM:
     data size  = 10 Bytes
     total time = 66 us
     1 cpy     = 0.66 us
     speed     = 15.15 MB/s

 -------------

Time to cpy data from DDR to BTCM:
     data size  = 40 Bytes
     total time = 91 us
     1 cpy     = 0.91 us
     speed     = 43.96 MB/s

 -------------

Time to cpy data from DDR to BTCM:
     data size  = 100 Bytes
     total time = 149 us
     1 cpy     = 1.49 us
     speed     = 67.11 MB/s

 -------------

Time to cpy data from DDR to BTCM:
     data size  = 1024 Bytes
     total time = 859 us
     1 cpy     = 8.59 us
     speed     = 119.21 MB/s

 -------------

Time to cpy data from DDR to BTCM:
     data size  = 10240 Bytes
     total time = 7824 us
     1 cpy     = 78.24 us
     speed     = 130.88 MB/s

 -------------

Time to cpy data from DDR to BTCM:
     data size  = 30720 Bytes
     total time = 23495 us
     1 cpy     = 234.95 us
     speed     = 130.75 MB/s

I found in this post :

AM6442: The memcpy performance between R5 TCM is inferior to that between DDR or DDR and TCM - Processors forum - Processors - TI E2E support forums

they use address space like me and they got a better performance

Thanks for your help

Charles

  • Hi,

    I will look into this further and get back to you.

    Regards,

    Karthik

  • Hi Charles,

    Please try using a DMA transfer instead of a CPU-based transfer, which allows data transfer without CPU intervention. You can refer to the UDMA driver examples for guidance.

    https://software-dl.ti.com/jacinto7/esd/processor-sdk-rtos-j784s4/10_01_00_04/exports/docs/pdk_j784s4_10_01_00_25/docs/userguide/j784s4/family_cfg/j784s4/index_modules_udma_j784s4.html#introduction

    Regards,

    Karthik

  • Hi Karthikeyan

    The final application is a Safety app with critical latency. I want to disable the global TCM address space for everyone and use only the local address space using firewall.

    Is it possible to use DMA on TCM local address ? 

    I want to copy only few words ~100. I think the CPU will have better performance for this size.

    Thanks 

    Charles

  • Hi Charles,

    I will check this internally and get back to you.

    Regards,

    Karthik

  • Hi Charles,

    Have you performed any experiments measuring transfer performance between OCMC and BTCM? It is  faster compared to DDR to BTCM transfers? Also, could you please share your application map file for reference?

    Regards,

    Karthik

  • Hi Karthik,

    I will look for OCMC memory.

    This is the map file.

    ******************************************************************************
                TI ARM Clang Linker PC v3.2.2                      
    ******************************************************************************
    >> Linked Tue Sep 23 09:35:29 2025
    
    OUTPUT FILE NAME:   <C:/Users/t0273131/MyApp/Jacinto_SDK/ti-processor-sdk-rtos-j784s4-evm-10_01_00_04/pdk_j784s4_10_01_00_25/packages/ti/binary/test_perf_tcm/bin/j784s4/test_perf_tcm_mcu2_0_release.xer5f>
    ENTRY POINT SYMBOL: "_freertosresetvectors"  address: 00000000
    
    
    MEMORY CONFIGURATION
    
             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
      MCU_R5F_TCMA_VECS     00000000   00000040  00000040  00000000     X
      MCU_R5F_TCMA          00000040   00007fc0  00000ab0  00007510     X
      MCU4_R5F0_ATCM_RSVD   05900000   00000040  00000000  00000040  RWIX
      MCU4_R5F0_ATCM        05900040   00007fc0  00000000  00007fc0  RWIX
      MCU4_R5F0_BTCM_RSVD   05910000   00000040  00000000  00000040  RWIX
      MCU4_R5F0_BTCM        05910040   00007fc0  00000000  00007fc0  RWIX
      MCU4_R5F1_ATCM_RSVD   05a00000   00000040  00000000  00000040  RWIX
      MCU4_R5F1_ATCM        05a00040   00007fc0  00000000  00007fc0  RWIX
      MCU4_R5F1_BTCM_RSVD   05a10000   00000040  00000000  00000040  RWIX
      MCU4_R5F1_BTCM        05a10040   00007fc0  00000000  00007fc0  RWIX
      MCU2_R5F0_ATCM_RSVD   05c00000   00000040  00000000  00000040  RWIX
      MCU2_R5F0_ATCM        05c00040   00007fc0  00000000  00007fc0  RWIX
      MCU2_R5F0_BTCM_RSVD   05c10000   00000040  00000000  00000040  RWIX
      MCU2_R5F0_BTCM        05c10040   00007fc0  00000000  00007fc0  RWIX
      MCU2_R5F1_ATCM_RSVD   05d00000   00000040  00000000  00000040  RWIX
      MCU2_R5F1_ATCM        05d00040   00007fc0  00000000  00007fc0  RWIX
      MCU2_R5F1_BTCM_RSVD   05d10000   00000040  00000000  00000040  RWIX
      MCU2_R5F1_BTCM        05d10040   00007fc0  00000000  00007fc0  RWIX
      MCU3_R5F0_ATCM_RSVD   05e00000   00000040  00000000  00000040  RWIX
      MCU3_R5F0_ATCM        05e00040   00007fc0  00000000  00007fc0  RWIX
      MCU3_R5F0_BTCM_RSVD   05e10000   00000040  00000000  00000040  RWIX
      MCU3_R5F0_BTCM        05e10040   00007fc0  00000000  00007fc0  RWIX
      MCU3_R5F1_ATCM_RSVD   05f00000   00000040  00000000  00000040  RWIX
      MCU3_R5F1_ATCM        05f00040   00007fc0  00000000  00007fc0  RWIX
      MCU3_R5F1_BTCM_RSVD   05f10000   00000040  00000000  00000040  RWIX
      MCU3_R5F1_BTCM        05f10040   00007fc0  00000000  00007fc0  RWIX
      MCU1_R5F0_ATCM_RSVD   41000000   00000040  00000000  00000040  RWIX
      MCU1_R5F0_ATCM        41000040   00007fc0  00000000  00007fc0  RWIX
      MCU_R5F_TCMB_VECS     41010000   00000040  00000000  00000040     X
      MCU_R5F_TCMB          41010040   00007fc0  00007800  000007c0     X
      MCU1_R5F1_ATCM_RSVD   41400000   00000040  00000000  00000040  RWIX
      MCU1_R5F1_ATCM        41400040   00007fc0  00000000  00007fc0  RWIX
      MCU1_R5F1_BTCM_RSVD   41410000   00000040  00000000  00000040  RWIX
      MCU1_R5F1_BTCM        41410040   00007fc0  00000000  00007fc0  RWIX
      OCMC_RAM_BOARD_CFG    41c80000   00002000  00000000  00002000  RWIX
      OCMC_RAM              41c82000   0007bb00  00000000  0007bb00  RWIX
      OCMC_RAM_X509_HEADER  41cfdb00   00000500  00000000  00000500  RWIX
      MSMC3_ARM_FW          70000000   00020000  00000000  00020000  RWIX
      MSMC3                 70020000   007d0000  00000000  007d0000  RWIX
      MSMC3_DMSC_FW         707f0000   00010000  00000000  00010000  RWIX
      DDR0_RESERVED         80000000   20000000  00000000  20000000  RWIX
      MCU1_0_IPC_DATA       a0000000   00100000  00000000  00100000  RWIX
      MCU1_0_EXT_DATA       a0100000   00100000  00000000  00100000  RWIX
      MCU1_0_R5F_MEM_TEXT   a0200000   00100000  00000000  00100000  RWIX
      MCU1_0_R5F_MEM_DATA   a0300000   00100000  00000000  00100000  RWIX
      MCU1_0_DDR_SPACE      a0400000   00c00000  00000000  00c00000  RWIX
      MCU1_1_IPC_DATA       a1000000   00100000  00000000  00100000  RWIX
      MCU1_1_EXT_DATA       a1100000   00100000  00000000  00100000  RWIX
      MCU1_1_R5F_MEM_TEXT   a1200000   00100000  00000000  00100000  RWIX
      MCU1_1_R5F_MEM_DATA   a1300000   00100000  00000000  00100000  RWIX
      MCU1_1_DDR_SPACE      a1400000   00c00000  00000000  00c00000  RWIX
      MCU2_0_IPC_DATA       a2000000   00100000  00000000  00100000  RWIX
      MCU2_0_EXT_DATA       a2100000   00100000  00080044  0007ffbc  RWIX
      MCU2_0_R5F_MEM_TEXT   a2200000   00100000  00000000  00100000  RWIX
      MCU2_0_R5F_MEM_DATA   a2300000   00100000  00000000  00100000  RWIX
      MCU2_0_DDR_SPACE      a2400000   00c00000  0003f158  00bc0ea8  RWIX
      MCU2_1_IPC_DATA       a3000000   00100000  00000000  00100000  RWIX
      MCU2_1_EXT_DATA       a3100000   00100000  00000000  00100000  RWIX
      MCU2_1_R5F_MEM_TEXT   a3200000   00100000  00000000  00100000  RWIX
      MCU2_1_R5F_MEM_DATA   a3300000   00100000  00000000  00100000  RWIX
      MCU2_1_DDR_SPACE      a3400000   00c00000  00000000  00c00000  RWIX
      MCU3_0_IPC_DATA       a4000000   00100000  00000000  00100000  RWIX
      MCU3_0_EXT_DATA       a4100000   00100000  00000000  00100000  RWIX
      MCU3_0_R5F_MEM_TEXT   a4200000   00100000  00000000  00100000  RWIX
      MCU3_0_R5F_MEM_DATA   a4300000   00100000  00000000  00100000  RWIX
      MCU3_0_DDR_SPACE      a4400000   00c00000  00000000  00c00000  RWIX
      MCU3_1_IPC_DATA       a5000000   00100000  00000000  00100000  RWIX
      MCU3_1_EXT_DATA       a5100000   00100000  00000000  00100000  RWIX
      MCU3_1_R5F_MEM_TEXT   a5200000   00100000  00000000  00100000  RWIX
      MCU3_1_R5F_MEM_DATA   a5300000   00100000  00000000  00100000  RWIX
      MCU3_1_DDR_SPACE      a5400000   00c00000  00000000  00c00000  RWIX
      MCU4_0_IPC_DATA       a6000000   00100000  00000000  00100000  RWIX
      MCU4_0_EXT_DATA       a6100000   00100000  00000000  00100000  RWIX
      MCU4_0_R5F_MEM_TEXT   a6200000   00100000  00000000  00100000  RWIX
      MCU4_0_R5F_MEM_DATA   a6300000   00100000  00000000  00100000  RWIX
      MCU4_0_DDR_SPACE      a6400000   00c00000  00000000  00c00000  RWIX
      MCU4_1_IPC_DATA       a7000000   00100000  00000000  00100000  RWIX
      MCU4_1_EXT_DATA       a7100000   00100000  00000000  00100000  RWIX
      MCU4_1_R5F_MEM_TEXT   a7200000   00100000  00000000  00100000  RWIX
      MCU4_1_R5F_MEM_DATA   a7300000   00100000  00000000  00100000  RWIX
      MCU4_1_DDR_SPACE      a7400000   00c00000  00000000  00c00000  RWIX
      C7X_1_IPC_D           a8000000   00100000  00000000  00100000  RWIX
      C7X_1_EXT_D           a8100000   00100000  00000000  00100000  RWIX
      C7X_1_TEXT            a8200000   00100000  00000000  00100000  RWIX
      C7X_1_DATA            a8300000   00100000  00000000  00100000  RWIX
      C7X_1_DDR_SPACE       a8400000   00c00000  00000000  00c00000  RWIX
      C7X_2_IPC_D           a9000000   00100000  00000000  00100000  RWIX
      C7X_2_EXT_D           a9100000   00100000  00000000  00100000  RWIX
      C7X_2_TEXT            a9200000   00100000  00000000  00100000  RWIX
      C7X_2_DATA            a9300000   00100000  00000000  00100000  RWIX
      C7X_2_DDR_SPACE       a9400000   00c00000  00000000  00c00000  RWIX
      C7X_3_IPC_D           aa000000   00100000  00000000  00100000  RWIX
      C7X_3_EXT_D           aa100000   00100000  00000000  00100000  RWIX
      C7X_3_TEXT            aa200000   00100000  00000000  00100000  RWIX
      C7X_3_DATA            aa300000   00100000  00000000  00100000  RWIX
      C7X_3_DDR_SPACE       aa400000   00c00000  00000000  00c00000  RWIX
      C7X_4_IPC_D           ab000000   00100000  00000000  00100000  RWIX
      C7X_4_EXT_D           ab100000   00100000  00000000  00100000  RWIX
      C7X_4_TEXT            ab200000   00100000  00000000  00100000  RWIX
      C7X_4_DATA            ab300000   00100000  00000000  00100000  RWIX
      C7X_4_DDR_SPACE       ab400000   00c00000  00000000  00c00000  RWIX
      SHARED_DDR_SPACE      ac000000   03000000  00000000  03000000  RWIX
    
    
    SEGMENT ALLOCATION MAP
    
    run origin  load origin   length   init length attrs members
    ----------  ----------- ---------- ----------- ----- -------
    00000000    00000000    00000af0   00000af0    r-x
      00000000    00000000    00000040   00000040    r-x .freertosrstvectors
      00000040    00000040    00000578   00000578    r-x .text.hwi
      000005b8    000005b8    000003c0   000003c0    r-x .startupCode
      00000978    00000978    00000120   00000120    r-x .bootCode
      00000a98    00000a98    00000058   00000058    r-- .startupData
    41010080    41010080    00007800   00000000    rw-
      41010080    41010080    00007800   00000000    rw- .tcmb_data
    a2100000    a2100000    00000044   00000044    r--
      a2100000    a2100000    00000044   00000044    r-- .resource_table
    a2100400    a2100400    00080000   00000000    rw-
      a2100400    a2100400    00080000   00000000    rw- .tracebuf
    a2400000    a2400000    0001aae0   00000000    rw-
      a2400000    a2400000    0001aae0   00000000    rw- .bss
    a241aae0    a241aae0    00008ae0   00008ae0    r-x
      a241aae0    a241aae0    00008ae0   00008ae0    r-x .text
    a24235c0    a24235c0    00008000   00000000    rw-
      a24235c0    a24235c0    00008000   00000000    rw- .sysmem
    a242b600    a242b600    00007800   00000000    rw-
      a242b600    a242b600    00007800   00000000    rw- .ddr_data
    a2432e00    a2432e00    00003fc0   00003fc0    r--
      a2432e00    a2432e00    00003fc0   00003fc0    r-- .rodata
    a2436e00    a2436e00    00002d80   00000000    rw-
      a2436e00    a2436e00    00002d80   00000000    rw- .data
    a2439b80    a2439b80    00000258   00000258    r--
      a2439b80    a2439b80    00000258   00000258    r-- .cinit
    a2ffac00    a2ffac00    00001400   00000000    r--
      a2ffac00    a2ffac00    00000100   00000000    r-- .undStack
      a2ffad00    a2ffad00    00000100   00000000    r-- .svcStack
      a2ffae00    a2ffae00    00001000   00000000    r-- .irqStack
      a2ffbe00    a2ffbe00    00000100   00000000    r-- .fiqStack
      a2ffbf00    a2ffbf00    00000100   00000000    r-- .abortStack
    a2ffc000    a2ffc000    00004000   00000000    rw-
      a2ffc000    a2ffc000    00004000   00000000    rw- .stack
    
    
    SECTION ALLOCATION MAP
    
     output                                  attributes/
    section   page    origin      length       input sections
    --------  ----  ----------  ----------   ----------------
    .freertosrstvectors 
    *          0    00000000    00000040     
                      00000000    00000040     ti.kernel.freertos.aer5f : port_Hwi_handlers_asm.oer5f (.freertosrstvectors)
    
    .text.hwi 
    *          0    00000040    00000578     
                      00000040    00000370     ti.kernel.freertos.aer5f : portASM.oer5f (.text.hwi)
                      000003b0    000001cc                              : port_Hwi_r5f.oer5f (.text.hwi)
                      0000057c    00000008                              : port_r5f.oer5f (.tramp.vPortDumpExceptionState.1)
                      00000584    00000008     ti.csl.aer5f : csl_arm_r5.oer5f (.tramp.CSL_armR5IntrEnableFiq.1)
                      0000058c    00000008                  : csl_vim.oer5f (.tramp.CSL_vimGetFiqVectorAddress.1)
                      00000594    00000008                  : csl_vim.oer5f (.tramp.CSL_vimAckIntr.1)
                      0000059c    00000008                  : csl_vim.oer5f (.tramp.CSL_vimClrIntrPending.1)
                      000005a4    00000008                  : csl_vim.oer5f (.tramp.CSL_vimGetIntrType.1)
                      000005ac    00000008                  : csl_vim.oer5f (.tramp.CSL_vimGetActivePendingIntr.1)
                      000005b4    00000004     --HOLE-- [fill = 00000000]
    
    .startupCode 
    *          0    000005b8    000003c0     
                      000005b8    00000242     ti.csl.init.aer5f : startup.oer5f (.startupCode)
                      000007fa    0000017a                       : r5_startup.oer5f (.startupCode)
                      00000974    00000004     --HOLE-- [fill = 00000000]
    
    .text.cache 
    *          0    000005b8    00000000     UNINITIALIZED
    
    .text.mpu 
    *          0    000005b8    00000000     UNINITIALIZED
    
    .text.boot 
    *          0    000005b8    00000000     UNINITIALIZED
    
    .bootCode 
    *          0    00000978    00000120     
                      00000978    000000fc     ti.csl.init.aer5f : boot.oer5f (.bootCode)
                      00000a74    00000008     libc.a : exit.c.obj (.tramp.abort.1)
                      00000a7c    00000008            : args_main.c.obj (.tramp._args_main.1)
                      00000a84    00000008            : autoinit.c.obj (.tramp.__TI_auto_init_nobinit_nopinit.1)
                      00000a8c    00000008     ti.kernel.freertos.aer5f : port_r5f.oer5f (.tramp._system_pre_init.1)
                      00000a94    00000004     --HOLE-- [fill = 00000000]
    
    .startupData 
    *          0    00000a98    00000058     
                      00000a98    00000054     ti.csl.init.aer5f : startup.oer5f (.startupData)
                      00000aec    00000004     --HOLE-- [fill = 00000000]
    
    .tcmb_data 
    *          0    41010080    00007800     UNINITIALIZED
                      41010080    00007800     r5f_test_perf_tcm.oer5f (.tcmb_data)
    
    .bss       0    a2400000    0001aae0     UNINITIALIZED
                      a2400000    00010000     ti.kernel.freertos.aer5f : heap_4.oer5f (.bss.ucHeap)
                      a2410000    00007bc0     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.bss.gOsalSemPfreertosPool)
                      a2417bc0    00001000     ti.kernel.freertos.aer5f : port_r5f.oer5f (.bss.vApplicationGetIdleTaskMemory.uxIdleTaskStack)
                      a2418bc0    00000f18     ti.osal.aer5f : LoadP_freertos.oer5f (.bss.gLoadP_freertos)
                      a2419ad8    00000460     (.common:gIpcObject)
                      a2419f38    00000400     ti.kernel.freertos.aer5f : port_r5f.oer5f (.bss.vApplicationGetTimerTaskMemory.uxTimerTaskStack)
                      a241a338    00000140     ti.osal.aer5f : Arch_util_r5.oer5f (.bss.hwiStructs)
                      a241a478    00000140     ti.kernel.freertos.aer5f : tasks.oer5f (.bss.pxReadyTasksLists)
                      a241a5b8    00000100                              : timers.oer5f (.bss.prvCheckForValidListAndQueue.ucStaticTimerQueueStorage)
                      a241a6b8    00000100     (.common:xQueueRegistry)
                      a241a7b8    00000098                              : port_r5f.oer5f (.bss.vApplicationGetIdleTaskMemory.xIdleTaskTCB)
                      a241a850    00000098                              : port_r5f.oer5f (.bss.vApplicationGetTimerTaskMemory.xTimerTaskTCB)
                      a241a8e8    00000050                              : timers.oer5f (.bss.prvCheckForValidListAndQueue.xStaticTimerQueue)
                      a241a938    00000050     (.common:gRovDummyQueue)
                      a241a988    00000034     (.common:FaultyGPR)
                      a241a9bc    00000004     sciclient.aer5f : sciclient.oer5f (.bss.gSciclient_maxMsgSizeBytes)
                      a241a9c0    00000028                     : sciclient_rm_irq.oer5f (.bss.gPstack)
                      a241a9e8    00000014     ti.kernel.freertos.aer5f : timers.oer5f (.bss.xActiveTimerList1)
                      a241a9fc    00000014                              : timers.oer5f (.bss.xActiveTimerList2)
                      a241aa10    00000014                              : tasks.oer5f (.bss.xDelayedTaskList1)
                      a241aa24    00000014                              : tasks.oer5f (.bss.xDelayedTaskList2)
                      a241aa38    00000014                              : tasks.oer5f (.bss.xPendingReadyList)
                      a241aa4c    00000014                              : tasks.oer5f (.bss.xSuspendedTaskList)
                      a241aa60    00000014                              : tasks.oer5f (.bss.xTasksWaitingTermination)
                      a241aa74    00000010     rproc.oer5f (.bss.mpuRx)
                      a241aa84    00000010     rproc.oer5f (.bss.mpuTx)
                      a241aa94    00000004     sciclient.aer5f : sciclient.oer5f (.bss.gSciclient_secHeader)
                      a241aa98    00000010     (.common:gTimerCntrl)
                      a241aaa8    00000008     ti.kernel.freertos.aer5f : port_r5f.oer5f (.bss.ullPortLastTickPmuTs)
                      a241aab0    00000008                              : heap_4.oer5f (.bss.xStart)
                      a241aab8    00000004     ti.osal.aer5f : TimerP_nonos.oer5f (.bss.gTimerAnyMask)
                      a241aabc    00000004                   : Arch_util_r5.oer5f (.bss.gVimRegs)
                      a241aac0    00000004     ti.kernel.freertos.aer5f : timers.oer5f (.bss.pxCurrentTimerList)
                      a241aac4    00000004                              : tasks.oer5f (.bss.pxDelayedTaskList)
                      a241aac8    00000004                              : tasks.oer5f (.bss.pxOverflowDelayedTaskList)
                      a241aacc    00000004                              : timers.oer5f (.bss.pxOverflowTimerList)
                      a241aad0    00000004     (.common:FaultyLR)
                      a241aad4    00000004     (.common:FaultySP)
                      a241aad8    00000004     (.common:gVimBaseAddr)
                      a241aadc    00000004     (.common:shutdownSem)
    
    .text      0    a241aae0    00008ae0     
                      a241aae0    00000fe4     libc.a : _printfi.c.obj (.text:__TI_printfi)
                      a241bac4    00000660     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqFindRoute)
                      a241c124    00000480     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_create)
                      a241c5a4    00000350     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_serviceSecureProxy)
                      a241c8f4    000002dc                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqGetRoute)
                      a241cbd0    000002a0     ti.csl.aer5f : csl_arm_r5.oer5f (.text)
                      a241ce70    00000280     libc.a : _printfi.c.obj (.text._pconv_a)
                      a241d0f0    00000240     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmProgramInterruptRoute)
                      a241d330    00000238     libc.a : _printfi.c.obj (.text._pconv_g)
                      a241d568    000001d2     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmClearInterruptRoute)
                      a241d73a    00000002     ti.osal.aer5f : DebugP_nonos.oer5f (.text.DebugP_log1)
                      a241d73c    000001d0     libclang_rt.builtins.a : udivsi3.S.obj (.text.__udivsi3)
                      a241d90c    000001a8     ti.kernel.freertos.aer5f : tasks.oer5f (.text.xTaskIncrementTick)
                      a241dab4    00000184                              : timers.oer5f (.text.prvTimerTask)
                      a241dc38    00000182     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_init)
                      a241ddba    00000002     ti.osal.aer5f : TimerP_default.oer5f (.text.TimerP_mapId)
                      a241ddbc    00000180     libc.a : memcpy32.S.obj (.text:memcpy)
                      a241df3c    0000017c     r5f_test_perf_tcm.oer5f (.text.vTaskTestTCM)
                      a241e0b8    00000178     ti.kernel.freertos.aer5f : tasks.oer5f (.text.xTaskResumeAll)
                      a241e230    00000174                              : queue.oer5f (.text.xQueueSemaphoreTake)
                      a241e3a4    00000172                              : queue.oer5f (.text.xQueueGenericSend)
                      a241e516    0000016a                              : heap_4.oer5f (.text.pvPortMalloc)
                      a241e680    0000015c                              : queue.oer5f (.text.xQueueReceive)
                      a241e7dc    00000158     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqDeleteRoute)
                      a241e934    00000156     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.text.SemaphoreP_create)
                      a241ea8a    00000006                   : CacheP_nonos_r5.oer5f (.text.CacheP_Inv)
                      a241ea90    00000150     libc.a : s_scalbn.c.obj (.text.scalbn)
                      a241ebe0    00000148     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqProgramRoute)
                      a241ed28    00000148     libc.a : _printfi.c.obj (.text.fcvt)
                      a241ee70    00000140            : _printfi.c.obj (.text._pconv_e)
                      a241efb0    0000013c     ti.osal.aer5f : Arch_util_r5.oer5f (.text.OsalArch_HwiPCreate)
                      a241f0ec    00000126     ti.kernel.freertos.aer5f : tasks.oer5f (.text.prvAddNewTaskToReadyList)
                      a241f212    00000126                              : tasks.oer5f (.text.vTaskSwitchContext)
                      a241f338    00000118     libclang_rt.builtins.a : udivmoddi4.S.obj (.text)
                      a241f450    0000010e     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.getRunTimeCounterValue)
                      a241f55e    0000010c     rproc.oer5f (.text.rprocInit)
                      a241f66a    00000106     ti.csl.aer5f : csl_arm_r5_pmu.oer5f (.text)
                      a241f770    00000100     ti.kernel.freertos.aer5f : tasks.oer5f (.text.xTaskRemoveFromEventList)
                      a241f870    000000ea     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_dmTimerSetMicroSeconds)
                      a241f95a    000000e0     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.vPortDumpExceptionState)
                      a241fa3a    000000d6     main.oer5f (.text.main)
                      a241fb10    000000d6     ti.kernel.freertos.aer5f : queue.oer5f (.text.xQueueReceiveFromISR)
                      a241fbe6    000000d2     ti.osal.aer5f : LoadP_freertos.oer5f (.text.LoadP_update)
                      a241fcb8    000000d0     ti.kernel.freertos.aer5f : tasks.oer5f (.text.vTaskPriorityDisinheritAfterTimeout)
                      a241fd88    000000ce                              : queue.oer5f (.text.xQueueGiveFromISR)
                      a241fe56    000000cc     ipc.aer5f : ipc_soc.oer5f (.text.Ipc_setCoreEventId)
                      a241ff22    000000cc     ti.kernel.freertos.aer5f : tasks.oer5f (.text.xTaskPriorityDisinherit)
                      a241ffee    000000c6     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIaValidateMapping)
                      a24200b4    000000c6     rproc.oer5f (.text.mbIrq)
                      a242017a    000000c4     ti.kernel.freertos.aer5f : tasks.oer5f (.text.xTaskPriorityInherit)
                      a242023e    000000be     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_start)
                      a24202fc    000000bc     libc.a : _printfi.c.obj (.text._mcpy)
                      a24203b8    000000b8     ti.kernel.freertos.aer5f : tasks.oer5f (.text.prvAddCurrentTaskToDelayedList)
                      a2420470    000000b4     libc.a : copy_decompress_lzss.c.obj (.text:decompress:lzss)
                      a2420524    000000b2     ti.kernel.freertos.aer5f : tasks.oer5f (.text.prvInitialiseNewTask)
                      a24205d6    000000ae     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_servicePrepareHeader)
                      a2420684    000000a8     ti.kernel.freertos.aer5f : tasks.oer5f (.text.vTaskStartScheduler)
                      a242072c    000000a0     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrInpIsFree)
                      a24207cc    000000a0     ti.csl.aer5f : timer.oer5f (.text.TIMERModeConfigure)
                      a242086c    000000a0     libc.a : memset32.S.obj (.text:memset)
                      a242090c    0000009e     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_serviceGetThreadIds)
                      a24209aa    00000096     ti.kernel.freertos.aer5f : port_Hwi_r5f.oer5f (.text.Intc_IntRegister)
                      a2420a40    00000096                              : port_r5f.oer5f (.text.pxPortInitialiseStack)
                      a2420ad6    00000096                              : tasks.oer5f (.text.vTaskGetInfo)
                      a2420b6c    00000096                              : queue.oer5f (.text.xQueueGenericReset)
                      a2420c02    00000096                              : tasks.oer5f (.text.xTaskCreateStatic)
                      a2420c98    00000094     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_ISR)
                      a2420d2c    00000092     ti.kernel.freertos.aer5f : tasks.oer5f (.text.eTaskGetState)
                      a2420dbe    00000092                              : queue.oer5f (.text.xQueueGenericCreateStatic)
                      a2420e50    00000090     ti.csl.aer5f : csl_vim.oer5f (.text.CSL_vimCfgIntr)
                      a2420ee0    0000008a     ti.kernel.freertos.aer5f : tasks.oer5f (.text.xTaskCheckForTimeOut)
                      a2420f6a    00000088     ipc.aer5f : ipc_soc.oer5f (.text.Ipc_getIntNumRange)
                      a2420ff2    00000002     ti.osal.aer5f : StartuphooksP_freertos.oer5f (.text.extended_system_post_cinit)
                      a2420ff4    00000088     libc.a : _ltoa.c.obj (.text.__TI_ltoa)
                      a242107c    00000088            : _printfi.c.obj (.text._ecpy)
                      a2421104    00000084     sciclient.aer5f : sciclient_secureproxy.oer5f (.text.Sciclient_sendMessage)
                      a2421188    00000082                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmTranslateIntOutput)
                      a242120a    00000082     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.xPortStartScheduler)
                      a242128c    00000080     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrOutpIsFree)
                      a242130c    00000080     libc.a : _printfi.c.obj (.text._pconv_f)
                      a242138c    00000080     ti.kernel.freertos.aer5f : queue.oer5f (.text.prvCopyDataToQueue)
                      a242140c    0000007e                              : heap_4.oer5f (.text.vPortFree)
                      a242148a    00000006     ti.osal.aer5f : CacheP_nonos_r5.oer5f (.text.CacheP_wb)
                      a2421490    0000007c     libc.a : s_frexp.c.obj (.text.frexp)
                      a242150c    0000007a     ti.kernel.freertos.aer5f : timers.oer5f (.text.prvCheckForValidListAndQueue)
                      a2421586    00000074     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqGetNode)
                      a24215fa    00000072     ti.kernel.freertos.aer5f : queue.oer5f (.text.prvUnlockQueue)
                      a242166c    00000072                              : timers.oer5f (.text.xTimerCreateTimerTask)
                      a24216de    00000070     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_stop)
                      a242174e    0000006c     sciclient.aer5f : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqCfgIsEventToVintMappingOnly)
                      a24217ba    00000002     ti.osal.aer5f : StartuphooksP_freertos.oer5f (.text.extended_system_pre_init)
                      a24217bc    0000006c     libc.a : atoi.c.obj (.text.atoi)
                      a2421828    00000064            : vsnprintf.c.obj (.text.vsnprintf)
                      a242188c    00000062     rproc.oer5f (.text.tracePrintf)
                      a24218ee    00000062     ti.kernel.freertos.aer5f : tasks.oer5f (.text.vTaskPlaceOnEventListRestricted)
                      a2421950    00000062                              : queue.oer5f (.text.xQueueGenericCreate)
                      a24219b2    00000002                              : port_r5f.oer5f (.text.vPortValidateInterruptPriority)
                      a24219b4    00000060     libc.a : _printfi.c.obj (.text._fcpy)
                      a2421a14    0000005c     ti.osal.aer5f : RegisterIntr_nonos.oer5f (.text.Osal_RegisterInterrupt)
                      a2421a70    0000005c     ipc.aer5f : ipc_utils.oer5f (.text.SystemP_printf)
                      a2421acc    0000005a               : ipc_soc.oer5f (.text.Ipc_sciclientIrqSet)
                      a2421b26    0000005a     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_deinit)
                      a2421b80    0000005a                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmPsPop)
                      a2421bda    0000005a     ti.kernel.freertos.aer5f : tasks.oer5f (.text.prvIdleTask)
                      a2421c34    0000005a                              : tasks.oer5f (.text.xTaskCreate)
                      a2421c8e    00000058     ti.csl.aer5f : interrupt.oer5f (.text.Intc_Init)
                      a2421ce6    00000002     --HOLE-- [fill = 00000000]
                      a2421ce8    00000058     libc.a : vsnprintf.c.obj (.text._outs)
                      a2421d40    00000058     ti.kernel.freertos.aer5f : queue.oer5f (.text.vQueueAddToRegistry)
                      a2421d98    00000058     libc.a : autoinit.c.obj (.text:__TI_auto_init_nobinit_nopinit)
                      a2421df0    00000056     ti.kernel.freertos.aer5f : port_Hwi_r5f.oer5f (.text.Intc_IntUnregister)
                      a2421e46    00000002     --HOLE-- [fill = 00000000]
                      a2421e48    00000056     ti.osal.aer5f : Core_utils.oer5f (.text.Osal_getCoreId)
                      a2421e9e    00000056     main.oer5f (.text.vTaskShutDown)
                      a2421ef4    00000054     ipc.aer5f : ipc_soc.oer5f (.text.Ipc_sciclientIrqRelease)
                      a2421f48    00000054     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.text.SemaphoreP_pend)
                      a2421f9c    00000054     libclang_rt.builtins.a : floatundisf.S.obj (.text.__floatundisf)
                      a2421ff0    00000054     ti.kernel.freertos.aer5f : timers.oer5f (.text.prvSampleTimeNow)
                      a2422044    00000052     sciclient.aer5f : sciclient_rm.oer5f (.text.Sciclient_rmGetResourceRange)
                      a2422096    00000052     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_dmTimerStub)
                      a24220e8    00000052     ti.kernel.freertos.aer5f : heap_4.oer5f (.text.prvInsertBlockIntoFreeList)
                      a242213a    0000004e     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_abiCheck)
                      a2422188    0000004e                     : sciclient_rm_irq.oer5f (.text.Sciclient_rmIrqUnmappedVintRouteDelete)
                      a24221d6    0000004c                     : sciclient_secureproxy.oer5f (.text.Sciclient_flush)
                      a2422222    0000004c                     : sciclient_osal.oer5f (.text.Sciclient_osalAcquireSecureProxyAcess)
                      a242226e    0000004c     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.prvPorttimerTickIsr)
                      a24222ba    0000004a     ipc.aer5f : ipc_mailbox.oer5f (.text.Mailbox_plugInterrupt)
                      a2422304    00000048               : ipc_soc.oer5f (.text.Ipc_getMailboxInfoRx)
                      a242234c    00000048               : ipc_soc.oer5f (.text.Ipc_getMailboxInfoTx)
                      a2422394    00000048     sciclient.aer5f : sciclient_rm.oer5f (.text.Sciclient_rmIrqReleaseRaw)
                      a24223dc    00000048                     : sciclient_rm.oer5f (.text.Sciclient_rmIrqSetRaw)
                      a2422424    00000048     ti.csl.aer5f : timer.oer5f (.text.TIMERDisable)
                      a242246c    00000048                  : timer.oer5f (.text.TIMEREnable)
                      a24224b4    00000048     libc.a : memccpy.c.obj (.text.memccpy)
                      a24224fc    00000046     ti.kernel.freertos.aer5f : queue.oer5f (.text.vQueueWaitForMessageRestricted)
                      a2422542    00000044     ti.osal.aer5f : TimerP_default.oer5f (.text.TimerP_updateDefaultInfoTbl)
                      a2422586    00000044     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.uxPortReadPmuCounter)
                      a24225ca    00000044                              : tasks.oer5f (.text.vTaskDelay)
                      a242260e    00000042     ti.csl.aer5f : timer.oer5f (.text.TIMERCompareSet)
                      a2422650    00000042                  : timer.oer5f (.text.TIMERCounterSet)
                      a2422692    00000042                  : timer.oer5f (.text.TIMERReloadSet)
                      a24226d4    00000042     ti.kernel.freertos.aer5f : queue.oer5f (.text.xQueueCreateCountingSemaphoreStatic)
                      a2422716    00000040     ti.csl.aer5f : csl_cache.oer5f (.text.CSL_armR5CacheInv)
                      a2422756    00000040     ti.kernel.freertos.aer5f : timers.oer5f (.text.prvInsertTimerInActiveList)
                      a2422796    00000040                              : timers.oer5f (.text.prvProcessExpiredTimer)
                      a24227d6    00000040                              : port_r5f.oer5f (.text.vPortEnterCritical)
                      a2422816    00000040                              : queue.oer5f (.text.vQueueUnregisterQueue)
                      a2422856    00000002     --HOLE-- [fill = 00000000]
                      a2422858    00000040     ti.osal.aer5f : freertos_utils_r5f.oer5f (.text)
                      a2422898    0000003e                   : SemaphoreP_freertos.oer5f (.text.SemaphoreP_post)
                      a24228d6    0000003e     ti.csl.aer5f : timer.oer5f (.text.TIMERReset)
                      a2422914    0000003c                  : csl_cache.oer5f (.text.CSL_armR5CacheWb)
                      a2422950    0000003c     ti.kernel.freertos.aer5f : tasks.oer5f (.text.vTaskPlaceOnEventList)
                      a242298c    0000003a     ti.osal.aer5f : TimerP_nonos.oer5f (.text.TimerP_Params_init)
                      a24229c6    0000003a     ti.kernel.freertos.aer5f : tasks.oer5f (.text.prvDeleteTCB)
                      a2422a00    0000003a                              : list.oer5f (.text.vListInsert)
                      a2422a3a    00000038     ti.csl.aer5f : csl_vim.oer5f (.text.CSL_vimSetIntrEnable)
                      a2422a72    00000038     ipc.aer5f : ipc_soc.oer5f (.text.Ipc_getMailboxIntrRouterCfg)
                      a2422aaa    00000036     ti.csl.aer5f : csl_vim.oer5f (.text.CSL_vimGetActivePendingIntr)
                      a2422ae0    00000036     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_getCurrentContext)
                      a2422b16    00000036     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.text.SemaphoreP_delete)
                      a2422b4c    00000036     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.vPortExitCritical)
                      a2422b82    00000034     ti.osal.aer5f : LoadP_freertos.oer5f (.text.vApplicationLoadHook)
                      a2422bb6    00000032     ti.kernel.freertos.aer5f : queue.oer5f (.text.vQueueDelete)
                      a2422be8    00000030     libc.a : vsnprintf.c.obj (.text._outc)
                      a2422c18    00000030     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.vPortConfigTimerForRunTimeStats)
                      a2422c48    0000002c     ti.osal.aer5f : HwiP_freertos.oer5f (.text.HwiP_create)
                      a2422c74    0000002c                   : Arch_util_r5.oer5f (.text.OsalArch_HwiPDelete)
                      a2422ca0    0000002c                   : TaskP_freertos.oer5f (.text.TaskP_getFreertosHandle)
                      a2422ccc    00000004                   : HwiP_freertos.oer5f (.text.HwiP_clearInterrupt)
                      a2422cd0    0000002c     libclang_rt.builtins.a : divsi3.S.obj (.text.__divsi3)
                      a2422cfc    0000002c     ti.kernel.freertos.aer5f : timers.oer5f (.text.prvReloadTimer)
                      a2422d28    0000002a     ti.csl.aer5f : interrupt.oer5f (.text.Intc_IntClrPend)
                      a2422d52    00000028                  : csl_vim.oer5f (.text.CSL_vimClrIntrPending)
                      a2422d7a    00000028     ti.osal.aer5f : Utils_freertos.oer5f (.text.Osal_getThreadType)
                      a2422da2    00000028     sciclient.aer5f : sciclient_secureproxy.oer5f (.text.Sciclient_waitThread)
                      a2422dca    00000002     --HOLE-- [fill = 00000000]
                      a2422dcc    00000028     libc.a : _printfi.c.obj (.text.strchr)
                      a2422df4    00000028     ti.kernel.freertos.aer5f : queue.oer5f (.text.uxQueueMessagesWaiting)
                      a2422e1c    00000026     ti.board.aer5f : board_utils.oer5f (.text.BOARD_delay)
                      a2422e42    00000026     ti.csl.aer5f : csl_vim.oer5f (.text.CSL_vimGetIntrType)
                      a2422e68    00000026     ti.osal.aer5f : HwiP_freertos.oer5f (.text.HwiP_restore)
                      a2422e8e    00000026                   : SemaphoreP_freertos.oer5f (.text.SemaphoreP_constructCounting)
                      a2422eb4    00000026     ti.kernel.freertos.aer5f : list.oer5f (.text.uxListRemove)
                      a2422eda    00000024     ti.osal.aer5f : HwiP_freertos.oer5f (.text.HwiP_delete)
                      a2422efe    00000024                   : RegisterIntr_nonos.oer5f (.text.Osal_RegisterInterrupt_initParams)
                      a2422f22    00000002     --HOLE-- [fill = 00000000]
                      a2422f24    00000024     libclang_rt.builtins.a : aeabi_uldivmod.S.obj (.text.__aeabi_uldivmod)
                      a2422f48    00000024     libc.a : args_main.c.obj (.text._args_main)
                      a2422f6c    00000024     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.vApplicationStackOverflowHook)
                      a2422f90    00000024                              : tasks.oer5f (.text.xTaskGetSchedulerState)
                      a2422fb4    00000022     ti.osal.aer5f : HwiP_freertos.oer5f (.text.HwiP_disable)
                      a2422fd6    00000022     ti.csl.aer5f : interrupt.oer5f (.text.Intc_IntPrioritySet)
                      a2422ff8    00000022     sciclient.aer5f : sciclient_secureproxy.oer5f (.text.Sciclient_readThread32)
                      a242301a    00000020                     : sciclient_osal.oer5f (.text.Sciclient_osalReleaseSecureProxyAcess)
                      a242303a    00000020     ti.csl.aer5f : timer.oer5f (.text.TIMERPostedModeConfig)
                      a242305a    00000002     --HOLE-- [fill = 00000000]
                      a242305c    00000020     libc.a : wcslen.c.obj (.text.wcslen)
                      a242307c    0000001e     ti.csl.aer5f : csl_vim.oer5f (.text.CSL_vimAckIntr)
                      a242309a    0000001e                  : timer.oer5f (.text.TIMERReadModeConfig)
                      a24230b8    0000001e     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.vApplicationGetIdleTaskMemory)
                      a24230d6    0000001e                              : port_r5f.oer5f (.text.vApplicationGetTimerTaskMemory)
                      a24230f4    0000001c     ti.csl.aer5f : interrupt.oer5f (.text.Intc_IntDisable)
                      a2423110    0000001c                  : interrupt.oer5f (.text.Intc_IntEnable)
                      a242312c    0000001c     ti.osal.aer5f : Utils_freertos.oer5f (.text.Osal_delay)
                      a2423148    0000001c     libc.a : _printfi.c.obj (.text.strlen)
                      a2423164    0000001a     sciclient.aer5f : sciclient.oer5f (.text.Sciclient_configPrmsInit)
                      a242317e    0000001a     ti.csl.aer5f : timer.oer5f (.text.TIMERIntDisable)
                      a2423198    0000001a                  : timer.oer5f (.text.TIMERIntEnable)
                      a24231b2    0000001a                  : timer.oer5f (.text.TIMERIntStatusClear)
                      a24231cc    0000001a     ti.kernel.freertos.aer5f : tasks.oer5f (.text.vTaskInternalSetTimeOutState)
                      a24231e6    00000018     ti.csl.aer5f : csl_r5.oer5f (.text.CSL_armR5GetCpuID)
                      a24231fe    00000018     ti.osal.aer5f : HwiP_freertos.oer5f (.text.HwiP_Params_init)
                      a2423216    00000018     ti.csl.aer5f : interrupt.oer5f (.text.Intc_IntSetSrcType)
                      a242322e    00000018     sciclient.aer5f : sciclient_secureproxy.oer5f (.text.Sciclient_readThreadCount)
                      a2423246    00000018                     : sciclient_secureproxy.oer5f (.text.Sciclient_verifyThread)
                      a242325e    00000018     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text._system_post_cinit)
                      a2423276    00000018                              : tasks.oer5f (.text.pvTaskIncrementMutexHeldCount)
                      a242328e    00000018                              : tasks.oer5f (.text.xTaskGetTickCount)
                      a24232a6    00000002     --HOLE-- [fill = 00000000]
                      a24232a8    00000018     libc.a : copy_zero_init.c.obj (.text:decompress:ZI)
                      a24232c0    00000016     ti.kernel.freertos.aer5f : port_Hwi_r5f.oer5f (.text.IntDefaultHandler)
                      a24232d6    00000016     ipc.aer5f : ipc_soc.oer5f (.text.Ipc_getMailboxBaseAddr)
                      a24232ec    00000016               : mailbox.oer5f (.text.Mailbox_getMessage)
                      a2423302    00000016     sciclient.aer5f : sciclient_rm.oer5f (.text.Sciclient_rmIrqRelease)
                      a2423318    00000016     ti.kernel.freertos.aer5f : list.oer5f (.text.vListInitialise)
                      a242332e    00000014     ipc.aer5f : mailbox.oer5f (.text.Mailbox_getRawNewMsgStatus)
                      a2423342    00000014               : mailbox.oer5f (.text.Mailbox_sendMessage)
                      a2423356    00000014     ti.osal.aer5f : Arch_util_r5.oer5f (.text.Osal_isInAbortContext)
                      a242336a    00000002     --HOLE-- [fill = 00000000]
                      a242336c    00000014     libc.a : copy_decompress_none.c.obj (.text:decompress:none)
                      a2423380    00000012     ti.csl.aer5f : interrupt.oer5f (.text.Intc_SystemEnable)
                      a2423392    00000012     ipc.aer5f : mailbox.oer5f (.text.Mailbox_clrNewMsgStatus)
                      a24233a4    00000012               : mailbox.oer5f (.text.Mailbox_disableNewMsgInt)
                      a24233b6    00000012               : mailbox.oer5f (.text.Mailbox_enableNewMsgInt)
                      a24233c8    00000012     ti.osal.aer5f : Utils_freertos.oer5f (.text.Osal_DebugP_assert)
                      a24233da    00000012                   : DebugP_nonos.oer5f (.text.Osal_DebugP_assert_fcn)
                      a24233ec    00000012     sciclient.aer5f : sciclient_secureproxy.oer5f (.text.Sciclient_threadStatusReg)
                      a24233fe    00000012     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.xPortInIsrContext)
                      a2423410    00000010     ti.osal.aer5f : DebugP_nonos.oer5f (.text.DebugP_exceptionLog)
                      a2423420    00000010     ti.csl.aer5f : interrupt.oer5f (.text.Intc_SystemDisable)
                      a2423430    00000010     ti.osal.aer5f : RegisterIntr_nonos.oer5f (.text.Osal_DeleteInterrupt)
                      a2423440    00000010     libclang_rt.builtins.a : aeabi_memset.S.obj (.text.__aeabi_memset)
                      a2423450    00000010     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.prvTaskExitError)
                      a2423460    00000010                              : tasks.oer5f (.text.ulTaskGetIdleRunTimeCounter)
                      a2423470    00000010                              : port_r5f.oer5f (.text.vPortYeildFromISR)
                      a2423480    00000010                              : tasks.oer5f (.text.vTaskSuspendAll)
                      a2423490    0000000e     ti.osal.aer5f : Arch_util_r5.oer5f (.text.osalArch_Init)
                      a242349e    0000000e     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.vApplicationIdleHook)
                      a24234ac    0000000e                              : tasks.oer5f (.text.vTaskMissedYield)
                      a24234ba    00000002     --HOLE-- [fill = 00000000]
                      a24234bc    0000000c     libc.a : aeabi_portable.c.obj (.text.__aeabi_errno_addr)
                      a24234c8    0000000c     libclang_rt.builtins.a : aeabi_memset.S.obj (.text.__aeabi_memclr)
                      a24234d4    0000000c     ti.kernel.freertos.aer5f : tasks.oer5f (.text.uxTaskGetNumberOfTasks)
                      a24234e0    0000000a     sciclient.aer5f : csl_sec_proxy.oer5f (.text.CSL_secProxyGetDataAddr)
                      a24234ea    0000000a     ti.csl.aer5f : csl_vim.oer5f (.text.CSL_vimGetFiqVectorAddress)
                      a24234f4    0000000a     ipc.aer5f : mailbox.oer5f (.text.Mailbox_getMessageCount)
                      a24234fe    0000000a     ti.osal.aer5f : TimerP_default.oer5f (.text.TimerP_getDefaultFreqLo)
                      a2423508    0000000a     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text._system_pre_init)
                      a2423512    0000000a     ipc.aer5f : ipc_api.oer5f (.text.getIpcObjInst)
                      a242351c    00000008     sciclient.aer5f : sciclient_indirect.oer5f (.text.Sciclient_service)
                      a2423524    00000008     ti.csl.aer5f : timer.oer5f (.text.TIMERIntStatusGet)
                      a242352c    00000008                  : timer.oer5f (.text.TIMERWritePostedStatusGet)
                      a2423534    00000008     libc.a : exit.c.obj (.text:abort)
                      a242353c    00000006     ti.osal.aer5f : Arch_util_r5.oer5f (.text.OsalArch_clearInterrupt)
                      a2423542    00000006                   : Arch_util_r5.oer5f (.text.OsalArch_disableInterrupt)
                      a2423548    00000006                   : Arch_util_r5.oer5f (.text.OsalArch_enableInterrupt)
                      a242354e    00000006                   : RegisterIntr_nonos.oer5f (.text.Osal_ClearInterrupt)
                      a2423554    00000006                   : RegisterIntr_nonos.oer5f (.text.Osal_DisableInterrupt)
                      a242355a    00000006                   : RegisterIntr_nonos.oer5f (.text.Osal_EnableInterrupt)
                      a2423560    00000006     ti.kernel.freertos.aer5f : list.oer5f (.text.vListInitialiseItem)
                      a2423566    00000004     ti.osal.aer5f : HwiP_freertos.oer5f (.text.HwiP_disableInterrupt)
                      a242356a    00000004                   : HwiP_freertos.oer5f (.text.HwiP_enableInterrupt)
                      a242356e    00000004     ti.csl.aer5f : interrupt.oer5f (.text.Intc_SystemRestore)
                      a2423572    00000004     ti.osal.aer5f : Arch_util_r5.oer5f (.text.OsalArch_globalDisableInterrupt)
                      a2423576    00000004                   : Arch_util_r5.oer5f (.text.OsalArch_globalRestoreInterrupt)
                      a242357a    00000004     sciclient.aer5f : sciclient_rm.oer5f (.text.Sciclient_rmIrqSet)
                      a242357e    00000004                     : sciclient_rm.oer5f (.text.Sciclient_rmIrqTranslateIrOutput)
                      a2423582    00000004     ti.osal.aer5f : TaskP_freertos.oer5f (.text.TaskP_sleep)
                      a2423586    00000004                   : TimerP_default.oer5f (.text.TimerP_getDefaultFreqHi)
                      a242358a    00000002     --HOLE-- [fill = 00000000]
                      a242358c    00000004     libclang_rt.builtins.a : aeabi_memcpy.S.obj (.text.__aeabi_memcpy)
                      a2423590    00000004                            : aeabi_div0.c.obj (.text.__aeabi_idiv0)
                      a2423594    00000004     ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.uiPortGetRunTimeCounterValue)
                      a2423598    00000008     ti.osal.aer5f : freertos_utils_r5f.oer5f (.tramp.ulDoWFI.1)
                      a24235a0    00000004     libclang_rt.builtins.a : aeabi_div0.c.obj (.text.__aeabi_ldiv0)
                      a24235a4    0000000c     main.oer5f (.tramp.main.1)
                      a24235b0    00000008     ti.osal.aer5f : freertos_utils_r5f.oer5f (.tramp.ulDoCPSIE.1)
                      a24235b8    00000008     ti.kernel.freertos.aer5f : portASM.oer5f (.tramp.vPortRestoreTaskContext.1)
    
    .sysmem    0    a24235c0    00008000     UNINITIALIZED
                      a24235c0    00000010     libc.a : memory.c.obj (.sysmem)
                      a24235d0    00007ff0     --HOLE--
    
    .rodata    0    a2432e00    00003fc0     
                      a2432e00    00001260     ipc.aer5f : ipc_soc.oer5f (.rodata.g_IPC_MailboxInfo)
                      a2434060    00000420     sciclient.aer5f : sciclient_fmwSecureProxyMap.oer5f (.rodata.gSciclientMap)
                      a2434480    000002c0     r5f_mpu_j784s4_default.oer5f (.rodata.gCslR5MpuCfg)
                      a2434740    000002b8     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.gRmIrqTree)
                      a24349f8    00000008                     : sciclient_irq_rm.oer5f (.rodata.CMPEVENT_INTRTR0_outp_0_3_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_544_547)
                      a2434a00    00000101     libc.a : aeabi_ctype.S.obj (.rodata:__aeabi_ctype_table_)
                      a2434b01    000000bb     ti.kernel.freertos.aer5f : heap_4.oer5f (.rodata.str1.131795312163196171251)
                      a2434bbc    000000aa                              : timers.oer5f (.rodata.str1.13404545794364154081)
                      a2434c66    000000a9                              : tasks.oer5f (.rodata.str1.171208820537530060891)
                      a2434d0f    000000a9                              : queue.oer5f (.rodata.str1.277343651601755681)
                      a2434db8    00000064     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMESYNC_INTRTR0)
                      a2434e1c    0000004c                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_GPIOMUX_INTRTR0)
                      a2434e68    00000048     ipc.aer5f : ipc_soc.oer5f (.rodata.g_IPC_Mailbox_BasePhyAddr)
                      a2434eb0    00000044     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_PCIE0)
                      a2434ef4    00000040                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_INTR_0)
                      a2434f34    00000040                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_PCIE1)
                      a2434f74    00000040                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_PCIE2)
                      a2434fb4    00000040                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_PCIE3)
                      a2434ff4    0000003c                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_WKUP_GPIOMUX_INTRTR0)
                      a2435030    0000003a     rproc.oer5f (.rodata.str1.125460633641440802331)
                      a243506a    00000034     ti.kernel.freertos.aer5f : port_r5f.oer5f (.rodata.str1.58167541160482271821)
                      a243509e    00000033     ipc.aer5f : ipc_mailbox.oer5f (.rodata.str1.97992060718231782321)
                      a24350d1    00000031     r5f_test_perf_tcm.oer5f (.rodata.str1.37839429255499163441)
                      a2435102    00000031     ti.kernel.freertos.aer5f : port_r5f.oer5f (.rodata.str1.43340754052871120731)
                      a2435133    00000028                              : port_r5f.oer5f (.rodata.str1.58684044849143083741)
                      a243515b    00000001     --HOLE-- [fill = 00000000]
                      a243515c    00000028     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_CMPEVENT_INTRTR0)
                      a2435184    00000027     r5f_test_perf_tcm.oer5f (.rodata.str1.174785904183203283731)
                      a24351ab    00000026     main.oer5f (.rodata.str1.74962713943203005991)
                      a24351d1    00000025     r5f_test_perf_tcm.oer5f (.rodata.str1.115765206194296469191)
                      a24351f6    00000024     ipc.aer5f : ipc_soc.oer5f (.rodata.map_src_id)
                      a243521a    00000022     main.oer5f (.rodata.str1.184456626902514043521)
                      a243523c    00000022     ti.osal.aer5f : TimerP_nonos.oer5f (.rodata.str1.57664554649697274361)
                      a243525e    00000021     main.oer5f (.rodata.str1.173022388941182577921)
                      a243527f    00000001     --HOLE-- [fill = 00000000]
                      a2435280    00000020     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0)
                      a24352a0    0000001e     ti.osal.aer5f : TaskP_freertos.oer5f (.rodata.str1.56099348588926752181)
                      a24352be    0000001c     r5f_test_perf_tcm.oer5f (.rodata.str1.12130817869714640001)
                      a24352da    0000001c     r5f_test_perf_tcm.oer5f (.rodata.str1.124265362978886914831)
                      a24352f6    00000002     --HOLE-- [fill = 00000000]
                      a24352f8    0000001c     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_CPSW1)
                      a2435314    0000001c                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_cpsw_9xuss_j7am0)
                      a2435330    0000001b     r5f_test_perf_tcm.oer5f (.rodata.str1.101592614644137276111)
                      a243534b    00000001     --HOLE-- [fill = 00000000]
                      a243534c    0000001a     ipc.aer5f : ipc_soc.oer5f (.rodata.map_dst_id)
                      a2435366    0000001a               : ipc_soc.oer5f (.rodata.req_subtype)
                      a2435380    0000001a               : ipc_soc.oer5f (.rodata.req_type)
                      a243539a    0000001a     r5f_test_perf_tcm.oer5f (.rodata.str1.44416257670189857601)
                      a24353b4    00000019     main.oer5f (.rodata.str1.11891884074542083901)
                      a24353cd    00000003     --HOLE-- [fill = 00000000]
                      a24353d0    00000018     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_DSS0)
                      a24353e8    00000018                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_vusr_dual0)
                      a2435400    00000017     main.oer5f (.rodata.str1.24485728703470192271)
                      a2435417    00000017     ti.kernel.freertos.aer5f : port_r5f.oer5f (.rodata.str1.30379685901723158801)
                      a243542e    00000017     rproc.oer5f (.rodata.str1.94434186401075751101)
                      a2435445    00000015     ti.kernel.freertos.aer5f : port_r5f.oer5f (.rodata.str1.24383334890056356071)
                      a243545a    00000015                              : port_r5f.oer5f (.rodata.str1.99940522186923654031)
                      a243546f    00000014     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.rodata.str1.111964157532026006051)
                      a2435483    00000014     ti.kernel.freertos.aer5f : port_r5f.oer5f (.rodata.str1.20437186956399294191)
                      a2435497    00000013                              : port_r5f.oer5f (.rodata.str1.125205636541596425951)
                      a24354aa    00000013                              : port_r5f.oer5f (.rodata.str1.132733950661278922701)
                      a24354bd    00000013                              : port_r5f.oer5f (.rodata.str1.172260796976285826731)
                      a24354d0    00000013     rproc.oer5f (.rodata.str1.2596752541347536001)
                      a24354e3    00000013     ti.kernel.freertos.aer5f : port_r5f.oer5f (.rodata.str1.64601820103005330811)
                      a24354f6    00000013                              : port_r5f.oer5f (.rodata.str1.86108444948384158231)
                      a2435509    00000013     r5f_test_perf_tcm.oer5f (.rodata.str1.94540987724063928031)
                      a243551c    00000012     r5f_test_perf_tcm.oer5f (.rodata.str1.127148711690439532161)
                      a243552e    00000012     r5f_test_perf_tcm.oer5f (.rodata.str1.169169672961768672441)
                      a2435540    00000012     ti.osal.aer5f : SemaphoreP_freertos.oer5f (.rodata.str1.95684977634953259031)
                      a2435552    00000011     libc.a : _printfi.c.obj (.rodata.str1.11645776875810915891)
                      a2435563    00000011            : _printfi.c.obj (.rodata.str1.44690500295887128011)
                      a2435574    00000010     ti.osal.aer5f : Arch_util_r5.oer5f (.rodata.cst16)
                      a2435584    00000010     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_DDR0)
                      a2435594    00000010                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DDR1)
                      a24355a4    00000010                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DDR2)
                      a24355b4    00000010                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DDR3)
                      a24355c4    00000010                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCU_CPSW0)
                      a24355d4    00000010                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCU_NAVSS0_INTR_ROUTER_0)
                      a24355e4    0000000f     main.oer5f (.rodata.str1.49170066611366927841)
                      a24355f3    00000005     ti.kernel.freertos.aer5f : tasks.oer5f (.rodata.str1.101466344758798504291)
                      a24355f8    0000000c     sciclient.aer5f : sciclient.oer5f (.rodata..L__const.Sciclient_init.semParams)
                      a2435604    0000000c                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MAIN2MCU_LVL_INTRTR0)
                      a2435610    0000000c                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MAIN2MCU_PLS_INTRTR0)
                      a243561c    0000000c                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCU_NAVSS0_MCRC_0)
                      a2435628    0000000c                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MCRC_0)
                      a2435634    0000000c                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_USB0)
                      a2435640    0000000c                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_csi_rx_if0)
                      a243564c    0000000c                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_csi_rx_if1)
                      a2435658    0000000c                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_csi_rx_if2)
                      a2435664    0000000a     ti.osal.aer5f : TimerP_default.oer5f (.rodata.str1.108428492648089267991)
                      a243566e    0000000a                   : TimerP_default.oer5f (.rodata.str1.126342263127912000441)
                      a2435678    0000000a                   : TimerP_default.oer5f (.rodata.str1.128213202899947116811)
                      a2435682    0000000a                   : TimerP_default.oer5f (.rodata.str1.139160351415663491501)
                      a243568c    0000000a                   : TimerP_default.oer5f (.rodata.str1.153453330676662245461)
                      a2435696    0000000a                   : TimerP_default.oer5f (.rodata.str1.178296291298733025141)
                      a24356a0    0000000a                   : TimerP_default.oer5f (.rodata.str1.35712665551755722131)
                      a24356aa    0000000a                   : TimerP_default.oer5f (.rodata.str1.42699919789828236071)
                      a24356b4    0000000a                   : TimerP_default.oer5f (.rodata.str1.80570260386025383331)
                      a24356be    0000000a                   : TimerP_default.oer5f (.rodata.str1.97314606706936322201)
                      a24356c8    00000009                   : TimerP_default.oer5f (.rodata.str1.113404931633800549931)
                      a24356d1    00000009                   : TimerP_default.oer5f (.rodata.str1.121402154227074747551)
                      a24356da    00000009                   : TimerP_default.oer5f (.rodata.str1.121581487038655164041)
                      a24356e3    00000009     main.oer5f (.rodata.str1.123742831567943675801)
                      a24356ec    00000009     ti.osal.aer5f : TimerP_default.oer5f (.rodata.str1.132456394937561314081)
                      a24356f5    00000009                   : TimerP_default.oer5f (.rodata.str1.134475172467390660021)
                      a24356fe    00000009                   : TimerP_default.oer5f (.rodata.str1.13960557824431999871)
                      a2435707    00000009                   : TimerP_default.oer5f (.rodata.str1.154453433387920784991)
                      a2435710    00000009                   : TimerP_default.oer5f (.rodata.str1.183380120436982220731)
                      a2435719    00000009                   : TimerP_default.oer5f (.rodata.str1.45241512632349192191)
                      a2435722    00000009                   : TimerP_default.oer5f (.rodata.str1.50033023243374465211)
                      a243572b    00000009     main.oer5f (.rodata.str1.62201328655555911531)
                      a2435734    00000008     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.CMPEVENT_INTRTR0_outp_0_3_to_COMPUTE_CLUSTER0_GIC500SS_spi_544_547)
                      a243573c    00000008                     : sciclient_irq_rm.oer5f (.rodata.CMPEVENT_INTRTR0_outp_12_15_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_108_111)
                      a2435744    00000008                     : sciclient_irq_rm.oer5f (.rodata.CMPEVENT_INTRTR0_outp_4_7_to_MAIN2MCU_PLS_INTRTR0_in_96_99)
                      a243574c    00000008                     : sciclient_irq_rm.oer5f (.rodata.CMPEVENT_INTRTR0_outp_8_11_to_R5FSS0_CORE0_intr_326_329)
                      a2435754    00000008                     : sciclient_irq_rm.oer5f (.rodata.CMPEVENT_INTRTR0_outp_8_11_to_R5FSS0_CORE1_intr_326_329)
                      a243575c    00000008                     : sciclient_irq_rm.oer5f (.rodata.CMPEVENT_INTRTR0_outp_8_11_to_R5FSS1_CORE0_intr_326_329)
                      a2435764    00000008                     : sciclient_irq_rm.oer5f (.rodata.CMPEVENT_INTRTR0_outp_8_11_to_R5FSS1_CORE1_intr_326_329)
                      a243576c    00000008                     : sciclient_irq_rm.oer5f (.rodata.CMPEVENT_INTRTR0_outp_8_11_to_R5FSS2_CORE0_intr_326_329)
                      a2435774    00000008                     : sciclient_irq_rm.oer5f (.rodata.CMPEVENT_INTRTR0_outp_8_11_to_R5FSS2_CORE1_intr_326_329)
                      a243577c    00000008                     : sciclient_irq_rm.oer5f (.rodata.CODEC0_vpu_wave521cl_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_263_263)
                      a2435784    00000008                     : sciclient_irq_rm.oer5f (.rodata.CODEC1_vpu_wave521cl_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_264_264)
                      a243578c    00000008                     : sciclient_irq_rm.oer5f (.rodata.CPSW1_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_11_11)
                      a2435794    00000008                     : sciclient_irq_rm.oer5f (.rodata.CPSW1_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_18_18)
                      a243579c    00000008                     : sciclient_irq_rm.oer5f (.rodata.CPSW1_cpts_genf1_2_2_to_TIMESYNC_INTRTR0_in_19_19)
                      a24357a4    00000008                     : sciclient_irq_rm.oer5f (.rodata.CPSW1_cpts_sync_3_3_to_TIMESYNC_INTRTR0_in_39_39)
                      a24357ac    00000008                     : sciclient_irq_rm.oer5f (.rodata.CPSW1_evnt_pend_4_4_to_MAIN2MCU_LVL_INTRTR0_in_72_72)
                      a24357b4    00000008                     : sciclient_irq_rm.oer5f (.rodata.CPSW1_mdio_pend_5_5_to_MAIN2MCU_LVL_INTRTR0_in_71_71)
                      a24357bc    00000008                     : sciclient_irq_rm.oer5f (.rodata.CPSW1_stat_pend_6_6_to_MAIN2MCU_LVL_INTRTR0_in_70_70)
                      a24357c4    00000008                     : sciclient_irq_rm.oer5f (.rodata.CSI_TX_IF0_csi_interrupt_0_0_to_MAIN2MCU_LVL_INTRTR0_in_250_250)
                      a24357cc    00000008                     : sciclient_irq_rm.oer5f (.rodata.CSI_TX_IF0_csi_level_1_1_to_MAIN2MCU_LVL_INTRTR0_in_251_251)
                      a24357d4    00000008                     : sciclient_irq_rm.oer5f (.rodata.CSI_TX_IF1_csi_interrupt_0_0_to_MAIN2MCU_LVL_INTRTR0_in_248_248)
                      a24357dc    00000008                     : sciclient_irq_rm.oer5f (.rodata.CSI_TX_IF1_csi_level_1_1_to_MAIN2MCU_LVL_INTRTR0_in_249_249)
                      a24357e4    00000008                     : sciclient_irq_rm.oer5f (.rodata.DCC0_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_88_88)
                      a24357ec    00000008                     : sciclient_irq_rm.oer5f (.rodata.DCC1_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_89_89)
                      a24357f4    00000008                     : sciclient_irq_rm.oer5f (.rodata.DCC2_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_90_90)
                      a24357fc    00000008                     : sciclient_irq_rm.oer5f (.rodata.DCC3_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_91_91)
                      a2435804    00000008                     : sciclient_irq_rm.oer5f (.rodata.DCC4_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_92_92)
                      a243580c    00000008                     : sciclient_irq_rm.oer5f (.rodata.DCC5_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_93_93)
                      a2435814    00000008                     : sciclient_irq_rm.oer5f (.rodata.DCC6_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_94_94)
                      a243581c    00000008                     : sciclient_irq_rm.oer5f (.rodata.DCC7_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_95_95)
                      a2435824    00000008                     : sciclient_irq_rm.oer5f (.rodata.DCC8_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_208_208)
                      a243582c    00000008                     : sciclient_irq_rm.oer5f (.rodata.DCC9_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_209_209)
                      a2435834    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR0_ddrss_controller_0_0_to_MAIN2MCU_LVL_INTRTR0_in_10_10)
                      a243583c    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR0_ddrss_hs_phy_global_error_1_1_to_MAIN2MCU_LVL_INTRTR0_in_12_12)
                      a2435844    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR0_ddrss_pll_freq_change_req_2_2_to_MAIN2MCU_LVL_INTRTR0_in_9_9)
                      a243584c    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR0_ddrss_v2a_other_err_lvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_11_11)
                      a2435854    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR1_ddrss_controller_0_0_to_MAIN2MCU_LVL_INTRTR0_in_64_64)
                      a243585c    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR1_ddrss_hs_phy_global_error_1_1_to_MAIN2MCU_LVL_INTRTR0_in_66_66)
                      a2435864    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR1_ddrss_pll_freq_change_req_2_2_to_MAIN2MCU_LVL_INTRTR0_in_63_63)
                      a243586c    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR1_ddrss_v2a_other_err_lvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_65_65)
                      a2435874    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR2_ddrss_controller_0_0_to_MAIN2MCU_LVL_INTRTR0_in_201_201)
                      a243587c    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR2_ddrss_hs_phy_global_error_1_1_to_MAIN2MCU_LVL_INTRTR0_in_203_203)
                      a2435884    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR2_ddrss_pll_freq_change_req_2_2_to_MAIN2MCU_LVL_INTRTR0_in_200_200)
                      a243588c    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR2_ddrss_v2a_other_err_lvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_202_202)
                      a2435894    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR3_ddrss_controller_0_0_to_MAIN2MCU_LVL_INTRTR0_in_149_149)
                      a243589c    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR3_ddrss_hs_phy_global_error_1_1_to_MAIN2MCU_LVL_INTRTR0_in_151_151)
                      a24358a4    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR3_ddrss_pll_freq_change_req_2_2_to_MAIN2MCU_LVL_INTRTR0_in_148_148)
                      a24358ac    00000008                     : sciclient_irq_rm.oer5f (.rodata.DDR3_ddrss_v2a_other_err_lvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_150_150)
                      a24358b4    00000008                     : sciclient_irq_rm.oer5f (.rodata.DMPAC0_INTD_0_system_intr_level_0_1_to_MAIN2MCU_LVL_INTRTR0_in_268_269)
                      a24358bc    00000008                     : sciclient_irq_rm.oer5f (.rodata.DSS0_dss_inst0_dispc_func_irq_proc0_0_0_to_MAIN2MCU_LVL_INTRTR0_in_226_226)
                      a24358c4    00000008                     : sciclient_irq_rm.oer5f (.rodata.DSS0_dss_inst0_dispc_func_irq_proc1_1_1_to_MAIN2MCU_LVL_INTRTR0_in_227_227)
                      a24358cc    00000008                     : sciclient_irq_rm.oer5f (.rodata.DSS0_dss_inst0_dispc_safety_error_irq_proc0_2_2_to_MAIN2MCU_LVL_INTRTR0_in_230_230)
                      a24358d4    00000008                     : sciclient_irq_rm.oer5f (.rodata.DSS0_dss_inst0_dispc_safety_error_irq_proc1_3_3_to_MAIN2MCU_LVL_INTRTR0_in_231_231)
                      a24358dc    00000008                     : sciclient_irq_rm.oer5f (.rodata.DSS0_dss_inst0_dispc_secure_irq_proc0_4_4_to_MAIN2MCU_LVL_INTRTR0_in_228_228)
                      a24358e4    00000008                     : sciclient_irq_rm.oer5f (.rodata.DSS0_dss_inst0_dispc_secure_irq_proc1_5_5_to_MAIN2MCU_LVL_INTRTR0_in_229_229)
                      a24358ec    00000008                     : sciclient_irq_rm.oer5f (.rodata.DSS_DSI0_dsi_0_func_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_224_224)
                      a24358f4    00000008                     : sciclient_irq_rm.oer5f (.rodata.DSS_DSI1_dsi_0_func_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_225_225)
                      a24358fc    00000008                     : sciclient_irq_rm.oer5f (.rodata.DSS_EDP0_intr_0_3_to_MAIN2MCU_LVL_INTRTR0_in_238_241)
                      a2435904    00000008                     : sciclient_irq_rm.oer5f (.rodata.ECAP0_ecap_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_17_17)
                      a243590c    00000008                     : sciclient_irq_rm.oer5f (.rodata.ECAP1_ecap_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_18_18)
                      a2435914    00000008                     : sciclient_irq_rm.oer5f (.rodata.ECAP2_ecap_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_19_19)
                      a243591c    00000008                     : sciclient_irq_rm.oer5f (.rodata.ELM0_elm_porocpsinterrupt_lvl_0_0_to_MAIN2MCU_LVL_INTRTR0_in_7_7)
                      a2435924    00000008                     : sciclient_irq_rm.oer5f (.rodata.EPWM0_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_2_2)
                      a243592c    00000008                     : sciclient_irq_rm.oer5f (.rodata.EPWM0_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_8_8)
                      a2435934    00000008                     : sciclient_irq_rm.oer5f (.rodata.EPWM1_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_3_3)
                      a243593c    00000008                     : sciclient_irq_rm.oer5f (.rodata.EPWM1_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_9_9)
                      a2435944    00000008                     : sciclient_irq_rm.oer5f (.rodata.EPWM2_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_4_4)
                      a243594c    00000008                     : sciclient_irq_rm.oer5f (.rodata.EPWM2_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_10_10)
                      a2435954    00000008                     : sciclient_irq_rm.oer5f (.rodata.EPWM3_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_5_5)
                      a243595c    00000008                     : sciclient_irq_rm.oer5f (.rodata.EPWM3_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_11_11)
                      a2435964    00000008                     : sciclient_irq_rm.oer5f (.rodata.EPWM4_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_6_6)
                      a243596c    00000008                     : sciclient_irq_rm.oer5f (.rodata.EPWM4_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_12_12)
                      a2435974    00000008                     : sciclient_irq_rm.oer5f (.rodata.EPWM5_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_7_7)
                      a243597c    00000008                     : sciclient_irq_rm.oer5f (.rodata.EPWM5_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_13_13)
                      a2435984    00000008                     : sciclient_irq_rm.oer5f (.rodata.EQEP0_eqep_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_14_14)
                      a243598c    00000008                     : sciclient_irq_rm.oer5f (.rodata.EQEP1_eqep_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_15_15)
                      a2435994    00000008                     : sciclient_irq_rm.oer5f (.rodata.EQEP2_eqep_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_16_16)
                      a243599c    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIO0_gpio_bank_0_7_to_GPIOMUX_INTRTR0_in_145_152)
                      a24359a4    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIO2_gpio_bank_0_7_to_GPIOMUX_INTRTR0_in_154_161)
                      a24359ac    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIO4_gpio_bank_0_7_to_GPIOMUX_INTRTR0_in_163_170)
                      a24359b4    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIO6_gpio_bank_0_7_to_GPIOMUX_INTRTR0_in_172_179)
                      a24359bc    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_0_15_to_R5FSS0_CORE0_intr_396_411)
                      a24359c4    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_0_15_to_R5FSS0_CORE1_intr_396_411)
                      a24359cc    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_0_15_to_R5FSS1_CORE0_intr_396_411)
                      a24359d4    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_0_15_to_R5FSS1_CORE1_intr_396_411)
                      a24359dc    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_0_15_to_R5FSS2_CORE0_intr_396_411)
                      a24359e4    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_0_15_to_R5FSS2_CORE1_intr_396_411)
                      a24359ec    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_0_31_to_MAIN2MCU_PLS_INTRTR0_in_64_95)
                      a24359f4    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_0_7_to_ESM0_esm_pls_event0_664_671)
                      a24359fc    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_0_7_to_ESM0_esm_pls_event1_672_679)
                      a2435a04    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_0_7_to_ESM0_esm_pls_event2_680_687)
                      a2435a0c    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_16_31_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_116_131)
                      a2435a14    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_16_31_to_R5FSS0_CORE0_intr_176_191)
                      a2435a1c    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_16_31_to_R5FSS0_CORE1_intr_176_191)
                      a2435a24    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_16_31_to_R5FSS1_CORE0_intr_176_191)
                      a2435a2c    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_16_31_to_R5FSS1_CORE1_intr_176_191)
                      a2435a34    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_16_31_to_R5FSS2_CORE0_intr_176_191)
                      a2435a3c    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_16_31_to_R5FSS2_CORE1_intr_176_191)
                      a2435a44    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_8_63_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_392_447)
                      a2435a4c    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPIOMUX_INTRTR0_outp_8_63_to_COMPUTE_CLUSTER0_GIC500SS_spi_392_447)
                      a2435a54    00000008                     : sciclient_irq_rm.oer5f (.rodata.GPMC0_gpmc_sinterrupt_0_0_to_MAIN2MCU_LVL_INTRTR0_in_8_8)
                      a2435a5c    00000008                     : sciclient_irq_rm.oer5f (.rodata.GTC0_gtc_push_event_0_0_to_TIMESYNC_INTRTR0_in_1_1)
                      a2435a64    00000008                     : sciclient_irq_rm.oer5f (.rodata.I2C0_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_56_56)
                      a2435a6c    00000008                     : sciclient_irq_rm.oer5f (.rodata.I2C1_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_57_57)
                      a2435a74    00000008                     : sciclient_irq_rm.oer5f (.rodata.I2C2_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_58_58)
                      a2435a7c    00000008                     : sciclient_irq_rm.oer5f (.rodata.I2C3_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_59_59)
                      a2435a84    00000008                     : sciclient_irq_rm.oer5f (.rodata.I2C4_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_60_60)
                      a2435a8c    00000008                     : sciclient_irq_rm.oer5f (.rodata.I2C5_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_61_61)
                      a2435a94    00000008                     : sciclient_irq_rm.oer5f (.rodata.I2C6_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_62_62)
                      a2435a9c    00000008                     : sciclient_irq_rm.oer5f (.rodata.J7AEP_GPU_BXS464_WRAP0_GPU_SS_0_os_irq_0_3_to_MAIN2MCU_LVL_INTRTR0_in_312_315)
                      a2435aa4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MAIN2MCU_LVL_INTRTR0_outl_0_63_to_MCU_R5FSS0_CORE0_intr_160_223)
                      a2435aac    00000008                     : sciclient_irq_rm.oer5f (.rodata.MAIN2MCU_LVL_INTRTR0_outl_0_63_to_MCU_R5FSS0_CORE1_intr_160_223)
                      a2435ab4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MAIN2MCU_LVL_INTRTR0_outl_56_63_to_WKUP_HSM0_nvic_64_71)
                      a2435abc    00000008                     : sciclient_irq_rm.oer5f (.rodata.MAIN2MCU_PLS_INTRTR0_outp_0_47_to_MCU_R5FSS0_CORE0_intr_224_271)
                      a2435ac4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MAIN2MCU_PLS_INTRTR0_outp_0_47_to_MCU_R5FSS0_CORE1_intr_224_271)
                      a2435acc    00000008                     : sciclient_irq_rm.oer5f (.rodata.MAIN2MCU_PLS_INTRTR0_outp_40_47_to_WKUP_HSM0_nvic_72_79)
                      a2435ad4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN0_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_18_18)
                      a2435adc    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN0_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_16_17)
                      a2435ae4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN10_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_298_298)
                      a2435aec    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN10_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_296_297)
                      a2435af4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN11_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_301_301)
                      a2435afc    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN11_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_299_300)
                      a2435b04    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN12_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_304_304)
                      a2435b0c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN12_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_302_303)
                      a2435b14    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN13_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_307_307)
                      a2435b1c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN13_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_305_306)
                      a2435b24    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN14_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_162_162)
                      a2435b2c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN14_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_160_161)
                      a2435b34    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN15_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_165_165)
                      a2435b3c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN15_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_163_164)
                      a2435b44    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN16_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_172_172)
                      a2435b4c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN16_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_170_171)
                      a2435b54    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN17_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_175_175)
                      a2435b5c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN17_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_173_174)
                      a2435b64    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN1_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_21_21)
                      a2435b6c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN1_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_19_20)
                      a2435b74    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN2_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_24_24)
                      a2435b7c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN2_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_22_23)
                      a2435b84    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN3_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_27_27)
                      a2435b8c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN3_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_25_26)
                      a2435b94    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN4_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_280_280)
                      a2435b9c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN4_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_278_279)
                      a2435ba4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN5_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_283_283)
                      a2435bac    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN5_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_281_282)
                      a2435bb4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN6_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_286_286)
                      a2435bbc    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN6_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_284_285)
                      a2435bc4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN7_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_289_289)
                      a2435bcc    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN7_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_287_288)
                      a2435bd4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN8_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_292_292)
                      a2435bdc    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN8_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_290_291)
                      a2435be4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN9_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_295_295)
                      a2435bec    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCAN9_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_293_294)
                      a2435bf4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCASP0_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_177_177)
                      a2435bfc    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCASP0_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_176_176)
                      a2435c04    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCASP1_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_179_179)
                      a2435c0c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCASP1_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_178_178)
                      a2435c14    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCASP2_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_181_181)
                      a2435c1c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCASP2_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_180_180)
                      a2435c24    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCASP3_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_183_183)
                      a2435c2c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCASP3_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_182_182)
                      a2435c34    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCASP4_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_185_185)
                      a2435c3c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCASP4_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_184_184)
                      a2435c44    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCSPI0_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_48_48)
                      a2435c4c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCSPI1_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_49_49)
                      a2435c54    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCSPI2_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_50_50)
                      a2435c5c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCSPI3_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_51_51)
                      a2435c64    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCSPI4_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_52_52)
                      a2435c6c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCSPI5_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_53_53)
                      a2435c74    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCSPI6_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_54_54)
                      a2435c7c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCSPI7_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_55_55)
                      a2435c84    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCU_CPSW0_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_10_10)
                      a2435c8c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCU_CPSW0_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_16_16)
                      a2435c94    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCU_CPSW0_cpts_genf1_2_2_to_TIMESYNC_INTRTR0_in_17_17)
                      a2435c9c    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCU_CPSW0_cpts_sync_3_3_to_TIMESYNC_INTRTR0_in_38_38)
                      a2435ca4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCU_NAVSS0_INTR_ROUTER_0_outl_intr_0_23_to_MCU_R5FSS0_CORE0_intr_64_87)
                      a2435cac    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCU_NAVSS0_INTR_ROUTER_0_outl_intr_24_31_to_WKUP_HSM0_nvic_48_55)
                      a2435cb4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCU_NAVSS0_INTR_ROUTER_0_outl_intr_32_55_to_MCU_R5FSS0_CORE1_intr_64_87)
                      a2435cbc    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCU_NAVSS0_INTR_ROUTER_0_outl_intr_56_63_to_WKUP_HSM0_nvic_56_63)
                      a2435cc4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCU_NAVSS0_MCRC_0_dma_event_intr_0_3_to_MCU_NAVSS0_INTR_ROUTER_0_in_intr_256_259)
                      a2435ccc    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCU_NAVSS0_MCRC_0_dma_event_intr_0_3_to_MCU_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_0_3)
                      a2435cd4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCU_NAVSS0_MCRC_0_intaggr_vintr_pend_4_4_to_MCU_NAVSS0_INTR_ROUTER_0_in_intr_260_260)
                      a2435cdc    00000008                     : sciclient_irq_rm.oer5f (.rodata.MCU_NAVSS0_UDMASS_INTA_0_intaggr_vintr_pend_0_255_to_MCU_NAVSS0_INTR_ROUTER_0_in_intr_0_255)
                      a2435ce4    00000008                     : sciclient_irq_rm.oer5f (.rodata.MMCSD0_emmcss_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_28_28)
                      a2435cec    00000008                     : sciclient_irq_rm.oer5f (.rodata.MMCSD1_emmcsdss_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_29_29)
                      a2435cf4    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_CPTS_0_event_pend_intr_0_0_to_NAVSS0_INTR_0_in_intr_391_391)
                      a2435cfc    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_0_63_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_64_127)
                      a2435d04    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_0_63_to_COMPUTE_CLUSTER0_GIC500SS_spi_64_127)
                      a2435d0c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_128_191_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_672_735)
                      a2435d14    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_128_191_to_COMPUTE_CLUSTER0_GIC500SS_spi_672_735)
                      a2435d1c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_192_223_to_R5FSS0_CORE0_intr_224_255)
                      a2435d24    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_224_255_to_R5FSS0_CORE1_intr_224_255)
                      a2435d2c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_256_287_to_R5FSS1_CORE0_intr_224_255)
                      a2435d34    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_288_319_to_R5FSS1_CORE1_intr_224_255)
                      a2435d3c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_320_351_to_R5FSS2_CORE0_intr_224_255)
                      a2435d44    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_352_383_to_R5FSS2_CORE1_intr_224_255)
                      a2435d4c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_400_407_to_MCU_R5FSS0_CORE0_intr_376_383)
                      a2435d54    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_400_407_to_MCU_R5FSS0_CORE1_intr_376_383)
                      a2435d5c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_408_439_to_vusr_dual0_v0_vusr_in_int_0_31)
                      a2435d64    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_408_439_to_vusr_dual0_v1_vusr_in_int_32_63)
                      a2435d6c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_64_127_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_448_511)
                      a2435d74    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_INTR_0_outl_intr_64_127_to_COMPUTE_CLUSTER0_GIC500SS_spi_448_511)
                      a2435d7c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_0_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_484_487)
                      a2435d84    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_0_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_4_7)
                      a2435d8c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_10_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_444_447)
                      a2435d94    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_10_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_44_47)
                      a2435d9c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_11_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_440_443)
                      a2435da4    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_11_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_48_51)
                      a2435dac    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_1_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_480_483)
                      a2435db4    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_1_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_8_11)
                      a2435dbc    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_2_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_476_479)
                      a2435dc4    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_2_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_12_15)
                      a2435dcc    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_3_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_472_475)
                      a2435dd4    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_3_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_16_19)
                      a2435ddc    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_4_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_468_471)
                      a2435de4    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_4_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_20_23)
                      a2435dec    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_5_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_464_467)
                      a2435df4    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_5_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_24_27)
                      a2435dfc    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_6_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_460_463)
                      a2435e04    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_6_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_28_31)
                      a2435e0c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_7_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_456_459)
                      a2435e14    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_7_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_32_35)
                      a2435e1c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_8_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_452_455)
                      a2435e24    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_8_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_36_39)
                      a2435e2c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_9_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_448_451)
                      a2435e34    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX1_9_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_40_43)
                      a2435e3c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_0_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_436_439)
                      a2435e44    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_0_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_52_55)
                      a2435e4c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_10_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_396_399)
                      a2435e54    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_10_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_92_95)
                      a2435e5c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_11_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_392_395)
                      a2435e64    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_11_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_96_99)
                      a2435e6c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_1_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_432_435)
                      a2435e74    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_1_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_56_59)
                      a2435e7c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_2_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_428_431)
                      a2435e84    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_2_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_60_63)
                      a2435e8c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_3_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_424_427)
                      a2435e94    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_3_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_64_67)
                      a2435e9c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_4_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_420_423)
                      a2435ea4    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_4_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_68_71)
                      a2435eac    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_5_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_416_419)
                      a2435eb4    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_5_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_72_75)
                      a2435ebc    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_6_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_412_415)
                      a2435ec4    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_6_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_76_79)
                      a2435ecc    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_7_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_408_411)
                      a2435ed4    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_7_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_80_83)
                      a2435edc    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_8_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_404_407)
                      a2435ee4    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_8_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_84_87)
                      a2435eec    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_9_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_400_403)
                      a2435ef4    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MAILBOX_9_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_88_91)
                      a2435efc    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MCRC_0_dma_event_intr_0_3_to_NAVSS0_INTR_0_in_intr_384_387)
                      a2435f04    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MCRC_0_dma_event_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_0_3)
                      a2435f0c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MCRC_0_intaggr_vintr_pend_4_4_to_NAVSS0_INTR_0_in_intr_388_388)
                      a2435f14    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MODSS_INTA_0_intaggr_vintr_pend_0_63_to_NAVSS0_INTR_0_in_intr_320_383)
                      a2435f1c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_MODSS_INTA_1_intaggr_vintr_pend_0_63_to_NAVSS0_INTR_0_in_intr_256_319)
                      a2435f24    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_PVU_0_exp_intr_0_0_to_NAVSS0_INTR_0_in_intr_489_489)
                      a2435f2c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_PVU_1_exp_intr_0_0_to_NAVSS0_INTR_0_in_intr_488_488)
                      a2435f34    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_UDMASS_INTA_0_intaggr_vintr_pend_0_255_to_NAVSS0_INTR_0_in_intr_0_255)
                      a2435f3c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_cpts0_comp_0_0_to_CMPEVENT_INTRTR0_in_8_8)
                      a2435f44    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_cpts0_genf0_1_1_to_TIMESYNC_INTRTR0_in_4_4)
                      a2435f4c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_cpts0_genf1_2_2_to_TIMESYNC_INTRTR0_in_5_5)
                      a2435f54    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_cpts0_genf2_3_3_to_TIMESYNC_INTRTR0_in_6_6)
                      a2435f5c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_cpts0_genf3_4_4_to_TIMESYNC_INTRTR0_in_7_7)
                      a2435f64    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_cpts0_genf4_5_5_to_TIMESYNC_INTRTR0_in_8_8)
                      a2435f6c    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_cpts0_genf5_6_6_to_TIMESYNC_INTRTR0_in_9_9)
                      a2435f74    00000008                     : sciclient_irq_rm.oer5f (.rodata.NAVSS0_cpts0_sync_7_7_to_TIMESYNC_INTRTR0_in_36_36)
                      a2435f7c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_4_4)
                      a2435f84    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_10_10)
                      a2435f8c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_cpts_hw1_push_2_2_to_TIMESYNC_INTRTR0_in_20_20)
                      a2435f94    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_cpts_pend_3_3_to_MAIN2MCU_LVL_INTRTR0_in_69_69)
                      a2435f9c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_cpts_sync_4_4_to_TIMESYNC_INTRTR0_in_32_32)
                      a2435fa4    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_downstream_pulse_5_5_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_345_345)
                      a2435fac    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_downstream_pulse_5_5_to_MAIN2MCU_PLS_INTRTR0_in_33_33)
                      a2435fb4    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_dpa_pulse_6_6_to_MAIN2MCU_PLS_INTRTR0_in_20_20)
                      a2435fbc    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_error_pulse_7_7_to_MAIN2MCU_PLS_INTRTR0_in_35_35)
                      a2435fc4    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_flr_pulse_8_8_to_MAIN2MCU_PLS_INTRTR0_in_34_34)
                      a2435fcc    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_hot_reset_pulse_9_9_to_MAIN2MCU_PLS_INTRTR0_in_39_39)
                      a2435fd4    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_legacy_pulse_10_10_to_MAIN2MCU_PLS_INTRTR0_in_32_32)
                      a2435fdc    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_link_state_pulse_11_11_to_MAIN2MCU_PLS_INTRTR0_in_36_36)
                      a2435fe4    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_local_level_12_12_to_MAIN2MCU_LVL_INTRTR0_in_68_68)
                      a2435fec    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_phy_level_13_13_to_MAIN2MCU_LVL_INTRTR0_in_67_67)
                      a2435ff4    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_ptm_valid_pulse_14_14_to_MAIN2MCU_PLS_INTRTR0_in_38_38)
                      a2435ffc    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE0_pcie_pwr_state_pulse_15_15_to_MAIN2MCU_PLS_INTRTR0_in_37_37)
                      a2436004    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_5_5)
                      a243600c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_11_11)
                      a2436014    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_cpts_hw1_push_2_2_to_TIMESYNC_INTRTR0_in_21_21)
                      a243601c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_cpts_pend_3_3_to_MAIN2MCU_LVL_INTRTR0_in_75_75)
                      a2436024    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_cpts_sync_4_4_to_TIMESYNC_INTRTR0_in_33_33)
                      a243602c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_downstream_pulse_5_5_to_MAIN2MCU_PLS_INTRTR0_in_41_41)
                      a2436034    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_dpa_pulse_6_6_to_MAIN2MCU_PLS_INTRTR0_in_21_21)
                      a243603c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_error_pulse_7_7_to_MAIN2MCU_PLS_INTRTR0_in_43_43)
                      a2436044    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_flr_pulse_8_8_to_MAIN2MCU_PLS_INTRTR0_in_42_42)
                      a243604c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_hot_reset_pulse_9_9_to_MAIN2MCU_PLS_INTRTR0_in_47_47)
                      a2436054    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_legacy_pulse_10_10_to_MAIN2MCU_PLS_INTRTR0_in_40_40)
                      a243605c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_link_state_pulse_11_11_to_MAIN2MCU_PLS_INTRTR0_in_44_44)
                      a2436064    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_local_level_12_12_to_MAIN2MCU_LVL_INTRTR0_in_74_74)
                      a243606c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_phy_level_13_13_to_MAIN2MCU_LVL_INTRTR0_in_73_73)
                      a2436074    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_ptm_valid_pulse_14_14_to_MAIN2MCU_PLS_INTRTR0_in_46_46)
                      a243607c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE1_pcie_pwr_state_pulse_15_15_to_MAIN2MCU_PLS_INTRTR0_in_45_45)
                      a2436084    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_6_6)
                      a243608c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_12_12)
                      a2436094    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_cpts_hw1_push_2_2_to_TIMESYNC_INTRTR0_in_22_22)
                      a243609c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_cpts_pend_3_3_to_MAIN2MCU_LVL_INTRTR0_in_78_78)
                      a24360a4    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_cpts_sync_4_4_to_TIMESYNC_INTRTR0_in_34_34)
                      a24360ac    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_downstream_pulse_5_5_to_MAIN2MCU_PLS_INTRTR0_in_49_49)
                      a24360b4    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_dpa_pulse_6_6_to_MAIN2MCU_PLS_INTRTR0_in_22_22)
                      a24360bc    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_error_pulse_7_7_to_MAIN2MCU_PLS_INTRTR0_in_51_51)
                      a24360c4    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_flr_pulse_8_8_to_MAIN2MCU_PLS_INTRTR0_in_50_50)
                      a24360cc    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_hot_reset_pulse_9_9_to_MAIN2MCU_PLS_INTRTR0_in_55_55)
                      a24360d4    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_legacy_pulse_10_10_to_MAIN2MCU_PLS_INTRTR0_in_48_48)
                      a24360dc    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_link_state_pulse_11_11_to_MAIN2MCU_PLS_INTRTR0_in_52_52)
                      a24360e4    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_local_level_12_12_to_MAIN2MCU_LVL_INTRTR0_in_77_77)
                      a24360ec    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_phy_level_13_13_to_MAIN2MCU_LVL_INTRTR0_in_76_76)
                      a24360f4    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_ptm_valid_pulse_14_14_to_MAIN2MCU_PLS_INTRTR0_in_54_54)
                      a24360fc    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE2_pcie_pwr_state_pulse_15_15_to_MAIN2MCU_PLS_INTRTR0_in_53_53)
                      a2436104    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_7_7)
                      a243610c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_13_13)
                      a2436114    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_cpts_hw1_push_2_2_to_TIMESYNC_INTRTR0_in_23_23)
                      a243611c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_cpts_pend_3_3_to_MAIN2MCU_LVL_INTRTR0_in_81_81)
                      a2436124    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_cpts_sync_4_4_to_TIMESYNC_INTRTR0_in_35_35)
                      a243612c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_downstream_pulse_5_5_to_MAIN2MCU_PLS_INTRTR0_in_57_57)
                      a2436134    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_dpa_pulse_6_6_to_MAIN2MCU_PLS_INTRTR0_in_23_23)
                      a243613c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_error_pulse_7_7_to_MAIN2MCU_PLS_INTRTR0_in_59_59)
                      a2436144    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_flr_pulse_8_8_to_MAIN2MCU_PLS_INTRTR0_in_58_58)
                      a243614c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_hot_reset_pulse_9_9_to_MAIN2MCU_PLS_INTRTR0_in_63_63)
                      a2436154    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_legacy_pulse_10_10_to_MAIN2MCU_PLS_INTRTR0_in_56_56)
                      a243615c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_link_state_pulse_11_11_to_MAIN2MCU_PLS_INTRTR0_in_60_60)
                      a2436164    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_local_level_12_12_to_MAIN2MCU_LVL_INTRTR0_in_80_80)
                      a243616c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_phy_level_13_13_to_MAIN2MCU_LVL_INTRTR0_in_79_79)
                      a2436174    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_ptm_valid_pulse_14_14_to_MAIN2MCU_PLS_INTRTR0_in_62_62)
                      a243617c    00000008                     : sciclient_irq_rm.oer5f (.rodata.PCIE3_pcie_pwr_state_pulse_15_15_to_MAIN2MCU_PLS_INTRTR0_in_61_61)
                      a2436184    00000008                     : sciclient_irq_rm.oer5f (.rodata.SA2_UL0_sa_ul_pka_0_0_to_MAIN2MCU_LVL_INTRTR0_in_5_5)
                      a243618c    00000008                     : sciclient_irq_rm.oer5f (.rodata.SA2_UL0_sa_ul_trng_1_1_to_MAIN2MCU_LVL_INTRTR0_in_4_4)
                      a2436194    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER0_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_108_108)
                      a243619c    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER10_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_118_118)
                      a24361a4    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER11_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_119_119)
                      a24361ac    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER12_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_120_120)
                      a24361b4    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER13_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_121_121)
                      a24361bc    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER14_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_122_122)
                      a24361c4    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER14_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_2_2)
                      a24361cc    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER15_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_123_123)
                      a24361d4    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER15_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_3_3)
                      a24361dc    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER16_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_124_124)
                      a24361e4    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER16_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_40_40)
                      a24361ec    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER17_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_125_125)
                      a24361f4    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER17_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_41_41)
                      a24361fc    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER18_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_126_126)
                      a2436204    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER18_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_42_42)
                      a243620c    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER19_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_127_127)
                      a2436214    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER19_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_43_43)
                      a243621c    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER1_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_109_109)
                      a2436224    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER2_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_110_110)
                      a243622c    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER3_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_111_111)
                      a2436234    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER4_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_112_112)
                      a243623c    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER5_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_113_113)
                      a2436244    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER6_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_114_114)
                      a243624c    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER7_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_115_115)
                      a2436254    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER8_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_116_116)
                      a243625c    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMER9_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_117_117)
                      a2436264    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_0_0_to_NAVSS0_cpts0_hw1_push_0_0)
                      a243626c    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_1_1_to_NAVSS0_cpts0_hw2_push_1_1)
                      a2436274    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_20_20_to_PCIE0_pcie_cpts_hw2_push_0_0)
                      a243627c    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_21_21_to_PCIE1_pcie_cpts_hw2_push_0_0)
                      a2436284    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_22_22_to_PCIE2_pcie_cpts_hw2_push_0_0)
                      a243628c    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_23_23_to_PCIE3_pcie_cpts_hw2_push_0_0)
                      a2436294    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_24_24_to_MCU_CPSW0_cpts_hw3_push_0_0)
                      a243629c    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_25_25_to_MCU_CPSW0_cpts_hw4_push_1_1)
                      a24362a4    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_26_26_to_cpsw_9xuss_j7am0_cpts_hw1_push_0_0)
                      a24362ac    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_27_27_to_cpsw_9xuss_j7am0_cpts_hw2_push_1_1)
                      a24362b4    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_28_28_to_cpsw_9xuss_j7am0_cpts_hw3_push_2_2)
                      a24362bc    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_29_29_to_cpsw_9xuss_j7am0_cpts_hw4_push_3_3)
                      a24362c4    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_2_2_to_NAVSS0_cpts0_hw3_push_2_2)
                      a24362cc    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_30_30_to_cpsw_9xuss_j7am0_cpts_hw5_push_4_4)
                      a24362d4    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_31_31_to_cpsw_9xuss_j7am0_cpts_hw6_push_5_5)
                      a24362dc    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_32_32_to_cpsw_9xuss_j7am0_cpts_hw7_push_6_6)
                      a24362e4    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_33_33_to_cpsw_9xuss_j7am0_cpts_hw8_push_7_7)
                      a24362ec    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_38_38_to_CPSW1_cpts_hw3_push_0_0)
                      a24362f4    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_39_39_to_CPSW1_cpts_hw4_push_1_1)
                      a24362fc    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_3_3_to_NAVSS0_cpts0_hw4_push_3_3)
                      a2436304    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_40_47_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_100_107)
                      a243630c    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_4_4_to_NAVSS0_cpts0_hw5_push_4_4)
                      a2436314    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_5_5_to_NAVSS0_cpts0_hw6_push_5_5)
                      a243631c    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_6_6_to_NAVSS0_cpts0_hw7_push_6_6)
                      a2436324    00000008                     : sciclient_irq_rm.oer5f (.rodata.TIMESYNC_INTRTR0_outl_7_7_to_NAVSS0_cpts0_hw8_push_7_7)
                      a243632c    00000008                     : sciclient_irq_rm.oer5f (.rodata.UART0_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_96_96)
                      a2436334    00000008                     : sciclient_irq_rm.oer5f (.rodata.UART1_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_97_97)
                      a243633c    00000008                     : sciclient_irq_rm.oer5f (.rodata.UART2_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_98_98)
                      a2436344    00000008                     : sciclient_irq_rm.oer5f (.rodata.UART3_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_99_99)
                      a243634c    00000008                     : sciclient_irq_rm.oer5f (.rodata.UART4_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_100_100)
                      a2436354    00000008                     : sciclient_irq_rm.oer5f (.rodata.UART5_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_101_101)
                      a243635c    00000008                     : sciclient_irq_rm.oer5f (.rodata.UART6_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_102_102)
                      a2436364    00000008                     : sciclient_irq_rm.oer5f (.rodata.UART7_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_103_103)
                      a243636c    00000008                     : sciclient_irq_rm.oer5f (.rodata.UART8_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_104_104)
                      a2436374    00000008                     : sciclient_irq_rm.oer5f (.rodata.UART9_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_105_105)
                      a243637c    00000008                     : sciclient_irq_rm.oer5f (.rodata.UFS0_ufs_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_218_218)
                      a2436384    00000008                     : sciclient_irq_rm.oer5f (.rodata.USB0_host_system_error_0_0_to_MAIN2MCU_LVL_INTRTR0_in_157_157)
                      a243638c    00000008                     : sciclient_irq_rm.oer5f (.rodata.USB0_irq_1_8_to_MAIN2MCU_LVL_INTRTR0_in_128_135)
                      a2436394    00000008                     : sciclient_irq_rm.oer5f (.rodata.USB0_otgirq_9_9_to_MAIN2MCU_LVL_INTRTR0_in_152_152)
                      a243639c    00000008                     : sciclient_irq_rm.oer5f (.rodata.VPAC0_vpac_level_0_5_to_MAIN2MCU_LVL_INTRTR0_in_270_275)
                      a24363a4    00000008                     : sciclient_irq_rm.oer5f (.rodata.VPAC1_vpac_level_0_5_to_MAIN2MCU_LVL_INTRTR0_in_40_45)
                      a24363ac    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIO0_gpio_bank_0_5_to_WKUP_GPIOMUX_INTRTR0_in_103_108)
                      a24363b4    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIO1_gpio_bank_0_5_to_WKUP_GPIOMUX_INTRTR0_in_112_117)
                      a24363bc    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_0_11_to_WKUP_HSM0_nvic_184_195)
                      a24363c4    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_0_15_to_MCU_R5FSS0_CORE0_intr_124_139)
                      a24363cc    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_0_15_to_MCU_R5FSS0_CORE1_intr_124_139)
                      a24363d4    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_12_19_to_MCU_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_4_11)
                      a24363dc    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_16_31_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_960_975)
                      a24363e4    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_16_31_to_COMPUTE_CLUSTER0_GIC500SS_spi_960_975)
                      a24363ec    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS0_CORE0_intr_488_503)
                      a24363f4    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS0_CORE1_intr_488_503)
                      a24363fc    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS1_CORE0_intr_488_503)
                      a2436404    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS1_CORE1_intr_488_503)
                      a243640c    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS2_CORE0_intr_488_503)
                      a2436414    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS2_CORE1_intr_488_503)
                      a243641c    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_8_15_to_WKUP_ESM0_esm_pls_event0_120_127)
                      a2436424    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_8_15_to_WKUP_ESM0_esm_pls_event1_128_135)
                      a243642c    00000008                     : sciclient_irq_rm.oer5f (.rodata.WKUP_GPIOMUX_INTRTR0_outp_8_15_to_WKUP_ESM0_esm_pls_event2_136_143)
                      a2436434    00000008                     : sciclient_irq_rm.oer5f (.rodata.cpsw_9xuss_j7am0_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_9_9)
                      a243643c    00000008                     : sciclient_irq_rm.oer5f (.rodata.cpsw_9xuss_j7am0_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_14_14)
                      a2436444    00000008                     : sciclient_irq_rm.oer5f (.rodata.cpsw_9xuss_j7am0_cpts_genf1_2_2_to_TIMESYNC_INTRTR0_in_15_15)
                      a243644c    00000008                     : sciclient_irq_rm.oer5f (.rodata.cpsw_9xuss_j7am0_cpts_sync_3_3_to_TIMESYNC_INTRTR0_in_37_37)
                      a2436454    00000008                     : sciclient_irq_rm.oer5f (.rodata.cpsw_9xuss_j7am0_evnt_pend_4_4_to_MAIN2MCU_LVL_INTRTR0_in_223_223)
                      a243645c    00000008                     : sciclient_irq_rm.oer5f (.rodata.cpsw_9xuss_j7am0_mdio_pend_5_5_to_MAIN2MCU_LVL_INTRTR0_in_222_222)
                      a2436464    00000008                     : sciclient_irq_rm.oer5f (.rodata.cpsw_9xuss_j7am0_stat_pend_6_6_to_MAIN2MCU_LVL_INTRTR0_in_221_221)
                      a243646c    00000008                     : sciclient_irq_rm.oer5f (.rodata.csi_rx_if0_csi_err_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_255_255)
                      a2436474    00000008                     : sciclient_irq_rm.oer5f (.rodata.csi_rx_if0_csi_irq_1_1_to_MAIN2MCU_LVL_INTRTR0_in_254_254)
                      a243647c    00000008                     : sciclient_irq_rm.oer5f (.rodata.csi_rx_if0_csi_level_2_2_to_MAIN2MCU_LVL_INTRTR0_in_256_256)
                      a2436484    00000008                     : sciclient_irq_rm.oer5f (.rodata.csi_rx_if1_csi_err_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_258_258)
                      a243648c    00000008                     : sciclient_irq_rm.oer5f (.rodata.csi_rx_if1_csi_irq_1_1_to_MAIN2MCU_LVL_INTRTR0_in_257_257)
                      a2436494    00000008                     : sciclient_irq_rm.oer5f (.rodata.csi_rx_if1_csi_level_2_2_to_MAIN2MCU_LVL_INTRTR0_in_259_259)
                      a243649c    00000008                     : sciclient_irq_rm.oer5f (.rodata.csi_rx_if2_csi_err_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_261_261)
                      a24364a4    00000008                     : sciclient_irq_rm.oer5f (.rodata.csi_rx_if2_csi_irq_1_1_to_MAIN2MCU_LVL_INTRTR0_in_260_260)
                      a24364ac    00000008                     : sciclient_irq_rm.oer5f (.rodata.csi_rx_if2_csi_level_2_2_to_MAIN2MCU_LVL_INTRTR0_in_262_262)
                      a24364b4    00000008                     : sciclient_irq_rm.oer5f (.rodata.j7aep_gpu_bxs464_wrap0_gpu_pwrctrl_req_0_0_to_MAIN2MCU_LVL_INTRTR0_in_316_316)
                      a24364bc    00000008     ti.kernel.freertos.aer5f : timers.oer5f (.rodata.str1.113157377500583114171)
                      a24364c4    00000008     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.tisci_if_CSI_TX_IF0)
                      a24364cc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_CSI_TX_IF1)
                      a24364d4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EPWM0)
                      a24364dc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EPWM1)
                      a24364e4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EPWM2)
                      a24364ec    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EPWM3)
                      a24364f4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EPWM4)
                      a24364fc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EPWM5)
                      a2436504    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN0)
                      a243650c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN10)
                      a2436514    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN11)
                      a243651c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN12)
                      a2436524    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN13)
                      a243652c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN14)
                      a2436534    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN15)
                      a243653c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN16)
                      a2436544    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN17)
                      a243654c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN1)
                      a2436554    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN2)
                      a243655c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN3)
                      a2436564    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN4)
                      a243656c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN5)
                      a2436574    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN6)
                      a243657c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN7)
                      a2436584    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN8)
                      a243658c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCAN9)
                      a2436594    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCASP0)
                      a243659c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCASP1)
                      a24365a4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCASP2)
                      a24365ac    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCASP3)
                      a24365b4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCASP4)
                      a24365bc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX1_0)
                      a24365c4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX1_10)
                      a24365cc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX1_11)
                      a24365d4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX1_1)
                      a24365dc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX1_2)
                      a24365e4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX1_3)
                      a24365ec    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX1_4)
                      a24365f4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX1_5)
                      a24365fc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX1_6)
                      a2436604    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX1_7)
                      a243660c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX1_8)
                      a2436614    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX1_9)
                      a243661c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX_0)
                      a2436624    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX_10)
                      a243662c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX_11)
                      a2436634    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX_1)
                      a243663c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX_2)
                      a2436644    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX_3)
                      a243664c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX_4)
                      a2436654    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX_5)
                      a243665c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX_6)
                      a2436664    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX_7)
                      a243666c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX_8)
                      a2436674    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MAILBOX_9)
                      a243667c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_SA2_UL0)
                      a2436684    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER14)
                      a243668c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER15)
                      a2436694    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER16)
                      a243669c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER17)
                      a24366a4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER18)
                      a24366ac    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER19)
                      a24366b4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_CMPEVENT_INTRTR0)
                      a24366bc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_CODEC0)
                      a24366c4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_CODEC1)
                      a24366cc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_CPSW1)
                      a24366d4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_CSI_TX_IF0)
                      a24366dc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_CSI_TX_IF1)
                      a24366e4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC0)
                      a24366ec    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC1)
                      a24366f4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC2)
                      a24366fc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC3)
                      a2436704    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC4)
                      a243670c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC5)
                      a2436714    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC6)
                      a243671c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC7)
                      a2436724    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC8)
                      a243672c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DCC9)
                      a2436734    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DDR0)
                      a243673c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DDR1)
                      a2436744    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DDR2)
                      a243674c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DDR3)
                      a2436754    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DMPAC0_INTD_0)
                      a243675c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DSS0)
                      a2436764    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DSS_DSI0)
                      a243676c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DSS_DSI1)
                      a2436774    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_DSS_EDP0)
                      a243677c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_ECAP0)
                      a2436784    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_ECAP1)
                      a243678c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_ECAP2)
                      a2436794    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_ELM0)
                      a243679c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EPWM0)
                      a24367a4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EPWM1)
                      a24367ac    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EPWM2)
                      a24367b4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EPWM3)
                      a24367bc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EPWM4)
                      a24367c4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EPWM5)
                      a24367cc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EQEP0)
                      a24367d4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EQEP1)
                      a24367dc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_EQEP2)
                      a24367e4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_GPIO0)
                      a24367ec    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_GPIO2)
                      a24367f4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_GPIO4)
                      a24367fc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_GPIO6)
                      a2436804    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_GPIOMUX_INTRTR0)
                      a243680c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_GPMC0)
                      a2436814    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_GTC0)
                      a243681c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_I2C0)
                      a2436824    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_I2C1)
                      a243682c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_I2C2)
                      a2436834    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_I2C3)
                      a243683c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_I2C4)
                      a2436844    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_I2C5)
                      a243684c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_I2C6)
                      a2436854    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_J7AEP_GPU_BXS464_WRAP0_GPU_SS_0)
                      a243685c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MAIN2MCU_LVL_INTRTR0)
                      a2436864    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MAIN2MCU_PLS_INTRTR0)
                      a243686c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN0)
                      a2436874    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN10)
                      a243687c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN11)
                      a2436884    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN12)
                      a243688c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN13)
                      a2436894    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN14)
                      a243689c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN15)
                      a24368a4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN16)
                      a24368ac    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN17)
                      a24368b4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN1)
                      a24368bc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN2)
                      a24368c4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN3)
                      a24368cc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN4)
                      a24368d4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN5)
                      a24368dc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN6)
                      a24368e4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN7)
                      a24368ec    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN8)
                      a24368f4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCAN9)
                      a24368fc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCASP0)
                      a2436904    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCASP1)
                      a243690c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCASP2)
                      a2436914    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCASP3)
                      a243691c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCASP4)
                      a2436924    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCSPI0)
                      a243692c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCSPI1)
                      a2436934    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCSPI2)
                      a243693c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCSPI3)
                      a2436944    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCSPI4)
                      a243694c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCSPI5)
                      a2436954    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCSPI6)
                      a243695c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCSPI7)
                      a2436964    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCU_CPSW0)
                      a243696c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCU_NAVSS0_INTR_ROUTER_0)
                      a2436974    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCU_NAVSS0_MCRC_0)
                      a243697c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MCU_NAVSS0_UDMASS_INTA_0)
                      a2436984    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MMCSD0)
                      a243698c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_MMCSD1)
                      a2436994    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0)
                      a243699c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_CPTS_0)
                      a24369a4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_INTR_0)
                      a24369ac    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX1_0)
                      a24369b4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX1_10)
                      a24369bc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX1_11)
                      a24369c4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX1_1)
                      a24369cc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX1_2)
                      a24369d4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX1_3)
                      a24369dc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX1_4)
                      a24369e4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX1_5)
                      a24369ec    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX1_6)
                      a24369f4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX1_7)
                      a24369fc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX1_8)
                      a2436a04    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX1_9)
                      a2436a0c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX_0)
                      a2436a14    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX_10)
                      a2436a1c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX_11)
                      a2436a24    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX_1)
                      a2436a2c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX_2)
                      a2436a34    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX_3)
                      a2436a3c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX_4)
                      a2436a44    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX_5)
                      a2436a4c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX_6)
                      a2436a54    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX_7)
                      a2436a5c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX_8)
                      a2436a64    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MAILBOX_9)
                      a2436a6c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MCRC_0)
                      a2436a74    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MODSS_INTA_0)
                      a2436a7c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_MODSS_INTA_1)
                      a2436a84    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_PVU_0)
                      a2436a8c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_PVU_1)
                      a2436a94    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_NAVSS0_UDMASS_INTA_0)
                      a2436a9c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_PCIE0)
                      a2436aa4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_PCIE1)
                      a2436aac    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_PCIE2)
                      a2436ab4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_PCIE3)
                      a2436abc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_SA2_UL0)
                      a2436ac4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER0)
                      a2436acc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER10)
                      a2436ad4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER11)
                      a2436adc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER12)
                      a2436ae4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER13)
                      a2436aec    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER14)
                      a2436af4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER15)
                      a2436afc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER16)
                      a2436b04    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER17)
                      a2436b0c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER18)
                      a2436b14    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER19)
                      a2436b1c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER1)
                      a2436b24    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER2)
                      a2436b2c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER3)
                      a2436b34    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER4)
                      a2436b3c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER5)
                      a2436b44    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER6)
                      a2436b4c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER7)
                      a2436b54    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER8)
                      a2436b5c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMER9)
                      a2436b64    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_TIMESYNC_INTRTR0)
                      a2436b6c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_UART0)
                      a2436b74    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_UART1)
                      a2436b7c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_UART2)
                      a2436b84    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_UART3)
                      a2436b8c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_UART4)
                      a2436b94    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_UART5)
                      a2436b9c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_UART6)
                      a2436ba4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_UART7)
                      a2436bac    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_UART8)
                      a2436bb4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_UART9)
                      a2436bbc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_UFS0)
                      a2436bc4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_USB0)
                      a2436bcc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_VPAC0)
                      a2436bd4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_VPAC1)
                      a2436bdc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_WKUP_GPIO0)
                      a2436be4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_WKUP_GPIO1)
                      a2436bec    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_WKUP_GPIOMUX_INTRTR0)
                      a2436bf4    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_cpsw_9xuss_j7am0)
                      a2436bfc    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_csi_rx_if0)
                      a2436c04    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_csi_rx_if1)
                      a2436c0c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_csi_rx_if2)
                      a2436c14    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_j7aep_gpu_bxs464_wrap0)
                      a2436c1c    00000008                     : sciclient_irq_rm.oer5f (.rodata.tisci_irq_vusr_dual0)
                      a2436c24    00000008                     : sciclient_irq_rm.oer5f (.rodata.vusr_dual0_v0_mcp_hi_intlvl_0_0_to_MAIN2MCU_LVL_INTRTR0_in_84_84)
                      a2436c2c    00000008                     : sciclient_irq_rm.oer5f (.rodata.vusr_dual0_v0_mcp_lo_intlvl_1_1_to_MAIN2MCU_LVL_INTRTR0_in_83_83)
                      a2436c34    00000008                     : sciclient_irq_rm.oer5f (.rodata.vusr_dual0_v0_vusr_intlvl_2_2_to_MAIN2MCU_LVL_INTRTR0_in_82_82)
                      a2436c3c    00000008                     : sciclient_irq_rm.oer5f (.rodata.vusr_dual0_v1_mcp_hi_intlvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_87_87)
                      a2436c44    00000008                     : sciclient_irq_rm.oer5f (.rodata.vusr_dual0_v1_mcp_lo_intlvl_4_4_to_MAIN2MCU_LVL_INTRTR0_in_86_86)
                      a2436c4c    00000008                     : sciclient_irq_rm.oer5f (.rodata.vusr_dual0_v1_vusr_intlvl_5_5_to_MAIN2MCU_LVL_INTRTR0_in_85_85)
                      a2436c54    00000007     ipc.aer5f : ipc_utils.oer5f (.rodata.str1.103494705883558365451)
                      a2436c5b    00000007     main.oer5f (.rodata.str1.172710797661274662461)
                      a2436c62    00000005     ti.kernel.freertos.aer5f : timers.oer5f (.rodata.str1.134519420926843965201)
                      a2436c67    00000001     --HOLE-- [fill = 00000000]
                      a2436c68    00000004     sciclient.aer5f : sciclient_irq_rm.oer5f (.rodata.gRmIrqTreeCount)
                      a2436c6c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_CODEC0)
                      a2436c70    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_CODEC1)
                      a2436c74    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC0)
                      a2436c78    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC1)
                      a2436c7c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC2)
                      a2436c80    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC3)
                      a2436c84    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC4)
                      a2436c88    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC5)
                      a2436c8c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC6)
                      a2436c90    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC7)
                      a2436c94    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC8)
                      a2436c98    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DCC9)
                      a2436c9c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DMPAC0_INTD_0)
                      a2436ca0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DSS_DSI0)
                      a2436ca4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DSS_DSI1)
                      a2436ca8    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_DSS_EDP0)
                      a2436cac    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_ECAP0)
                      a2436cb0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_ECAP1)
                      a2436cb4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_ECAP2)
                      a2436cb8    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_ELM0)
                      a2436cbc    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EQEP0)
                      a2436cc0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EQEP1)
                      a2436cc4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_EQEP2)
                      a2436cc8    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_GPIO0)
                      a2436ccc    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_GPIO2)
                      a2436cd0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_GPIO4)
                      a2436cd4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_GPIO6)
                      a2436cd8    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_GPMC0)
                      a2436cdc    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_GTC0)
                      a2436ce0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_I2C0)
                      a2436ce4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_I2C1)
                      a2436ce8    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_I2C2)
                      a2436cec    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_I2C3)
                      a2436cf0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_I2C4)
                      a2436cf4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_I2C5)
                      a2436cf8    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_I2C6)
                      a2436cfc    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_J7AEP_GPU_BXS464_WRAP0_GPU_SS_0)
                      a2436d00    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCSPI0)
                      a2436d04    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCSPI1)
                      a2436d08    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCSPI2)
                      a2436d0c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCSPI3)
                      a2436d10    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCSPI4)
                      a2436d14    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCSPI5)
                      a2436d18    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCSPI6)
                      a2436d1c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCSPI7)
                      a2436d20    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MCU_NAVSS0_UDMASS_INTA_0)
                      a2436d24    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MMCSD0)
                      a2436d28    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_MMCSD1)
                      a2436d2c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_CPTS_0)
                      a2436d30    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MODSS_INTA_0)
                      a2436d34    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_MODSS_INTA_1)
                      a2436d38    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_PVU_0)
                      a2436d3c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_PVU_1)
                      a2436d40    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_NAVSS0_UDMASS_INTA_0)
                      a2436d44    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER0)
                      a2436d48    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER10)
                      a2436d4c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER11)
                      a2436d50    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER12)
                      a2436d54    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER13)
                      a2436d58    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER1)
                      a2436d5c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER2)
                      a2436d60    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER3)
                      a2436d64    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER4)
                      a2436d68    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER5)
                      a2436d6c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER6)
                      a2436d70    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER7)
                      a2436d74    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER8)
                      a2436d78    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_TIMER9)
                      a2436d7c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_UART0)
                      a2436d80    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_UART1)
                      a2436d84    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_UART2)
                      a2436d88    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_UART3)
                      a2436d8c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_UART4)
                      a2436d90    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_UART5)
                      a2436d94    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_UART6)
                      a2436d98    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_UART7)
                      a2436d9c    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_UART8)
                      a2436da0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_UART9)
                      a2436da4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_UFS0)
                      a2436da8    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_VPAC0)
                      a2436dac    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_VPAC1)
                      a2436db0    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_WKUP_GPIO0)
                      a2436db4    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_WKUP_GPIO1)
                      a2436db8    00000004                     : sciclient_irq_rm.oer5f (.rodata.tisci_if_j7aep_gpu_bxs464_wrap0)
                      a2436dbc    00000004     ti.kernel.freertos.aer5f : tasks.oer5f (.rodata.uxTopUsedPriority)
    
    .cinit     0    a2439b80    00000258     
                      a2439b80    000001fe     (.cinit..data.load) [load image, compression = lzss]
                      a2439d7e    00000002     --HOLE-- [fill = 00000000]
                      a2439d80    0000000c     (__TI_handler_table)
                      a2439d8c    00000008     (.cinit..bss.load) [load image, compression = zero_init]
                      a2439d94    00000008     (.cinit..ddr_data.load) [load image, compression = zero_init]
                      a2439d9c    00000008     (.cinit..tcmb_data.load) [load image, compression = zero_init]
                      a2439da4    00000008     (.cinit..tracebuf.load) [load image, compression = zero_init]
                      a2439dac    00000028     (__TI_cinit_table)
                      a2439dd4    00000004     --HOLE-- [fill = 00000000]
    
    .data      0    a2436e00    00002d80     UNINITIALIZED
                      a2436e00    00000800     ti.csl.aer5f : interrupt.oer5f (.data.argArray)
                      a2437600    00000800                  : interrupt.oer5f (.data.fxnArray)
                      a2437e00    00000800                  : interrupt.oer5f (.data.intrSrcType)
                      a2438600    000006e0     ti.osal.aer5f : TimerP_nonos.oer5f (.data.gTimerStructs)
                      a2438ce0    00000400     ti.csl.aer5f : interrupt.oer5f (.data.intrPri)
                      a24390e0    00000200                  : interrupt.oer5f (.data.intrMap)
                      a24392e0    00000140     ti.osal.aer5f : TimerP_default.oer5f (.data.gDmTimerPInfoTbl)
                      a2439420    00000100     sciclient.aer5f : sciclient_irq_rm.oer5f (.data.vint_usage_count_MCU_NAVSS0_UDMASS_INTA_0)
                      a2439520    00000100                     : sciclient_irq_rm.oer5f (.data.vint_usage_count_NAVSS0_UDMASS_INTA_0)
                      a2439620    000000c0                     : sciclient_irq_rm.oer5f (.data.gRmIrInstances)
                      a24396e0    00000080                     : sciclient_irq_rm.oer5f (.data.gRmIaInstances)
                      a2439760    00000078     ti.osal.aer5f : TimerP_restrictedTimers.oer5f (.data.Osal_mainMcuRestrictedTimerID)
                      a24397d8    00000078                   : TimerP_restrictedTimers.oer5f (.data.Osal_mcuRestrictedTimerID)
                      a2439850    00000060     r5f_test_perf_tcm.oer5f (.data.test_desc)
                      a24398b0    00000054     sciclient.aer5f : sciclient.oer5f (.data.gSciclientHandle)
                      a2439904    00000048     ipc.aer5f : ipc_soc.oer5f (.data.g_Navss512MbInput)
                      a243994c    00000040     sciclient.aer5f : sciclient_irq_rm.oer5f (.data.vint_usage_count_NAVSS0_MODSS_INTA_0)
                      a243998c    00000040                     : sciclient_irq_rm.oer5f (.data.vint_usage_count_NAVSS0_MODSS_INTA_1)
                      a24399cc    00000030     ti.csl.aer5f : interrupt.oer5f (.data.gExptnHandlers)
                      a24399fc    00000004     ti.kernel.freertos.aer5f : tasks.oer5f (.data.FreeRTOS_errno)
                      a2439a00    00000020     ti.osal.aer5f : Utils_freertos.oer5f (.data.gOsal_HwAttrs)
                      a2439a20    00000020     sciclient.aer5f : sciclient_secureProxyCfg.oer5f (.data.gSciclient_secProxyCfg)
                      a2439a40    00000018                     : sciclient_irq_rm.oer5f (.data.rom_usage_MAIN2MCU_LVL_INTRTR0)
                      a2439a58    00000008     r5f_test_perf_tcm.oer5f (.data.gStartTime)
                      a2439a60    00000008     ti.kernel.freertos.aer5f : tasks.oer5f (.data.ulTaskSwitchedInTime)
                      a2439a68    00000008                              : tasks.oer5f (.data.ulTotalRunTime)
                      a2439a70    00000004     ti.osal.aer5f : DebugP_nonos.oer5f (.data.Osal_exptnLogFxn)
                      a2439a74    00000004     libc.a : aeabi_portable.c.obj (.data.__aeabi_errno)
                      a2439a78    00000004     ti.csl.aer5f : interrupt_handlers.oer5f (.data.gCurrentProcessorState)
                      a2439a7c    00000004     ti.osal.aer5f : Utils_freertos.oer5f (.data.gOsalHwiAllocCnt)
                      a2439a80    00000004                   : Utils_freertos.oer5f (.data.gOsalHwiPeak)
                      a2439a84    00000004                   : Utils_freertos.oer5f (.data.gOsalSemAllocCnt)
                      a2439a88    00000004                   : Utils_freertos.oer5f (.data.gOsalSemPeak)
                      a2439a8c    00000004                   : Utils_freertos.oer5f (.data.gOsalTimerAllocCnt)
                      a2439a90    00000004                   : Utils_freertos.oer5f (.data.gOsalTimerPeak)
                      a2439a94    00000004     sciclient.aer5f : sciclient.oer5f (.data.gSciclient_writeInProgress)
                      a2439a98    00000004                     : sciclient_rom.oer5f (.data.pSciclient_secProxyCfg)
                      a2439a9c    00000004     ti.kernel.freertos.aer5f : timers.oer5f (.data.prvSampleTimeNow.xLastTime)
                      a2439aa0    00000004                              : tasks.oer5f (.data.pxCurrentTCB)
                      a2439aa4    00000004                              : heap_4.oer5f (.data.pxEnd)
                      a2439aa8    00000004     sciclient.aer5f : sciclient_irq_rm.oer5f (.data.rom_usage_MCU_NAVSS0_UDMASS_INTA_0)
                      a2439aac    00000004     rproc.oer5f (.data.traceIdx)
                      a2439ab0    00000004     ti.kernel.freertos.aer5f : port_r5f.oer5f (.data.ulCriticalNesting)
                      a2439ab4    00000004                              : port_r5f.oer5f (.data.ulPmuTsOverFlowCount)
                      a2439ab8    00000004                              : port_r5f.oer5f (.data.ulPortInterruptNesting)
                      a2439abc    00000004                              : port_r5f.oer5f (.data.ulPortSchedularRunning)
                      a2439ac0    00000004                              : port_r5f.oer5f (.data.ulPortTaskHasFPUContext)
                      a2439ac4    00000004                              : port_r5f.oer5f (.data.ulPortYieldRequired)
                      a2439ac8    00000004                              : tasks.oer5f (.data.uxCurrentNumberOfTasks)
                      a2439acc    00000004                              : tasks.oer5f (.data.uxDeletedTasksWaitingCleanUp)
                      a2439ad0    00000004                              : tasks.oer5f (.data.uxSchedulerSuspended)
                      a2439ad4    00000004                              : tasks.oer5f (.data.uxTaskNumber)
                      a2439ad8    00000004                              : tasks.oer5f (.data.uxTopReadyPriority)
                      a2439adc    00000004     ti.osal.aer5f : LoadP_freertos.oer5f (.data.vApplicationLoadHook.t0)
                      a2439ae0    00000004                   : LoadP_freertos.oer5f (.data.vApplicationLoadHook.timeElapsed)
                      a2439ae4    00000004     ti.kernel.freertos.aer5f : heap_4.oer5f (.data.xFreeBytesRemaining)
                      a2439ae8    00000004                              : tasks.oer5f (.data.xIdleTaskHandle)
                      a2439aec    00000004                              : heap_4.oer5f (.data.xMinimumEverFreeBytesRemaining)
                      a2439af0    00000004                              : tasks.oer5f (.data.xNextTaskUnblockTime)
                      a2439af4    00000004                              : tasks.oer5f (.data.xNumOfOverflows)
                      a2439af8    00000004                              : heap_4.oer5f (.data.xNumberOfSuccessfulAllocations)
                      a2439afc    00000004                              : heap_4.oer5f (.data.xNumberOfSuccessfulFrees)
                      a2439b00    00000004                              : tasks.oer5f (.data.xPendedTicks)
                      a2439b04    00000004                              : tasks.oer5f (.data.xSchedulerRunning)
                      a2439b08    00000004     main.oer5f (.data.xShutDownTaskHandle)
                      a2439b0c    00000004     main.oer5f (.data.xTestTCMTaskHandle)
                      a2439b10    00000004     ti.kernel.freertos.aer5f : tasks.oer5f (.data.xTickCount)
                      a2439b14    00000004                              : timers.oer5f (.data.xTimerQueue)
                      a2439b18    00000004                              : timers.oer5f (.data.xTimerTaskHandle)
                      a2439b1c    00000004                              : tasks.oer5f (.data.xYieldPending)
                      a2439b20    00000002     ipc.aer5f : ipc_soc.oer5f (.data.Ipc_setCoreEventId.range)
                      a2439b22    00000002               : ipc_soc.oer5f (.data.Ipc_setCoreEventId.start)
                      a2439b24    00000001     ti.osal.aer5f : Utils_freertos.oer5f (.data.Osal_DebugP_Assert_Val)
                      a2439b25    00000001                   : Arch_util_r5.oer5f (.data.gFirstTime)
                      a2439b26    00000001                   : Arch_util_r5.oer5f (.data.gHwiInitialized)
                      a2439b27    00000001                   : LoadP_freertos.oer5f (.data.gLoadP_initDone)
                      a2439b28    00000001                   : Arch_util_r5.oer5f (.data.gOsalArchConfig)
                      a2439b29    00000001     sciclient.aer5f : sciclient.oer5f (.data.gSecHeaderSizeWords)
                      a2439b2a    00000001     ti.osal.aer5f : TimerP_nonos.oer5f (.data.gUpdateFlag)
                      a2439b2b    00000001     --HOLE--
                      a2439b2c    00000001                   : TimerP_nonos.oer5f (.data.gTimerInitDone)
                      a2439b2d    00000053     --HOLE--
    
    .resource_table 
    *          0    a2100000    00000044     
                      a2100000    00000044     rproc.oer5f (.resource_table)
    
    .tracebuf 
    *          0    a2100400    00080000     UNINITIALIZED
                      a2100400    00080000     rproc.oer5f (.tracebuf)
    
    .undStack 
    *          0    a2ffac00    00000100     UNINITIALIZED
                      a2ffac00    00000100     --HOLE--
    
    .svcStack 
    *          0    a2ffad00    00000100     UNINITIALIZED
                      a2ffad00    00000100     --HOLE--
    
    .irqStack 
    *          0    a2ffae00    00001000     UNINITIALIZED
                      a2ffae00    00001000     --HOLE--
    
    .fiqStack 
    *          0    a2ffbe00    00000100     UNINITIALIZED
                      a2ffbe00    00000100     --HOLE--
    
    .abortStack 
    *          0    a2ffbf00    00000100     UNINITIALIZED
                      a2ffbf00    00000100     --HOLE--
    
    .stack     0    a2ffc000    00004000     UNINITIALIZED
                      a2ffc000    00004000     --HOLE--
    
    .ddr_data 
    *          0    a242b600    00007800     UNINITIALIZED
                      a242b600    00007800     r5f_test_perf_tcm.oer5f (.ddr_data)
    
    __llvm_prf_cnts 
    *          0    a2400000    00000000     UNINITIALIZED
    
    __llvm_prf_bits 
    *          0    a2400000    00000000     UNINITIALIZED
    
    MODULE SUMMARY
    
           Module                              code    ro data   rw data
           ------                              ----    -------   -------
        C:\Users\t0273131\MyApp\Jacinto_SDK\ti-processor-sdk-rtos-j784s4-evm-10_01_00_04\pdk_j784s4_10_01_00_25\packages\ti\binary\test_perf_tcm\obj\j784s4\mcu2_0\release\
           rproc.oer5f                         564     168       524328 
           r5f_test_perf_tcm.oer5f             380     289       61544  
           r5f_mpu_j784s4_default.oer5f        0       704       0      
           main.oer5f                          312     193       8      
        +--+-----------------------------------+-------+---------+---------+
           Total:                              1256    1354      585880 
                                                                        
        C:/Users/t0273131/MyApp/Jacinto_SDK/ti-processor-sdk-rtos-j784s4-evm-10_01_00_04/pdk_j784s4_10_01_00_25/packages/ti/board/lib/j784s4_evm/r5f/release/ti.board.aer5f
           board_utils.oer5f                   38      0         0      
        +--+-----------------------------------+-------+---------+---------+
           Total:                              38      0         0      
                                                                        
        C:/Users/t0273131/MyApp/Jacinto_SDK/ti-processor-sdk-rtos-j784s4-evm-10_01_00_04/pdk_j784s4_10_01_00_25/packages/ti/csl/lib/j784s4/r5f/release/ti.csl.aer5f
           interrupt.oer5f                     282     0         7732   
           timer.oer5f                         720     0         0      
           csl_arm_r5.oer5f                    680     0         0      
           csl_vim.oer5f                       412     0         0      
           csl_arm_r5_pmu.oer5f                262     0         0      
           csl_cache.oer5f                     124     0         0      
           csl_r5.oer5f                        24      0         0      
           interrupt_handlers.oer5f            0       0         4      
        +--+-----------------------------------+-------+---------+---------+
           Total:                              2504    0         7736   
                                                                        
        C:/Users/t0273131/MyApp/Jacinto_SDK/ti-processor-sdk-rtos-j784s4-evm-10_01_00_04/pdk_j784s4_10_01_00_25/packages/ti/csl/lib/j784s4/r5f/release/ti.csl.init.aer5f
           startup.oer5f                       578     84        0      
           r5_startup.oer5f                    378     0         0      
           boot.oer5f                          252     0         0      
        +--+-----------------------------------+-------+---------+---------+
           Total:                              1208    84        0      
                                                                        
        C:/Users/t0273131/MyApp/Jacinto_SDK/ti-processor-sdk-rtos-j784s4-evm-10_01_00_04/pdk_j784s4_10_01_00_25/packages/ti/drv/ipc/lib/j784s4/mcu2_0/release/ipc.aer5f
           ipc_soc.oer5f                       736     4890      76     
           ipc_api.oer5f                       10      0         1120   
           mailbox.oer5f                       126     0         0      
           ipc_mailbox.oer5f                   74      51        0      
           ipc_utils.oer5f                     92      7         0      
        +--+-----------------------------------+-------+---------+---------+
           Total:                              1038    4948      1196   
                                                                        
        C:/Users/t0273131/MyApp/Jacinto_SDK/ti-processor-sdk-rtos-j784s4-evm-10_01_00_04/pdk_j784s4_10_01_00_25/packages/ti/drv/sciclient/lib/j784s4/mcu2_0/release/sciclient.aer5f
           sciclient_irq_rm.oer5f              0       7372      988    
           sciclient_rm_irq.oer5f              5086    0         40     
           sciclient.oer5f                     1962    12        97     
           sciclient_fmwSecureProxyMap.oer5f   0       1056      0      
           sciclient_secureproxy.oer5f         348     0         0      
           sciclient_rm.oer5f                  256     0         0      
           sciclient_osal.oer5f                108     0         0      
           sciclient_secureProxyCfg.oer5f      0       0         32     
           csl_sec_proxy.oer5f                 10      0         0      
           sciclient_indirect.oer5f            8       0         0      
           sciclient_rom.oer5f                 0       0         4      
        +--+-----------------------------------+-------+---------+---------+
           Total:                              7778    8440      1161   
                                                                        
        C:/Users/t0273131/MyApp/Jacinto_SDK/ti-processor-sdk-rtos-j784s4-evm-10_01_00_04/pdk_j784s4_10_01_00_25/packages/ti/kernel/lib/j784s4/mcu2_0/release/ti.kernel.freertos.aer5f
           heap_4.oer5f                        570     187       65564  
           port_r5f.oer5f                      1300    321       5532   
           tasks.oer5f                         3998    178       500    
           queue.oer5f                         2524    169       256    
           timers.oer5f                        880     183       396    
           portASM.oer5f                       888     0         0      
           port_Hwi_r5f.oer5f                  718     0         0      
           list.oer5f                          124     0         0      
           port_Hwi_handlers_asm.oer5f         64      0         0      
        +--+-----------------------------------+-------+---------+---------+
           Total:                              11066   1038      72248  
                                                                        
        C:/Users/t0273131/MyApp/Jacinto_SDK/ti-processor-sdk-rtos-j784s4-evm-10_01_00_04/pdk_j784s4_10_01_00_25/packages/ti/osal/lib/freertos/j784s4/r5f/release/ti.osal.aer5f
           SemaphoreP_freertos.oer5f           580     38        31760  
           LoadP_freertos.oer5f                262     0         3873   
           TimerP_nonos.oer5f                  1828    34        1766   
           Arch_util_r5.oer5f                  420     16        327    
           TimerP_default.oer5f                84      190       320    
           TimerP_restrictedTimers.oer5f       0       0         240    
           HwiP_freertos.oer5f                 188     0         0      
           RegisterIntr_nonos.oer5f            162     0         0      
           Utils_freertos.oer5f                86      0         57     
           Core_utils.oer5f                    86      0         0      
           freertos_utils_r5f.oer5f            80      0         0      
           TaskP_freertos.oer5f                48      30        0      
           DebugP_nonos.oer5f                  36      0         4      
           CacheP_nonos_r5.oer5f               12      0         0      
           StartuphooksP_freertos.oer5f        4       0         0      
        +--+-----------------------------------+-------+---------+---------+
           Total:                              3876    308       38347  
                                                                        
        C:\Users\t0273131\MyApp\Jacinto_SDK\ti-processor-sdk-rtos-j784s4-evm-10_01_00_04\ti-cgt-armllvm_3.2.2.LTS\lib\armv7r-ti-none-eabihf/c/libc.a
           _printfi.c.obj                      6540    34        0      
           memcpy32.S.obj                      384     0         0      
           s_scalbn.c.obj                      336     0         0      
           aeabi_ctype.S.obj                   0       257       0      
           vsnprintf.c.obj                     236     0         0      
           copy_decompress_lzss.c.obj          180     0         0      
           memset32.S.obj                      160     0         0      
           _ltoa.c.obj                         136     0         0      
           s_frexp.c.obj                       124     0         0      
           atoi.c.obj                          108     0         0      
           autoinit.c.obj                      96      0         0      
           memccpy.c.obj                       72      0         0      
           args_main.c.obj                     44      0         0      
           wcslen.c.obj                        32      0         0      
           copy_zero_init.c.obj                24      0         0      
           copy_decompress_none.c.obj          20      0         0      
           aeabi_portable.c.obj                12      0         4      
           exit.c.obj                          16      0         0      
        +--+-----------------------------------+-------+---------+---------+
           Total:                              8520    291       4      
                                                                        
        C:\Users\t0273131\MyApp\Jacinto_SDK\ti-processor-sdk-rtos-j784s4-evm-10_01_00_04\ti-cgt-armllvm_3.2.2.LTS\lib\clang/15.0.7/lib/armv7r-ti-none-eabihf/libclang_rt.builtins.a
           udivsi3.S.obj                       464     0         0      
           udivmoddi4.S.obj                    280     0         0      
           floatundisf.S.obj                   84      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:                              948     0         0      
                                                                        
           Heap:                               0       0         32768  
           Stack:                              0       0         16384  
           Linker Generated:                   0       594       0      
        +--+-----------------------------------+-------+---------+---------+
           Grand Total:                        38232   17057     755724 
    
    
    LINKER GENERATED COPY TABLES
    
    __TI_cinit_table @ a2439dac records: 5, size/record: 8, table size: 40
    	.data: load addr=a2439b80, load size=000001fe bytes, run addr=a2436e00, run size=00002d80 bytes, compression=lzss
    	.bss: load addr=a2439d8c, load size=00000008 bytes, run addr=a2400000, run size=0001aae0 bytes, compression=zero_init
    	.ddr_data: load addr=a2439d94, load size=00000008 bytes, run addr=a242b600, run size=00007800 bytes, compression=zero_init
    	.tcmb_data: load addr=a2439d9c, load size=00000008 bytes, run addr=41010080, run size=00007800 bytes, compression=zero_init
    	.tracebuf: load addr=a2439da4, load size=00000008 bytes, run addr=a2100400, run size=00080000 bytes, compression=zero_init
    
    
    LINKER GENERATED HANDLER TABLE
    
    __TI_handler_table @ a2439d80 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
    
    VENEERS
    
    callee name               veneer name
       callee addr  veneer addr  call addr  call info
    --------------  -----------  ---------  ----------------
    ulDoWFI                   $Ven$TA$L$PI$$ulDoWFI
       a2422880     a2423598     a24234a8   ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.vApplicationIdleHook)
    main                      $Ven$AT$L$PI$$main
       a241fa3b     a24235a4     a2422f64   libc.a : args_main.c.obj (.text._args_main)
    ulDoCPSIE                 $Ven$TA$L$PI$$ulDoCPSIE
       a2422888     a24235b0     a2422b7e   ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.vPortExitCritical)
    
    [3 trampolines]
    [3 trampoline calls]
    
    
    FAR CALL TRAMPOLINES
    
    callee name               trampoline name
       callee addr  tramp addr   call addr  call info
    --------------  -----------  ---------  ----------------
    abort                     $Tramp$AA$L$PI$$abort
       a2423534     00000a74     00000a5e   ti.csl.init.aer5f : boot.oer5f (.bootCode)
    _args_main                $Tramp$AA$L$PI$$_args_main
       a2422f48     00000a7c     00000a58   ti.csl.init.aer5f : boot.oer5f (.bootCode)
    __TI_auto_init_nobinit_nopinit  $Tramp$AA$L$PI$$__TI_auto_init_nobinit_nopinit
       a2421d98     00000a84     00000a54   ti.csl.init.aer5f : boot.oer5f (.bootCode)
    _system_pre_init          $Tramp$TT$L$PI$$_system_pre_init
       a2423509     00000a8c     00000a4c   ti.csl.init.aer5f : boot.oer5f (.bootCode)
    vPortDumpExceptionState   $Tramp$TT$L$PI$$vPortDumpExceptionState
       a241f95b     0000057c     000004ce   ti.kernel.freertos.aer5f : port_Hwi_r5f.oer5f (.text.hwi)
                                 0000050e                            : port_Hwi_r5f.oer5f (.text.hwi)
                                 0000054e                            : port_Hwi_r5f.oer5f (.text.hwi)
    CSL_armR5IntrEnableFiq    $Tramp$TT$L$PI$$CSL_armR5IntrEnableFiq
       a241cc03     00000584     0000046a   ti.kernel.freertos.aer5f : port_Hwi_r5f.oer5f (.text.hwi)
                                 00000476                            : port_Hwi_r5f.oer5f (.text.hwi)
    CSL_vimGetFiqVectorAddress  $Tramp$TT$L$PI$$CSL_vimGetFiqVectorAddress
       a24234eb     0000058c     00000426   ti.kernel.freertos.aer5f : port_Hwi_r5f.oer5f (.text.hwi)
    CSL_vimAckIntr            $Tramp$TT$L$PI$$CSL_vimAckIntr
       a242307d     00000594     0000040e   ti.kernel.freertos.aer5f : port_Hwi_r5f.oer5f (.text.hwi)
                                 00000488                            : port_Hwi_r5f.oer5f (.text.hwi)
    CSL_vimClrIntrPending     $Tramp$TT$L$PI$$CSL_vimClrIntrPending
       a2422d53     0000059c     000003de   ti.kernel.freertos.aer5f : port_Hwi_r5f.oer5f (.text.hwi)
                                 00000406                            : port_Hwi_r5f.oer5f (.text.hwi)
                                 0000044a                            : port_Hwi_r5f.oer5f (.text.hwi)
                                 00000480                            : port_Hwi_r5f.oer5f (.text.hwi)
    CSL_vimGetIntrType        $Tramp$TT$L$PI$$CSL_vimGetIntrType
       a2422e43     000005a4     000003d0   ti.kernel.freertos.aer5f : port_Hwi_r5f.oer5f (.text.hwi)
                                 0000043c                            : port_Hwi_r5f.oer5f (.text.hwi)
    CSL_vimGetActivePendingIntr  $Tramp$TT$L$PI$$CSL_vimGetActivePendingIntr
       a2422aab     000005ac     000003c6   ti.kernel.freertos.aer5f : port_Hwi_r5f.oer5f (.text.hwi)
                                 00000432                            : port_Hwi_r5f.oer5f (.text.hwi)
    vPortRestoreTaskContext   $Tramp$AA$L$PI$$vPortRestoreTaskContext
       00000040     a24235b8     a2421282   ti.kernel.freertos.aer5f : port_r5f.oer5f (.text.xPortStartScheduler)
    
    [12 trampolines]
    [21 trampoline calls]
    
    
    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name 
    
    address   name                                                                                       
    -------   ----                                                                                       
    a2422e1d  BOARD_delay                                                                                
    a2423534  C$$EXIT                                                                                    
    a24349f8  CMPEVENT_INTRTR0_outp_0_3_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_544_547                   
    a2435734  CMPEVENT_INTRTR0_outp_0_3_to_COMPUTE_CLUSTER0_GIC500SS_spi_544_547                         
    a243573c  CMPEVENT_INTRTR0_outp_12_15_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_108_111              
    a2435744  CMPEVENT_INTRTR0_outp_4_7_to_MAIN2MCU_PLS_INTRTR0_in_96_99                                 
    a243574c  CMPEVENT_INTRTR0_outp_8_11_to_R5FSS0_CORE0_intr_326_329                                    
    a2435754  CMPEVENT_INTRTR0_outp_8_11_to_R5FSS0_CORE1_intr_326_329                                    
    a243575c  CMPEVENT_INTRTR0_outp_8_11_to_R5FSS1_CORE0_intr_326_329                                    
    a2435764  CMPEVENT_INTRTR0_outp_8_11_to_R5FSS1_CORE1_intr_326_329                                    
    a243576c  CMPEVENT_INTRTR0_outp_8_11_to_R5FSS2_CORE0_intr_326_329                                    
    a2435774  CMPEVENT_INTRTR0_outp_8_11_to_R5FSS2_CORE1_intr_326_329                                    
    a243577c  CODEC0_vpu_wave521cl_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_263_263                           
    a2435784  CODEC1_vpu_wave521cl_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_264_264                           
    a243578c  CPSW1_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_11_11                                           
    a2435794  CPSW1_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_18_18                                          
    a243579c  CPSW1_cpts_genf1_2_2_to_TIMESYNC_INTRTR0_in_19_19                                          
    a24357a4  CPSW1_cpts_sync_3_3_to_TIMESYNC_INTRTR0_in_39_39                                           
    a24357ac  CPSW1_evnt_pend_4_4_to_MAIN2MCU_LVL_INTRTR0_in_72_72                                       
    a24357b4  CPSW1_mdio_pend_5_5_to_MAIN2MCU_LVL_INTRTR0_in_71_71                                       
    a24357bc  CPSW1_stat_pend_6_6_to_MAIN2MCU_LVL_INTRTR0_in_70_70                                       
    a24357c4  CSI_TX_IF0_csi_interrupt_0_0_to_MAIN2MCU_LVL_INTRTR0_in_250_250                            
    a24357cc  CSI_TX_IF0_csi_level_1_1_to_MAIN2MCU_LVL_INTRTR0_in_251_251                                
    a24357d4  CSI_TX_IF1_csi_interrupt_0_0_to_MAIN2MCU_LVL_INTRTR0_in_248_248                            
    a24357dc  CSI_TX_IF1_csi_level_1_1_to_MAIN2MCU_LVL_INTRTR0_in_249_249                                
    a241cd81  CSL_armR5CacheCleanDcacheMva                                                               
    a241cd87  CSL_armR5CacheCleanDcacheSetWay                                                            
    a241cda9  CSL_armR5CacheCleanInvalidateDcacheMva                                                     
    a241cdaf  CSL_armR5CacheCleanInvalidateDcacheSetWay                                                  
    a241cde9  CSL_armR5CacheDisableEcc                                                                   
    a241ccff  CSL_armR5CacheEnableAllCache                                                               
    a241ce19  CSL_armR5CacheEnableAxiAccess                                                              
    a241cc77  CSL_armR5CacheEnableDCache                                                                 
    a241cdd1  CSL_armR5CacheEnableForceWrThru                                                            
    a241cc4f  CSL_armR5CacheEnableICache                                                                 
    a241ccb9  CSL_armR5CacheGetDcacheLineSize                                                            
    a241cc9f  CSL_armR5CacheGetIcacheLineSize                                                            
    a241ccd3  CSL_armR5CacheGetNumSets                                                                   
    a241cce9  CSL_armR5CacheGetNumWays                                                                   
    a2422717  CSL_armR5CacheInv                                                                          
    a241cd3b  CSL_armR5CacheInvalidateAllCache                                                           
    a241cd25  CSL_armR5CacheInvalidateAllDcache                                                          
    a241cd0f  CSL_armR5CacheInvalidateAllIcache                                                          
    a241cd59  CSL_armR5CacheInvalidateDcacheMva                                                          
    a241cd5f  CSL_armR5CacheInvalidateDcacheSetWay                                                       
    a241cd4b  CSL_armR5CacheInvalidateIcacheMva                                                          
    a2422915  CSL_armR5CacheWb                                                                           
    a241ce41  CSL_armR5DisableIrqFiq                                                                     
    a241cbdd  CSL_armR5Dmb                                                                               
    a241cbd1  CSL_armR5Dsb                                                                               
    a241ce53  CSL_armR5EnableIrqFiq                                                                      
    a241cbe3  CSL_armR5FpuEnable                                                                         
    a241ce31  CSL_armR5GetCpsrRegVal                                                                     
    a24231e7  CSL_armR5GetCpuID                                                                          
    a241cc03  CSL_armR5IntrEnableFiq                                                                     
    a241cc1b  CSL_armR5IntrEnableIrq                                                                     
    a241cc33  CSL_armR5IntrEnableVic                                                                     
    a241cbd7  CSL_armR5Isb                                                                               
    000005b9  CSL_armR5MPUCfg                                                                            
    a241f675  CSL_armR5PmuCfg                                                                            
    a241f6c9  CSL_armR5PmuCfgCntr                                                                        
    a241f74f  CSL_armR5PmuClearCntrOverflowStatus                                                        
    a241f6a3  CSL_armR5PmuEnableAllCntrs                                                                 
    a241f6f9  CSL_armR5PmuEnableCntr                                                                     
    a241f6dd  CSL_armR5PmuEnableCntrOverflowIntr                                                         
    a241f6bb  CSL_armR5PmuGetNumCntrs                                                                    
    a241f715  CSL_armR5PmuReadCntr                                                                       
    a241f749  CSL_armR5PmuReadCntrOverflowStatus                                                         
    a241f763  CSL_armR5PmuResetCntrs                                                                     
    a241f755  CSL_armR5PmuResetCycleCnt                                                                  
    a241f72f  CSL_armR5PmuSetCntr                                                                        
    a241ce27  CSL_armR5ReadMpidrReg                                                                      
    0000095f  CSL_armR5SetDLFOBit                                                                        
    000007fb  CSL_armR5StartupCacheEnableAllCache                                                        
    0000084b  CSL_armR5StartupCacheEnableDCache                                                          
    0000080b  CSL_armR5StartupCacheEnableForceWrThru                                                     
    00000823  CSL_armR5StartupCacheEnableICache                                                          
    0000089f  CSL_armR5StartupCacheInvalidateAllCache                                                    
    00000889  CSL_armR5StartupCacheInvalidateAllDcache                                                   
    00000873  CSL_armR5StartupCacheInvalidateAllIcache                                                   
    000008f3  CSL_armR5StartupFpuEnable                                                                  
    00000779  CSL_armR5StartupGetCpuID                                                                   
    0000092f  CSL_armR5StartupIntrEnableFiq                                                              
    00000947  CSL_armR5StartupIntrEnableIrq                                                              
    00000913  CSL_armR5StartupIntrEnableVic                                                              
    000008cf  CSL_armR5StartupMpuCfgRegion                                                               
    000008af  CSL_armR5StartupMpuEnable                                                                  
    000008e9  CSL_armR5StartupReadMpidrReg                                                               
    a24234e1  CSL_secProxyGetDataAddr                                                                    
    000007cd  CSL_startupVimClrIntrPending                                                               
    00000791  CSL_startupVimSetIntrEnable                                                                
    a242307d  CSL_vimAckIntr                                                                             
    a2420e51  CSL_vimCfgIntr                                                                             
    a2422d53  CSL_vimClrIntrPending                                                                      
    a2422aab  CSL_vimGetActivePendingIntr                                                                
    a24234eb  CSL_vimGetFiqVectorAddress                                                                 
    a2422e43  CSL_vimGetIntrType                                                                         
    a2422a3b  CSL_vimSetIntrEnable                                                                       
    a241ea8b  CacheP_Inv                                                                                 
    a242148b  CacheP_wb                                                                                  
    a24357e4  DCC0_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_88_88                                  
    a24357ec  DCC1_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_89_89                                  
    a24357f4  DCC2_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_90_90                                  
    a24357fc  DCC3_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_91_91                                  
    a2435804  DCC4_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_92_92                                  
    a243580c  DCC5_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_93_93                                  
    a2435814  DCC6_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_94_94                                  
    a243581c  DCC7_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_95_95                                  
    a2435824  DCC8_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_208_208                                
    a243582c  DCC9_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_209_209                                
    a2435834  DDR0_ddrss_controller_0_0_to_MAIN2MCU_LVL_INTRTR0_in_10_10                                 
    a243583c  DDR0_ddrss_hs_phy_global_error_1_1_to_MAIN2MCU_LVL_INTRTR0_in_12_12                        
    a2435844  DDR0_ddrss_pll_freq_change_req_2_2_to_MAIN2MCU_LVL_INTRTR0_in_9_9                          
    a243584c  DDR0_ddrss_v2a_other_err_lvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_11_11                          
    a2435854  DDR1_ddrss_controller_0_0_to_MAIN2MCU_LVL_INTRTR0_in_64_64                                 
    a243585c  DDR1_ddrss_hs_phy_global_error_1_1_to_MAIN2MCU_LVL_INTRTR0_in_66_66                        
    a2435864  DDR1_ddrss_pll_freq_change_req_2_2_to_MAIN2MCU_LVL_INTRTR0_in_63_63                        
    a243586c  DDR1_ddrss_v2a_other_err_lvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_65_65                          
    a2435874  DDR2_ddrss_controller_0_0_to_MAIN2MCU_LVL_INTRTR0_in_201_201                               
    a243587c  DDR2_ddrss_hs_phy_global_error_1_1_to_MAIN2MCU_LVL_INTRTR0_in_203_203                      
    a2435884  DDR2_ddrss_pll_freq_change_req_2_2_to_MAIN2MCU_LVL_INTRTR0_in_200_200                      
    a243588c  DDR2_ddrss_v2a_other_err_lvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_202_202                        
    a2435894  DDR3_ddrss_controller_0_0_to_MAIN2MCU_LVL_INTRTR0_in_149_149                               
    a243589c  DDR3_ddrss_hs_phy_global_error_1_1_to_MAIN2MCU_LVL_INTRTR0_in_151_151                      
    a24358a4  DDR3_ddrss_pll_freq_change_req_2_2_to_MAIN2MCU_LVL_INTRTR0_in_148_148                      
    a24358ac  DDR3_ddrss_v2a_other_err_lvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_150_150                        
    a24358b4  DMPAC0_INTD_0_system_intr_level_0_1_to_MAIN2MCU_LVL_INTRTR0_in_268_269                     
    a24358bc  DSS0_dss_inst0_dispc_func_irq_proc0_0_0_to_MAIN2MCU_LVL_INTRTR0_in_226_226                 
    a24358c4  DSS0_dss_inst0_dispc_func_irq_proc1_1_1_to_MAIN2MCU_LVL_INTRTR0_in_227_227                 
    a24358cc  DSS0_dss_inst0_dispc_safety_error_irq_proc0_2_2_to_MAIN2MCU_LVL_INTRTR0_in_230_230         
    a24358d4  DSS0_dss_inst0_dispc_safety_error_irq_proc1_3_3_to_MAIN2MCU_LVL_INTRTR0_in_231_231         
    a24358dc  DSS0_dss_inst0_dispc_secure_irq_proc0_4_4_to_MAIN2MCU_LVL_INTRTR0_in_228_228               
    a24358e4  DSS0_dss_inst0_dispc_secure_irq_proc1_5_5_to_MAIN2MCU_LVL_INTRTR0_in_229_229               
    a24358ec  DSS_DSI0_dsi_0_func_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_224_224                            
    a24358f4  DSS_DSI1_dsi_0_func_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_225_225                            
    a24358fc  DSS_EDP0_intr_0_3_to_MAIN2MCU_LVL_INTRTR0_in_238_241                                       
    a2423411  DebugP_exceptionLog                                                                        
    a241d73b  DebugP_log1                                                                                
    a2435904  ECAP0_ecap_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_17_17                                        
    a243590c  ECAP1_ecap_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_18_18                                        
    a2435914  ECAP2_ecap_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_19_19                                        
    a243591c  ELM0_elm_porocpsinterrupt_lvl_0_0_to_MAIN2MCU_LVL_INTRTR0_in_7_7                           
    a2435924  EPWM0_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_2_2                                        
    a243592c  EPWM0_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_8_8                                     
    a2435934  EPWM1_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_3_3                                        
    a243593c  EPWM1_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_9_9                                     
    a2435944  EPWM2_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_4_4                                        
    a243594c  EPWM2_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_10_10                                   
    a2435954  EPWM3_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_5_5                                        
    a243595c  EPWM3_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_11_11                                   
    a2435964  EPWM4_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_6_6                                        
    a243596c  EPWM4_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_12_12                                   
    a2435974  EPWM5_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_7_7                                        
    a243597c  EPWM5_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_13_13                                   
    a2435984  EQEP0_eqep_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_14_14                                        
    a243598c  EQEP1_eqep_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_15_15                                        
    a2435994  EQEP2_eqep_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_16_16                                        
    a241a988  FaultyGPR                                                                                  
    a241aad0  FaultyLR                                                                                   
    a241aad4  FaultySP                                                                                   
    a24399fc  FreeRTOS_errno                                                                             
    a243599c  GPIO0_gpio_bank_0_7_to_GPIOMUX_INTRTR0_in_145_152                                          
    a24359a4  GPIO2_gpio_bank_0_7_to_GPIOMUX_INTRTR0_in_154_161                                          
    a24359ac  GPIO4_gpio_bank_0_7_to_GPIOMUX_INTRTR0_in_163_170                                          
    a24359b4  GPIO6_gpio_bank_0_7_to_GPIOMUX_INTRTR0_in_172_179                                          
    a24359bc  GPIOMUX_INTRTR0_outp_0_15_to_R5FSS0_CORE0_intr_396_411                                     
    a24359c4  GPIOMUX_INTRTR0_outp_0_15_to_R5FSS0_CORE1_intr_396_411                                     
    a24359cc  GPIOMUX_INTRTR0_outp_0_15_to_R5FSS1_CORE0_intr_396_411                                     
    a24359d4  GPIOMUX_INTRTR0_outp_0_15_to_R5FSS1_CORE1_intr_396_411                                     
    a24359dc  GPIOMUX_INTRTR0_outp_0_15_to_R5FSS2_CORE0_intr_396_411                                     
    a24359e4  GPIOMUX_INTRTR0_outp_0_15_to_R5FSS2_CORE1_intr_396_411                                     
    a24359ec  GPIOMUX_INTRTR0_outp_0_31_to_MAIN2MCU_PLS_INTRTR0_in_64_95                                 
    a24359f4  GPIOMUX_INTRTR0_outp_0_7_to_ESM0_esm_pls_event0_664_671                                    
    a24359fc  GPIOMUX_INTRTR0_outp_0_7_to_ESM0_esm_pls_event1_672_679                                    
    a2435a04  GPIOMUX_INTRTR0_outp_0_7_to_ESM0_esm_pls_event2_680_687                                    
    a2435a0c  GPIOMUX_INTRTR0_outp_16_31_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_116_131               
    a2435a14  GPIOMUX_INTRTR0_outp_16_31_to_R5FSS0_CORE0_intr_176_191                                    
    a2435a1c  GPIOMUX_INTRTR0_outp_16_31_to_R5FSS0_CORE1_intr_176_191                                    
    a2435a24  GPIOMUX_INTRTR0_outp_16_31_to_R5FSS1_CORE0_intr_176_191                                    
    a2435a2c  GPIOMUX_INTRTR0_outp_16_31_to_R5FSS1_CORE1_intr_176_191                                    
    a2435a34  GPIOMUX_INTRTR0_outp_16_31_to_R5FSS2_CORE0_intr_176_191                                    
    a2435a3c  GPIOMUX_INTRTR0_outp_16_31_to_R5FSS2_CORE1_intr_176_191                                    
    a2435a44  GPIOMUX_INTRTR0_outp_8_63_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_392_447                   
    a2435a4c  GPIOMUX_INTRTR0_outp_8_63_to_COMPUTE_CLUSTER0_GIC500SS_spi_392_447                         
    a2435a54  GPMC0_gpmc_sinterrupt_0_0_to_MAIN2MCU_LVL_INTRTR0_in_8_8                                   
    a2435a5c  GTC0_gtc_push_event_0_0_to_TIMESYNC_INTRTR0_in_1_1                                         
    00000a65  HF                                                                                         
    a24231ff  HwiP_Params_init                                                                           
    a2422ccd  HwiP_clearInterrupt                                                                        
    a2422c49  HwiP_create                                                                                
    00000244  HwiP_data_abort_handler                                                                    
    0000053f  HwiP_data_abort_handler_c                                                                  
    a2422edb  HwiP_delete                                                                                
    a2422fb5  HwiP_disable                                                                               
    a2423567  HwiP_disableInterrupt                                                                      
    a242356b  HwiP_enableInterrupt                                                                       
    0000031c  HwiP_fiq_handler                                                                           
    00000417  HwiP_fiq_handler_c                                                                         
    0000010c  HwiP_irq_handler                                                                           
    000003b1  HwiP_irq_handler_c                                                                         
    000002ec  HwiP_prefetch_abort_handler                                                                
    000004ff  HwiP_prefetch_abort_handler_c                                                              
    00000491  HwiP_reserved_handler                                                                      
    a2422e69  HwiP_restore                                                                               
    00000084  HwiP_svc_handler                                                                           
    0000034c  HwiP_undefined_handler                                                                     
    000004bf  HwiP_undefined_handler_c                                                                   
    a2435a64  I2C0_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_56_56                                       
    a2435a6c  I2C1_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_57_57                                       
    a2435a74  I2C2_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_58_58                                       
    a2435a7c  I2C3_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_59_59                                       
    a2435a84  I2C4_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_60_60                                       
    a2435a8c  I2C5_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_61_61                                       
    a2435a94  I2C6_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_62_62                                       
    a2421c8f  Intc_Init                                                                                  
    a2422d29  Intc_IntClrPend                                                                            
    a24230f5  Intc_IntDisable                                                                            
    a2423111  Intc_IntEnable                                                                             
    a2422fd7  Intc_IntPrioritySet                                                                        
    a24209ab  Intc_IntRegister                                                                           
    a2423217  Intc_IntSetSrcType                                                                         
    a2421df1  Intc_IntUnregister                                                                         
    a2423421  Intc_SystemDisable                                                                         
    a2423381  Intc_SystemEnable                                                                          
    a242356f  Intc_SystemRestore                                                                         
    a2420f6b  Ipc_getIntNumRange                                                                         
    a24232d7  Ipc_getMailboxBaseAddr                                                                     
    a2422305  Ipc_getMailboxInfoRx                                                                       
    a242234d  Ipc_getMailboxInfoTx                                                                       
    a2422a73  Ipc_getMailboxIntrRouterCfg                                                                
    a2421ef5  Ipc_sciclientIrqRelease                                                                    
    a2421acd  Ipc_sciclientIrqSet                                                                        
    a241fe57  Ipc_setCoreEventId                                                                         
    a2435a9c  J7AEP_GPU_BXS464_WRAP0_GPU_SS_0_os_irq_0_3_to_MAIN2MCU_LVL_INTRTR0_in_312_315              
    a241fbe7  LoadP_update                                                                               
    a2435aa4  MAIN2MCU_LVL_INTRTR0_outl_0_63_to_MCU_R5FSS0_CORE0_intr_160_223                            
    a2435aac  MAIN2MCU_LVL_INTRTR0_outl_0_63_to_MCU_R5FSS0_CORE1_intr_160_223                            
    a2435ab4  MAIN2MCU_LVL_INTRTR0_outl_56_63_to_WKUP_HSM0_nvic_64_71                                    
    a2435abc  MAIN2MCU_PLS_INTRTR0_outp_0_47_to_MCU_R5FSS0_CORE0_intr_224_271                            
    a2435ac4  MAIN2MCU_PLS_INTRTR0_outp_0_47_to_MCU_R5FSS0_CORE1_intr_224_271                            
    a2435acc  MAIN2MCU_PLS_INTRTR0_outp_40_47_to_WKUP_HSM0_nvic_72_79                                    
    a2435ad4  MCAN0_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_18_18                  
    a2435adc  MCAN0_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_16_17                             
    a2435ae4  MCAN10_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_298_298               
    a2435aec  MCAN10_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_296_297                          
    a2435af4  MCAN11_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_301_301               
    a2435afc  MCAN11_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_299_300                          
    a2435b04  MCAN12_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_304_304               
    a2435b0c  MCAN12_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_302_303                          
    a2435b14  MCAN13_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_307_307               
    a2435b1c  MCAN13_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_305_306                          
    a2435b24  MCAN14_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_162_162               
    a2435b2c  MCAN14_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_160_161                          
    a2435b34  MCAN15_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_165_165               
    a2435b3c  MCAN15_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_163_164                          
    a2435b44  MCAN16_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_172_172               
    a2435b4c  MCAN16_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_170_171                          
    a2435b54  MCAN17_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_175_175               
    a2435b5c  MCAN17_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_173_174                          
    a2435b64  MCAN1_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_21_21                  
    a2435b6c  MCAN1_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_19_20                             
    a2435b74  MCAN2_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_24_24                  
    a2435b7c  MCAN2_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_22_23                             
    a2435b84  MCAN3_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_27_27                  
    a2435b8c  MCAN3_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_25_26                             
    a2435b94  MCAN4_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_280_280                
    a2435b9c  MCAN4_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_278_279                           
    a2435ba4  MCAN5_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_283_283                
    a2435bac  MCAN5_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_281_282                           
    a2435bb4  MCAN6_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_286_286                
    a2435bbc  MCAN6_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_284_285                           
    a2435bc4  MCAN7_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_289_289                
    a2435bcc  MCAN7_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_287_288                           
    a2435bd4  MCAN8_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_292_292                
    a2435bdc  MCAN8_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_290_291                           
    a2435be4  MCAN9_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_295_295                
    a2435bec  MCAN9_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_293_294                           
    a2435bf4  MCASP0_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_177_177                                
    a2435bfc  MCASP0_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_176_176                               
    a2435c04  MCASP1_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_179_179                                
    a2435c0c  MCASP1_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_178_178                               
    a2435c14  MCASP2_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_181_181                                
    a2435c1c  MCASP2_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_180_180                               
    a2435c24  MCASP3_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_183_183                                
    a2435c2c  MCASP3_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_182_182                               
    a2435c34  MCASP4_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_185_185                                
    a2435c3c  MCASP4_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_184_184                               
    a2435c44  MCSPI0_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_48_48                                       
    a2435c4c  MCSPI1_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_49_49                                       
    a2435c54  MCSPI2_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_50_50                                       
    a2435c5c  MCSPI3_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_51_51                                       
    a2435c64  MCSPI4_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_52_52                                       
    a2435c6c  MCSPI5_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_53_53                                       
    a2435c74  MCSPI6_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_54_54                                       
    a2435c7c  MCSPI7_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_55_55                                       
    a2435c84  MCU_CPSW0_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_10_10                                       
    a2435c8c  MCU_CPSW0_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_16_16                                      
    a2435c94  MCU_CPSW0_cpts_genf1_2_2_to_TIMESYNC_INTRTR0_in_17_17                                      
    a2435c9c  MCU_CPSW0_cpts_sync_3_3_to_TIMESYNC_INTRTR0_in_38_38                                       
    a2435ca4  MCU_NAVSS0_INTR_ROUTER_0_outl_intr_0_23_to_MCU_R5FSS0_CORE0_intr_64_87                     
    a2435cac  MCU_NAVSS0_INTR_ROUTER_0_outl_intr_24_31_to_WKUP_HSM0_nvic_48_55                           
    a2435cb4  MCU_NAVSS0_INTR_ROUTER_0_outl_intr_32_55_to_MCU_R5FSS0_CORE1_intr_64_87                    
    a2435cbc  MCU_NAVSS0_INTR_ROUTER_0_outl_intr_56_63_to_WKUP_HSM0_nvic_56_63                           
    a2435cc4  MCU_NAVSS0_MCRC_0_dma_event_intr_0_3_to_MCU_NAVSS0_INTR_ROUTER_0_in_intr_256_259           
    a2435ccc  MCU_NAVSS0_MCRC_0_dma_event_intr_0_3_to_MCU_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_0_3     
    a2435cd4  MCU_NAVSS0_MCRC_0_intaggr_vintr_pend_4_4_to_MCU_NAVSS0_INTR_ROUTER_0_in_intr_260_260       
    a2435cdc  MCU_NAVSS0_UDMASS_INTA_0_intaggr_vintr_pend_0_255_to_MCU_NAVSS0_INTR_ROUTER_0_in_intr_0_255
    a2435ce4  MMCSD0_emmcss_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_28_28                                    
    a2435cec  MMCSD1_emmcsdss_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_29_29                                  
    a2423393  Mailbox_clrNewMsgStatus                                                                    
    a24233a5  Mailbox_disableNewMsgInt                                                                   
    a24233b7  Mailbox_enableNewMsgInt                                                                    
    a24232ed  Mailbox_getMessage                                                                         
    a24234f5  Mailbox_getMessageCount                                                                    
    a242332f  Mailbox_getRawNewMsgStatus                                                                 
    a24222bb  Mailbox_plugInterrupt                                                                      
    a2423343  Mailbox_sendMessage                                                                        
    a2435cf4  NAVSS0_CPTS_0_event_pend_intr_0_0_to_NAVSS0_INTR_0_in_intr_391_391                         
    a2435cfc  NAVSS0_INTR_0_outl_intr_0_63_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_64_127                 
    a2435d04  NAVSS0_INTR_0_outl_intr_0_63_to_COMPUTE_CLUSTER0_GIC500SS_spi_64_127                       
    a2435d0c  NAVSS0_INTR_0_outl_intr_128_191_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_672_735             
    a2435d14  NAVSS0_INTR_0_outl_intr_128_191_to_COMPUTE_CLUSTER0_GIC500SS_spi_672_735                   
    a2435d1c  NAVSS0_INTR_0_outl_intr_192_223_to_R5FSS0_CORE0_intr_224_255                               
    a2435d24  NAVSS0_INTR_0_outl_intr_224_255_to_R5FSS0_CORE1_intr_224_255                               
    a2435d2c  NAVSS0_INTR_0_outl_intr_256_287_to_R5FSS1_CORE0_intr_224_255                               
    a2435d34  NAVSS0_INTR_0_outl_intr_288_319_to_R5FSS1_CORE1_intr_224_255                               
    a2435d3c  NAVSS0_INTR_0_outl_intr_320_351_to_R5FSS2_CORE0_intr_224_255                               
    a2435d44  NAVSS0_INTR_0_outl_intr_352_383_to_R5FSS2_CORE1_intr_224_255                               
    a2435d4c  NAVSS0_INTR_0_outl_intr_400_407_to_MCU_R5FSS0_CORE0_intr_376_383                           
    a2435d54  NAVSS0_INTR_0_outl_intr_400_407_to_MCU_R5FSS0_CORE1_intr_376_383                           
    a2435d5c  NAVSS0_INTR_0_outl_intr_408_439_to_vusr_dual0_v0_vusr_in_int_0_31                          
    a2435d64  NAVSS0_INTR_0_outl_intr_408_439_to_vusr_dual0_v1_vusr_in_int_32_63                         
    a2435d6c  NAVSS0_INTR_0_outl_intr_64_127_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_448_511              
    a2435d74  NAVSS0_INTR_0_outl_intr_64_127_to_COMPUTE_CLUSTER0_GIC500SS_spi_448_511                    
    a2435d7c  NAVSS0_MAILBOX1_0_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_484_487                           
    a2435d84  NAVSS0_MAILBOX1_0_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_4_7              
    a2435d8c  NAVSS0_MAILBOX1_10_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_444_447                          
    a2435d94  NAVSS0_MAILBOX1_10_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_44_47           
    a2435d9c  NAVSS0_MAILBOX1_11_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_440_443                          
    a2435da4  NAVSS0_MAILBOX1_11_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_48_51           
    a2435dac  NAVSS0_MAILBOX1_1_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_480_483                           
    a2435db4  NAVSS0_MAILBOX1_1_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_8_11             
    a2435dbc  NAVSS0_MAILBOX1_2_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_476_479                           
    a2435dc4  NAVSS0_MAILBOX1_2_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_12_15            
    a2435dcc  NAVSS0_MAILBOX1_3_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_472_475                           
    a2435dd4  NAVSS0_MAILBOX1_3_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_16_19            
    a2435ddc  NAVSS0_MAILBOX1_4_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_468_471                           
    a2435de4  NAVSS0_MAILBOX1_4_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_20_23            
    a2435dec  NAVSS0_MAILBOX1_5_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_464_467                           
    a2435df4  NAVSS0_MAILBOX1_5_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_24_27            
    a2435dfc  NAVSS0_MAILBOX1_6_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_460_463                           
    a2435e04  NAVSS0_MAILBOX1_6_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_28_31            
    a2435e0c  NAVSS0_MAILBOX1_7_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_456_459                           
    a2435e14  NAVSS0_MAILBOX1_7_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_32_35            
    a2435e1c  NAVSS0_MAILBOX1_8_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_452_455                           
    a2435e24  NAVSS0_MAILBOX1_8_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_36_39            
    a2435e2c  NAVSS0_MAILBOX1_9_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_448_451                           
    a2435e34  NAVSS0_MAILBOX1_9_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_40_43            
    a2435e3c  NAVSS0_MAILBOX_0_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_436_439                            
    a2435e44  NAVSS0_MAILBOX_0_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_52_55             
    a2435e4c  NAVSS0_MAILBOX_10_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_396_399                           
    a2435e54  NAVSS0_MAILBOX_10_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_92_95            
    a2435e5c  NAVSS0_MAILBOX_11_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_392_395                           
    a2435e64  NAVSS0_MAILBOX_11_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_96_99            
    a2435e6c  NAVSS0_MAILBOX_1_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_432_435                            
    a2435e74  NAVSS0_MAILBOX_1_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_56_59             
    a2435e7c  NAVSS0_MAILBOX_2_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_428_431                            
    a2435e84  NAVSS0_MAILBOX_2_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_60_63             
    a2435e8c  NAVSS0_MAILBOX_3_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_424_427                            
    a2435e94  NAVSS0_MAILBOX_3_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_64_67             
    a2435e9c  NAVSS0_MAILBOX_4_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_420_423                            
    a2435ea4  NAVSS0_MAILBOX_4_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_68_71             
    a2435eac  NAVSS0_MAILBOX_5_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_416_419                            
    a2435eb4  NAVSS0_MAILBOX_5_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_72_75             
    a2435ebc  NAVSS0_MAILBOX_6_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_412_415                            
    a2435ec4  NAVSS0_MAILBOX_6_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_76_79             
    a2435ecc  NAVSS0_MAILBOX_7_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_408_411                            
    a2435ed4  NAVSS0_MAILBOX_7_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_80_83             
    a2435edc  NAVSS0_MAILBOX_8_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_404_407                            
    a2435ee4  NAVSS0_MAILBOX_8_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_84_87             
    a2435eec  NAVSS0_MAILBOX_9_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_400_403                            
    a2435ef4  NAVSS0_MAILBOX_9_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_88_91             
    a2435efc  NAVSS0_MCRC_0_dma_event_intr_0_3_to_NAVSS0_INTR_0_in_intr_384_387                          
    a2435f04  NAVSS0_MCRC_0_dma_event_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_0_3             
    a2435f0c  NAVSS0_MCRC_0_intaggr_vintr_pend_4_4_to_NAVSS0_INTR_0_in_intr_388_388                      
    a2435f14  NAVSS0_MODSS_INTA_0_intaggr_vintr_pend_0_63_to_NAVSS0_INTR_0_in_intr_320_383               
    a2435f1c  NAVSS0_MODSS_INTA_1_intaggr_vintr_pend_0_63_to_NAVSS0_INTR_0_in_intr_256_319               
    a2435f24  NAVSS0_PVU_0_exp_intr_0_0_to_NAVSS0_INTR_0_in_intr_489_489                                 
    a2435f2c  NAVSS0_PVU_1_exp_intr_0_0_to_NAVSS0_INTR_0_in_intr_488_488                                 
    a2435f34  NAVSS0_UDMASS_INTA_0_intaggr_vintr_pend_0_255_to_NAVSS0_INTR_0_in_intr_0_255               
    a2435f3c  NAVSS0_cpts0_comp_0_0_to_CMPEVENT_INTRTR0_in_8_8                                           
    a2435f44  NAVSS0_cpts0_genf0_1_1_to_TIMESYNC_INTRTR0_in_4_4                                          
    a2435f4c  NAVSS0_cpts0_genf1_2_2_to_TIMESYNC_INTRTR0_in_5_5                                          
    a2435f54  NAVSS0_cpts0_genf2_3_3_to_TIMESYNC_INTRTR0_in_6_6                                          
    a2435f5c  NAVSS0_cpts0_genf3_4_4_to_TIMESYNC_INTRTR0_in_7_7                                          
    a2435f64  NAVSS0_cpts0_genf4_5_5_to_TIMESYNC_INTRTR0_in_8_8                                          
    a2435f6c  NAVSS0_cpts0_genf5_6_6_to_TIMESYNC_INTRTR0_in_9_9                                          
    a2435f74  NAVSS0_cpts0_sync_7_7_to_TIMESYNC_INTRTR0_in_36_36                                         
    a241efb1  OsalArch_HwiPCreate                                                                        
    a2422c75  OsalArch_HwiPDelete                                                                        
    a242353d  OsalArch_clearInterrupt                                                                    
    a2423543  OsalArch_disableInterrupt                                                                  
    a2423549  OsalArch_enableInterrupt                                                                   
    a2423573  OsalArch_globalDisableInterrupt                                                            
    a2423577  OsalArch_globalRestoreInterrupt                                                            
    a242354f  Osal_ClearInterrupt                                                                        
    a2439b24  Osal_DebugP_Assert_Val                                                                     
    a24233c9  Osal_DebugP_assert                                                                         
    a24233db  Osal_DebugP_assert_fcn                                                                     
    a2423431  Osal_DeleteInterrupt                                                                       
    a2423555  Osal_DisableInterrupt                                                                      
    a242355b  Osal_EnableInterrupt                                                                       
    a2421a15  Osal_RegisterInterrupt                                                                     
    a2422eff  Osal_RegisterInterrupt_initParams                                                          
    a242312d  Osal_delay                                                                                 
    a2439a70  Osal_exptnLogFxn                                                                           
    a2421e49  Osal_getCoreId                                                                             
    a2422d7b  Osal_getThreadType                                                                         
    a2423357  Osal_isInAbortContext                                                                      
    a2439760  Osal_mainMcuRestrictedTimerID                                                              
    a24397d8  Osal_mcuRestrictedTimerID                                                                  
    a2435f7c  PCIE0_pcie_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_4_4                                        
    a2435f84  PCIE0_pcie_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_10_10                                     
    a2435f8c  PCIE0_pcie_cpts_hw1_push_2_2_to_TIMESYNC_INTRTR0_in_20_20                                  
    a2435f94  PCIE0_pcie_cpts_pend_3_3_to_MAIN2MCU_LVL_INTRTR0_in_69_69                                  
    a2435f9c  PCIE0_pcie_cpts_sync_4_4_to_TIMESYNC_INTRTR0_in_32_32                                      
    a2435fa4  PCIE0_pcie_downstream_pulse_5_5_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_345_345             
    a2435fac  PCIE0_pcie_downstream_pulse_5_5_to_MAIN2MCU_PLS_INTRTR0_in_33_33                           
    a2435fb4  PCIE0_pcie_dpa_pulse_6_6_to_MAIN2MCU_PLS_INTRTR0_in_20_20                                  
    a2435fbc  PCIE0_pcie_error_pulse_7_7_to_MAIN2MCU_PLS_INTRTR0_in_35_35                                
    a2435fc4  PCIE0_pcie_flr_pulse_8_8_to_MAIN2MCU_PLS_INTRTR0_in_34_34                                  
    a2435fcc  PCIE0_pcie_hot_reset_pulse_9_9_to_MAIN2MCU_PLS_INTRTR0_in_39_39                            
    a2435fd4  PCIE0_pcie_legacy_pulse_10_10_to_MAIN2MCU_PLS_INTRTR0_in_32_32                             
    a2435fdc  PCIE0_pcie_link_state_pulse_11_11_to_MAIN2MCU_PLS_INTRTR0_in_36_36                         
    a2435fe4  PCIE0_pcie_local_level_12_12_to_MAIN2MCU_LVL_INTRTR0_in_68_68                              
    a2435fec  PCIE0_pcie_phy_level_13_13_to_MAIN2MCU_LVL_INTRTR0_in_67_67                                
    a2435ff4  PCIE0_pcie_ptm_valid_pulse_14_14_to_MAIN2MCU_PLS_INTRTR0_in_38_38                          
    a2435ffc  PCIE0_pcie_pwr_state_pulse_15_15_to_MAIN2MCU_PLS_INTRTR0_in_37_37                          
    a2436004  PCIE1_pcie_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_5_5                                        
    a243600c  PCIE1_pcie_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_11_11                                     
    a2436014  PCIE1_pcie_cpts_hw1_push_2_2_to_TIMESYNC_INTRTR0_in_21_21                                  
    a243601c  PCIE1_pcie_cpts_pend_3_3_to_MAIN2MCU_LVL_INTRTR0_in_75_75                                  
    a2436024  PCIE1_pcie_cpts_sync_4_4_to_TIMESYNC_INTRTR0_in_33_33                                      
    a243602c  PCIE1_pcie_downstream_pulse_5_5_to_MAIN2MCU_PLS_INTRTR0_in_41_41                           
    a2436034  PCIE1_pcie_dpa_pulse_6_6_to_MAIN2MCU_PLS_INTRTR0_in_21_21                                  
    a243603c  PCIE1_pcie_error_pulse_7_7_to_MAIN2MCU_PLS_INTRTR0_in_43_43                                
    a2436044  PCIE1_pcie_flr_pulse_8_8_to_MAIN2MCU_PLS_INTRTR0_in_42_42                                  
    a243604c  PCIE1_pcie_hot_reset_pulse_9_9_to_MAIN2MCU_PLS_INTRTR0_in_47_47                            
    a2436054  PCIE1_pcie_legacy_pulse_10_10_to_MAIN2MCU_PLS_INTRTR0_in_40_40                             
    a243605c  PCIE1_pcie_link_state_pulse_11_11_to_MAIN2MCU_PLS_INTRTR0_in_44_44                         
    a2436064  PCIE1_pcie_local_level_12_12_to_MAIN2MCU_LVL_INTRTR0_in_74_74                              
    a243606c  PCIE1_pcie_phy_level_13_13_to_MAIN2MCU_LVL_INTRTR0_in_73_73                                
    a2436074  PCIE1_pcie_ptm_valid_pulse_14_14_to_MAIN2MCU_PLS_INTRTR0_in_46_46                          
    a243607c  PCIE1_pcie_pwr_state_pulse_15_15_to_MAIN2MCU_PLS_INTRTR0_in_45_45                          
    a2436084  PCIE2_pcie_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_6_6                                        
    a243608c  PCIE2_pcie_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_12_12                                     
    a2436094  PCIE2_pcie_cpts_hw1_push_2_2_to_TIMESYNC_INTRTR0_in_22_22                                  
    a243609c  PCIE2_pcie_cpts_pend_3_3_to_MAIN2MCU_LVL_INTRTR0_in_78_78                                  
    a24360a4  PCIE2_pcie_cpts_sync_4_4_to_TIMESYNC_INTRTR0_in_34_34                                      
    a24360ac  PCIE2_pcie_downstream_pulse_5_5_to_MAIN2MCU_PLS_INTRTR0_in_49_49                           
    a24360b4  PCIE2_pcie_dpa_pulse_6_6_to_MAIN2MCU_PLS_INTRTR0_in_22_22                                  
    a24360bc  PCIE2_pcie_error_pulse_7_7_to_MAIN2MCU_PLS_INTRTR0_in_51_51                                
    a24360c4  PCIE2_pcie_flr_pulse_8_8_to_MAIN2MCU_PLS_INTRTR0_in_50_50                                  
    a24360cc  PCIE2_pcie_hot_reset_pulse_9_9_to_MAIN2MCU_PLS_INTRTR0_in_55_55                            
    a24360d4  PCIE2_pcie_legacy_pulse_10_10_to_MAIN2MCU_PLS_INTRTR0_in_48_48                             
    a24360dc  PCIE2_pcie_link_state_pulse_11_11_to_MAIN2MCU_PLS_INTRTR0_in_52_52                         
    a24360e4  PCIE2_pcie_local_level_12_12_to_MAIN2MCU_LVL_INTRTR0_in_77_77                              
    a24360ec  PCIE2_pcie_phy_level_13_13_to_MAIN2MCU_LVL_INTRTR0_in_76_76                                
    a24360f4  PCIE2_pcie_ptm_valid_pulse_14_14_to_MAIN2MCU_PLS_INTRTR0_in_54_54                          
    a24360fc  PCIE2_pcie_pwr_state_pulse_15_15_to_MAIN2MCU_PLS_INTRTR0_in_53_53                          
    a2436104  PCIE3_pcie_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_7_7                                        
    a243610c  PCIE3_pcie_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_13_13                                     
    a2436114  PCIE3_pcie_cpts_hw1_push_2_2_to_TIMESYNC_INTRTR0_in_23_23                                  
    a243611c  PCIE3_pcie_cpts_pend_3_3_to_MAIN2MCU_LVL_INTRTR0_in_81_81                                  
    a2436124  PCIE3_pcie_cpts_sync_4_4_to_TIMESYNC_INTRTR0_in_35_35                                      
    a243612c  PCIE3_pcie_downstream_pulse_5_5_to_MAIN2MCU_PLS_INTRTR0_in_57_57                           
    a2436134  PCIE3_pcie_dpa_pulse_6_6_to_MAIN2MCU_PLS_INTRTR0_in_23_23                                  
    a243613c  PCIE3_pcie_error_pulse_7_7_to_MAIN2MCU_PLS_INTRTR0_in_59_59                                
    a2436144  PCIE3_pcie_flr_pulse_8_8_to_MAIN2MCU_PLS_INTRTR0_in_58_58                                  
    a243614c  PCIE3_pcie_hot_reset_pulse_9_9_to_MAIN2MCU_PLS_INTRTR0_in_63_63                            
    a2436154  PCIE3_pcie_legacy_pulse_10_10_to_MAIN2MCU_PLS_INTRTR0_in_56_56                             
    a243615c  PCIE3_pcie_link_state_pulse_11_11_to_MAIN2MCU_PLS_INTRTR0_in_60_60                         
    a2436164  PCIE3_pcie_local_level_12_12_to_MAIN2MCU_LVL_INTRTR0_in_80_80                              
    a243616c  PCIE3_pcie_phy_level_13_13_to_MAIN2MCU_LVL_INTRTR0_in_79_79                                
    a2436174  PCIE3_pcie_ptm_valid_pulse_14_14_to_MAIN2MCU_PLS_INTRTR0_in_62_62                          
    a243617c  PCIE3_pcie_pwr_state_pulse_15_15_to_MAIN2MCU_PLS_INTRTR0_in_61_61                          
    a2436184  SA2_UL0_sa_ul_pka_0_0_to_MAIN2MCU_LVL_INTRTR0_in_5_5                                       
    a243618c  SA2_UL0_sa_ul_trng_1_1_to_MAIN2MCU_LVL_INTRTR0_in_4_4                                      
    a242213b  Sciclient_abiCheck                                                                         
    a2423165  Sciclient_configPrmsInit                                                                   
    a2421b27  Sciclient_deinit                                                                           
    a24221d7  Sciclient_flush                                                                            
    a2422ae1  Sciclient_getCurrentContext                                                                
    a241dc39  Sciclient_init                                                                             
    a2422223  Sciclient_osalAcquireSecureProxyAcess                                                      
    a242301b  Sciclient_osalReleaseSecureProxyAcess                                                      
    a2422ff9  Sciclient_readThread32                                                                     
    a242322f  Sciclient_readThreadCount                                                                  
    a241d569  Sciclient_rmClearInterruptRoute                                                            
    a2422045  Sciclient_rmGetResourceRange                                                               
    a2423303  Sciclient_rmIrqRelease                                                                     
    a2422395  Sciclient_rmIrqReleaseRaw                                                                  
    a242357b  Sciclient_rmIrqSet                                                                         
    a24223dd  Sciclient_rmIrqSetRaw                                                                      
    a242357f  Sciclient_rmIrqTranslateIrOutput                                                           
    a241d0f1  Sciclient_rmProgramInterruptRoute                                                          
    a2421189  Sciclient_rmTranslateIntOutput                                                             
    a2421105  Sciclient_sendMessage                                                                      
    a242351d  Sciclient_service                                                                          
    a242090d  Sciclient_serviceGetThreadIds                                                              
    a24205d7  Sciclient_servicePrepareHeader                                                             
    a241c5a5  Sciclient_serviceSecureProxy                                                               
    a24233ed  Sciclient_threadStatusReg                                                                  
    a2423247  Sciclient_verifyThread                                                                     
    a2422da3  Sciclient_waitThread                                                                       
    a241e935  SemaphoreP_create                                                                          
    a2422b17  SemaphoreP_delete                                                                          
    a2421f49  SemaphoreP_pend                                                                            
    a2422899  SemaphoreP_post                                                                            
    a2421a71  SystemP_printf                                                                             
    a2436194  TIMER0_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_108_108                                    
    a243619c  TIMER10_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_118_118                                   
    a24361a4  TIMER11_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_119_119                                   
    a24361ac  TIMER12_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_120_120                                   
    a24361b4  TIMER13_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_121_121                                   
    a24361bc  TIMER14_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_122_122                                   
    a24361c4  TIMER14_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_2_2                                           
    a24361cc  TIMER15_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_123_123                                   
    a24361d4  TIMER15_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_3_3                                           
    a24361dc  TIMER16_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_124_124                                   
    a24361e4  TIMER16_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_40_40                                         
    a24361ec  TIMER17_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_125_125                                   
    a24361f4  TIMER17_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_41_41                                         
    a24361fc  TIMER18_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_126_126                                   
    a2436204  TIMER18_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_42_42                                         
    a243620c  TIMER19_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_127_127                                   
    a2436214  TIMER19_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_43_43                                         
    a243621c  TIMER1_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_109_109                                    
    a2436224  TIMER2_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_110_110                                    
    a243622c  TIMER3_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_111_111                                    
    a2436234  TIMER4_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_112_112                                    
    a243623c  TIMER5_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_113_113                                    
    a2436244  TIMER6_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_114_114                                    
    a243624c  TIMER7_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_115_115                                    
    a2436254  TIMER8_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_116_116                                    
    a243625c  TIMER9_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_117_117                                    
    a242260f  TIMERCompareSet                                                                            
    a2422651  TIMERCounterSet                                                                            
    a2422425  TIMERDisable                                                                               
    a242246d  TIMEREnable                                                                                
    a242317f  TIMERIntDisable                                                                            
    a2423199  TIMERIntEnable                                                                             
    a24231b3  TIMERIntStatusClear                                                                        
    a2423525  TIMERIntStatusGet                                                                          
    a24207cd  TIMERModeConfigure                                                                         
    a242303b  TIMERPostedModeConfig                                                                      
    a242309b  TIMERReadModeConfig                                                                        
    a2422693  TIMERReloadSet                                                                             
    a24228d7  TIMERReset                                                                                 
    a242352d  TIMERWritePostedStatusGet                                                                  
    a2436264  TIMESYNC_INTRTR0_outl_0_0_to_NAVSS0_cpts0_hw1_push_0_0                                     
    a243626c  TIMESYNC_INTRTR0_outl_1_1_to_NAVSS0_cpts0_hw2_push_1_1                                     
    a2436274  TIMESYNC_INTRTR0_outl_20_20_to_PCIE0_pcie_cpts_hw2_push_0_0                                
    a243627c  TIMESYNC_INTRTR0_outl_21_21_to_PCIE1_pcie_cpts_hw2_push_0_0                                
    a2436284  TIMESYNC_INTRTR0_outl_22_22_to_PCIE2_pcie_cpts_hw2_push_0_0                                
    a243628c  TIMESYNC_INTRTR0_outl_23_23_to_PCIE3_pcie_cpts_hw2_push_0_0                                
    a2436294  TIMESYNC_INTRTR0_outl_24_24_to_MCU_CPSW0_cpts_hw3_push_0_0                                 
    a243629c  TIMESYNC_INTRTR0_outl_25_25_to_MCU_CPSW0_cpts_hw4_push_1_1                                 
    a24362a4  TIMESYNC_INTRTR0_outl_26_26_to_cpsw_9xuss_j7am0_cpts_hw1_push_0_0                          
    a24362ac  TIMESYNC_INTRTR0_outl_27_27_to_cpsw_9xuss_j7am0_cpts_hw2_push_1_1                          
    a24362b4  TIMESYNC_INTRTR0_outl_28_28_to_cpsw_9xuss_j7am0_cpts_hw3_push_2_2                          
    a24362bc  TIMESYNC_INTRTR0_outl_29_29_to_cpsw_9xuss_j7am0_cpts_hw4_push_3_3                          
    a24362c4  TIMESYNC_INTRTR0_outl_2_2_to_NAVSS0_cpts0_hw3_push_2_2                                     
    a24362cc  TIMESYNC_INTRTR0_outl_30_30_to_cpsw_9xuss_j7am0_cpts_hw5_push_4_4                          
    a24362d4  TIMESYNC_INTRTR0_outl_31_31_to_cpsw_9xuss_j7am0_cpts_hw6_push_5_5                          
    a24362dc  TIMESYNC_INTRTR0_outl_32_32_to_cpsw_9xuss_j7am0_cpts_hw7_push_6_6                          
    a24362e4  TIMESYNC_INTRTR0_outl_33_33_to_cpsw_9xuss_j7am0_cpts_hw8_push_7_7                          
    a24362ec  TIMESYNC_INTRTR0_outl_38_38_to_CPSW1_cpts_hw3_push_0_0                                     
    a24362f4  TIMESYNC_INTRTR0_outl_39_39_to_CPSW1_cpts_hw4_push_1_1                                     
    a24362fc  TIMESYNC_INTRTR0_outl_3_3_to_NAVSS0_cpts0_hw4_push_3_3                                     
    a2436304  TIMESYNC_INTRTR0_outl_40_47_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_100_107              
    a243630c  TIMESYNC_INTRTR0_outl_4_4_to_NAVSS0_cpts0_hw5_push_4_4                                     
    a2436314  TIMESYNC_INTRTR0_outl_5_5_to_NAVSS0_cpts0_hw6_push_5_5                                     
    a243631c  TIMESYNC_INTRTR0_outl_6_6_to_NAVSS0_cpts0_hw7_push_6_6                                     
    a2436324  TIMESYNC_INTRTR0_outl_7_7_to_NAVSS0_cpts0_hw8_push_7_7                                     
    a2422ca1  TaskP_getFreertosHandle                                                                    
    a2423583  TaskP_sleep                                                                                
    a242298d  TimerP_Params_init                                                                         
    a241c125  TimerP_create                                                                              
    a2423587  TimerP_getDefaultFreqHi                                                                    
    a24234ff  TimerP_getDefaultFreqLo                                                                    
    a241ddbb  TimerP_mapId                                                                               
    a242023f  TimerP_start                                                                               
    a24216df  TimerP_stop                                                                                
    a2422543  TimerP_updateDefaultInfoTbl                                                                
    a243632c  UART0_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_96_96                                       
    a2436334  UART1_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_97_97                                       
    a243633c  UART2_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_98_98                                       
    a2436344  UART3_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_99_99                                       
    a243634c  UART4_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_100_100                                     
    a2436354  UART5_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_101_101                                     
    a243635c  UART6_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_102_102                                     
    a2436364  UART7_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_103_103                                     
    a243636c  UART8_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_104_104                                     
    a2436374  UART9_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_105_105                                     
    a243637c  UFS0_ufs_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_218_218                                       
    a2436384  USB0_host_system_error_0_0_to_MAIN2MCU_LVL_INTRTR0_in_157_157                              
    a243638c  USB0_irq_1_8_to_MAIN2MCU_LVL_INTRTR0_in_128_135                                            
    a2436394  USB0_otgirq_9_9_to_MAIN2MCU_LVL_INTRTR0_in_152_152                                         
    a243639c  VPAC0_vpac_level_0_5_to_MAIN2MCU_LVL_INTRTR0_in_270_275                                    
    a24363a4  VPAC1_vpac_level_0_5_to_MAIN2MCU_LVL_INTRTR0_in_40_45                                      
    a24363ac  WKUP_GPIO0_gpio_bank_0_5_to_WKUP_GPIOMUX_INTRTR0_in_103_108                                
    a24363b4  WKUP_GPIO1_gpio_bank_0_5_to_WKUP_GPIOMUX_INTRTR0_in_112_117                                
    a24363bc  WKUP_GPIOMUX_INTRTR0_outp_0_11_to_WKUP_HSM0_nvic_184_195                                   
    a24363c4  WKUP_GPIOMUX_INTRTR0_outp_0_15_to_MCU_R5FSS0_CORE0_intr_124_139                            
    a24363cc  WKUP_GPIOMUX_INTRTR0_outp_0_15_to_MCU_R5FSS0_CORE1_intr_124_139                            
    a24363d4  WKUP_GPIOMUX_INTRTR0_outp_12_19_to_MCU_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_4_11         
    a24363dc  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_960_975             
    a24363e4  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_COMPUTE_CLUSTER0_GIC500SS_spi_960_975                   
    a24363ec  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS0_CORE0_intr_488_503                               
    a24363f4  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS0_CORE1_intr_488_503                               
    a24363fc  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS1_CORE0_intr_488_503                               
    a2436404  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS1_CORE1_intr_488_503                               
    a243640c  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS2_CORE0_intr_488_503                               
    a2436414  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS2_CORE1_intr_488_503                               
    a243641c  WKUP_GPIOMUX_INTRTR0_outp_8_15_to_WKUP_ESM0_esm_pls_event0_120_127                         
    a2436424  WKUP_GPIOMUX_INTRTR0_outp_8_15_to_WKUP_ESM0_esm_pls_event1_128_135                         
    a243642c  WKUP_GPIOMUX_INTRTR0_outp_8_15_to_WKUP_ESM0_esm_pls_event2_136_143                         
    a2ffc000  __ABORT_STACK_END                                                                          
    00000100  __ABORT_STACK_SIZE                                                                         
    a2ffbf00  __ABORT_STACK_START                                                                        
    a2ffbf00  __FIQ_STACK_END                                                                            
    00000100  __FIQ_STACK_SIZE                                                                           
    a2ffbe00  __FIQ_STACK_START                                                                          
    a2ffbe00  __IRQ_STACK_END                                                                            
    00001000  __IRQ_STACK_SIZE                                                                           
    a2ffae00  __IRQ_STACK_START                                                                          
    a2100000  __RESOURCE_TABLE                                                                           
    a3000000  __STACK_END                                                                                
    00004000  __STACK_SIZE                                                                               
    a2ffae00  __SVC_STACK_END                                                                            
    00000100  __SVC_STACK_SIZE                                                                           
    a2ffad00  __SVC_STACK_START                                                                          
    00008000  __SYSMEM_SIZE                                                                              
    00000000  __TI_ATRegion0_region_sz                                                                   
    00000000  __TI_ATRegion0_src_addr                                                                    
    00000000  __TI_ATRegion0_trg_addr                                                                    
    00000000  __TI_ATRegion1_region_sz                                                                   
    00000000  __TI_ATRegion1_src_addr                                                                    
    00000000  __TI_ATRegion1_trg_addr                                                                    
    00000000  __TI_ATRegion2_region_sz                                                                   
    00000000  __TI_ATRegion2_src_addr                                                                    
    00000000  __TI_ATRegion2_trg_addr                                                                    
    a2439dac  __TI_CINIT_Base                                                                            
    a2439dd4  __TI_CINIT_Limit                                                                           
    a2439dd4  __TI_CINIT_Warm                                                                            
    a2439d80  __TI_Handler_Table_Base                                                                    
    a2439d8c  __TI_Handler_Table_Limit                                                                   
    a2421d98  __TI_auto_init_nobinit_nopinit                                                             
    a2420470  __TI_decompress_lzss                                                                       
    a242336c  __TI_decompress_none                                                                       
    a2420ff4  __TI_ltoa                                                                                  
    ffffffff  __TI_pprof_out_hndl                                                                        
    a241aae0  __TI_printfi                                                                               
    ffffffff  __TI_prof_data_size                                                                        
    ffffffff  __TI_prof_data_start                                                                       
    00000000  __TI_static_base__                                                                         
    a24232a8  __TI_zero_init                                                                             
    a2ffad00  __UND_STACK_END                                                                            
    00000100  __UND_STACK_SIZE                                                                           
    a2ffac00  __UND_STACK_START                                                                          
    a2434a00  __aeabi_ctype_table_                                                                       
    a2434a00  __aeabi_ctype_table_C                                                                      
    a2439a74  __aeabi_errno                                                                              
    a24234bc  __aeabi_errno_addr                                                                         
    a2422cd0  __aeabi_idiv                                                                               
    a2423590  __aeabi_idiv0                                                                              
    a24235a0  __aeabi_ldiv0                                                                              
    a24234c8  __aeabi_memclr                                                                             
    a24234c8  __aeabi_memclr4                                                                            
    a24234c8  __aeabi_memclr8                                                                            
    a242358c  __aeabi_memcpy                                                                             
    a242358c  __aeabi_memcpy4                                                                            
    a242358c  __aeabi_memcpy8                                                                            
    a2423440  __aeabi_memset                                                                             
    a2423440  __aeabi_memset4                                                                            
    a2423440  __aeabi_memset8                                                                            
    a241d73c  __aeabi_uidiv                                                                              
    a2421f9c  __aeabi_ul2f                                                                               
    a2422f24  __aeabi_uldivmod                                                                           
    ffffffff  __binit__                                                                                  
    UNDEFED   __c_args__                                                                                 
    a2422cd0  __divsi3                                                                                   
    a2421f9c  __floatundisf                                                                              
    00000675  __mpu_init                                                                                 
    a2ffc000  __stack                                                                                    
    a2400000  __start___llvm_prf_bits                                                                    
    a2400000  __start___llvm_prf_cnts                                                                    
    a2400000  __stop___llvm_prf_bits                                                                     
    a2400000  __stop___llvm_prf_cnts                                                                     
    a241f338  __udivmoddi4                                                                               
    a241d73c  __udivsi3                                                                                  
    a2422f48  _args_main                                                                                 
    0000098c  _c_int00                                                                                   
    00000000  _freertosresetvectors                                                                      
    a24235c0  _sys_memory                                                                                
    a242325f  _system_post_cinit                                                                         
    a2423509  _system_pre_init                                                                           
    a2423534  abort                                                                                      
    a2436e00  argArray                                                                                   
    a24217bc  atoi                                                                                       
    ffffffff  binit                                                                                      
    a2436434  cpsw_9xuss_j7am0_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_9_9                                  
    a243643c  cpsw_9xuss_j7am0_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_14_14                               
    a2436444  cpsw_9xuss_j7am0_cpts_genf1_2_2_to_TIMESYNC_INTRTR0_in_15_15                               
    a243644c  cpsw_9xuss_j7am0_cpts_sync_3_3_to_TIMESYNC_INTRTR0_in_37_37                                
    a2436454  cpsw_9xuss_j7am0_evnt_pend_4_4_to_MAIN2MCU_LVL_INTRTR0_in_223_223                          
    a243645c  cpsw_9xuss_j7am0_mdio_pend_5_5_to_MAIN2MCU_LVL_INTRTR0_in_222_222                          
    a2436464  cpsw_9xuss_j7am0_stat_pend_6_6_to_MAIN2MCU_LVL_INTRTR0_in_221_221                          
    a243646c  csi_rx_if0_csi_err_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_255_255                              
    a2436474  csi_rx_if0_csi_irq_1_1_to_MAIN2MCU_LVL_INTRTR0_in_254_254                                  
    a243647c  csi_rx_if0_csi_level_2_2_to_MAIN2MCU_LVL_INTRTR0_in_256_256                                
    a2436484  csi_rx_if1_csi_err_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_258_258                              
    a243648c  csi_rx_if1_csi_irq_1_1_to_MAIN2MCU_LVL_INTRTR0_in_257_257                                  
    a2436494  csi_rx_if1_csi_level_2_2_to_MAIN2MCU_LVL_INTRTR0_in_259_259                                
    a243649c  csi_rx_if2_csi_err_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_261_261                              
    a24364a4  csi_rx_if2_csi_irq_1_1_to_MAIN2MCU_LVL_INTRTR0_in_260_260                                  
    a24364ac  csi_rx_if2_csi_level_2_2_to_MAIN2MCU_LVL_INTRTR0_in_262_262                                
    a2420d2d  eTaskGetState                                                                              
    a2420ff3  extended_system_post_cinit                                                                 
    a24217bb  extended_system_pre_init                                                                   
    a2421490  frexp                                                                                      
    a2421490  frexpl                                                                                     
    a2437600  fxnArray                                                                                   
    a2434480  gCslR5MpuCfg                                                                               
    a2439a78  gCurrentProcessorState                                                                     
    a24392e0  gDmTimerPInfoTbl                                                                           
    a24399cc  gExptnHandlers                                                                             
    a2419ad8  gIpcObject                                                                                 
    00000a98  gMemAttr                                                                                   
    a2439b28  gOsalArchConfig                                                                            
    a2439a7c  gOsalHwiAllocCnt                                                                           
    a2439a80  gOsalHwiPeak                                                                               
    a2439a84  gOsalSemAllocCnt                                                                           
    a2439a88  gOsalSemPeak                                                                               
    a2439a8c  gOsalTimerAllocCnt                                                                         
    a2439a90  gOsalTimerPeak                                                                             
    a2439a00  gOsal_HwAttrs                                                                              
    a24396e0  gRmIaInstances                                                                             
    a2439620  gRmIrInstances                                                                             
    a2434740  gRmIrqTree                                                                                 
    a2436c68  gRmIrqTreeCount                                                                            
    a241a938  gRovDummyQueue                                                                             
    a24398b0  gSciclientHandle                                                                           
    a2434060  gSciclientMap                                                                              
    a2439a20  gSciclient_secProxyCfg                                                                     
    a2439a94  gSciclient_writeInProgress                                                                 
    a2439a58  gStartTime                                                                                 
    a241aa98  gTimerCntrl                                                                                
    a2438600  gTimerStructs                                                                              
    a241aad8  gVimBaseAddr                                                                               
    a2439904  g_Navss512MbInput                                                                          
    a2423513  getIpcObjInst                                                                              
    a241f451  getRunTimeCounterValue                                                                     
    a24390e0  intrMap                                                                                    
    a2438ce0  intrPri                                                                                    
    a2437e00  intrSrcType                                                                                
    a24364b4  j7aep_gpu_bxs464_wrap0_gpu_pwrctrl_req_0_0_to_MAIN2MCU_LVL_INTRTR0_in_316_316              
    a241ea90  ldexp                                                                                      
    a241ea90  ldexpl                                                                                     
    a241fa3b  main                                                                                       
    a24224b4  memccpy                                                                                    
    a241ddbc  memcpy                                                                                     
    a242086c  memset                                                                                     
    a2423491  osalArch_Init                                                                              
    a2439a98  pSciclient_secProxyCfg                                                                     
    a241e517  pvPortMalloc                                                                               
    a2423277  pvTaskIncrementMutexHeldCount                                                              
    a2439aa0  pxCurrentTCB                                                                               
    a2420a41  pxPortInitialiseStack                                                                      
    a2100000  resourceTable                                                                              
    a241f55f  rprocInit                                                                                  
    a241ea90  scalbn                                                                                     
    a241ea90  scalbnl                                                                                    
    a241aadc  shutdownSem                                                                                
    a2439850  test_desc                                                                                  
    a243515c  tisci_if_CMPEVENT_INTRTR0                                                                  
    a2436c6c  tisci_if_CODEC0                                                                            
    a2436c70  tisci_if_CODEC1                                                                            
    a24352f8  tisci_if_CPSW1                                                                             
    a24364c4  tisci_if_CSI_TX_IF0                                                                        
    a24364cc  tisci_if_CSI_TX_IF1                                                                        
    a2436c74  tisci_if_DCC0                                                                              
    a2436c78  tisci_if_DCC1                                                                              
    a2436c7c  tisci_if_DCC2                                                                              
    a2436c80  tisci_if_DCC3                                                                              
    a2436c84  tisci_if_DCC4                                                                              
    a2436c88  tisci_if_DCC5                                                                              
    a2436c8c  tisci_if_DCC6                                                                              
    a2436c90  tisci_if_DCC7                                                                              
    a2436c94  tisci_if_DCC8                                                                              
    a2436c98  tisci_if_DCC9                                                                              
    a2435584  tisci_if_DDR0                                                                              
    a2435594  tisci_if_DDR1                                                                              
    a24355a4  tisci_if_DDR2                                                                              
    a24355b4  tisci_if_DDR3                                                                              
    a2436c9c  tisci_if_DMPAC0_INTD_0                                                                     
    a24353d0  tisci_if_DSS0                                                                              
    a2436ca0  tisci_if_DSS_DSI0                                                                          
    a2436ca4  tisci_if_DSS_DSI1                                                                          
    a2436ca8  tisci_if_DSS_EDP0                                                                          
    a2436cac  tisci_if_ECAP0                                                                             
    a2436cb0  tisci_if_ECAP1                                                                             
    a2436cb4  tisci_if_ECAP2                                                                             
    a2436cb8  tisci_if_ELM0                                                                              
    a24364d4  tisci_if_EPWM0                                                                             
    a24364dc  tisci_if_EPWM1                                                                             
    a24364e4  tisci_if_EPWM2                                                                             
    a24364ec  tisci_if_EPWM3                                                                             
    a24364f4  tisci_if_EPWM4                                                                             
    a24364fc  tisci_if_EPWM5                                                                             
    a2436cbc  tisci_if_EQEP0                                                                             
    a2436cc0  tisci_if_EQEP1                                                                             
    a2436cc4  tisci_if_EQEP2                                                                             
    a2436cc8  tisci_if_GPIO0                                                                             
    a2436ccc  tisci_if_GPIO2                                                                             
    a2436cd0  tisci_if_GPIO4                                                                             
    a2436cd4  tisci_if_GPIO6                                                                             
    a2434e1c  tisci_if_GPIOMUX_INTRTR0                                                                   
    a2436cd8  tisci_if_GPMC0                                                                             
    a2436cdc  tisci_if_GTC0                                                                              
    a2436ce0  tisci_if_I2C0                                                                              
    a2436ce4  tisci_if_I2C1                                                                              
    a2436ce8  tisci_if_I2C2                                                                              
    a2436cec  tisci_if_I2C3                                                                              
    a2436cf0  tisci_if_I2C4                                                                              
    a2436cf4  tisci_if_I2C5                                                                              
    a2436cf8  tisci_if_I2C6                                                                              
    a2436cfc  tisci_if_J7AEP_GPU_BXS464_WRAP0_GPU_SS_0                                                   
    a2435604  tisci_if_MAIN2MCU_LVL_INTRTR0                                                              
    a2435610  tisci_if_MAIN2MCU_PLS_INTRTR0                                                              
    a2436504  tisci_if_MCAN0                                                                             
    a243654c  tisci_if_MCAN1                                                                             
    a243650c  tisci_if_MCAN10                                                                            
    a2436514  tisci_if_MCAN11                                                                            
    a243651c  tisci_if_MCAN12                                                                            
    a2436524  tisci_if_MCAN13                                                                            
    a243652c  tisci_if_MCAN14                                                                            
    a2436534  tisci_if_MCAN15                                                                            
    a243653c  tisci_if_MCAN16                                                                            
    a2436544  tisci_if_MCAN17                                                                            
    a2436554  tisci_if_MCAN2                                                                             
    a243655c  tisci_if_MCAN3                                                                             
    a2436564  tisci_if_MCAN4                                                                             
    a243656c  tisci_if_MCAN5                                                                             
    a2436574  tisci_if_MCAN6                                                                             
    a243657c  tisci_if_MCAN7                                                                             
    a2436584  tisci_if_MCAN8                                                                             
    a243658c  tisci_if_MCAN9                                                                             
    a2436594  tisci_if_MCASP0                                                                            
    a243659c  tisci_if_MCASP1                                                                            
    a24365a4  tisci_if_MCASP2                                                                            
    a24365ac  tisci_if_MCASP3                                                                            
    a24365b4  tisci_if_MCASP4                                                                            
    a2436d00  tisci_if_MCSPI0                                                                            
    a2436d04  tisci_if_MCSPI1                                                                            
    a2436d08  tisci_if_MCSPI2                                                                            
    a2436d0c  tisci_if_MCSPI3                                                                            
    a2436d10  tisci_if_MCSPI4                                                                            
    a2436d14  tisci_if_MCSPI5                                                                            
    a2436d18  tisci_if_MCSPI6                                                                            
    a2436d1c  tisci_if_MCSPI7                                                                            
    a24355c4  tisci_if_MCU_CPSW0                                                                         
    a24355d4  tisci_if_MCU_NAVSS0_INTR_ROUTER_0                                                          
    a243561c  tisci_if_MCU_NAVSS0_MCRC_0                                                                 
    a2436d20  tisci_if_MCU_NAVSS0_UDMASS_INTA_0                                                          
    a2436d24  tisci_if_MMCSD0                                                                            
    a2436d28  tisci_if_MMCSD1                                                                            
    a2435280  tisci_if_NAVSS0                                                                            
    a2436d2c  tisci_if_NAVSS0_CPTS_0                                                                     
    a2434ef4  tisci_if_NAVSS0_INTR_0                                                                     
    a24365bc  tisci_if_NAVSS0_MAILBOX1_0                                                                 
    a24365d4  tisci_if_NAVSS0_MAILBOX1_1                                                                 
    a24365c4  tisci_if_NAVSS0_MAILBOX1_10                                                                
    a24365cc  tisci_if_NAVSS0_MAILBOX1_11                                                                
    a24365dc  tisci_if_NAVSS0_MAILBOX1_2                                                                 
    a24365e4  tisci_if_NAVSS0_MAILBOX1_3                                                                 
    a24365ec  tisci_if_NAVSS0_MAILBOX1_4                                                                 
    a24365f4  tisci_if_NAVSS0_MAILBOX1_5                                                                 
    a24365fc  tisci_if_NAVSS0_MAILBOX1_6                                                                 
    a2436604  tisci_if_NAVSS0_MAILBOX1_7                                                                 
    a243660c  tisci_if_NAVSS0_MAILBOX1_8                                                                 
    a2436614  tisci_if_NAVSS0_MAILBOX1_9                                                                 
    a243661c  tisci_if_NAVSS0_MAILBOX_0                                                                  
    a2436634  tisci_if_NAVSS0_MAILBOX_1                                                                  
    a2436624  tisci_if_NAVSS0_MAILBOX_10                                                                 
    a243662c  tisci_if_NAVSS0_MAILBOX_11                                                                 
    a243663c  tisci_if_NAVSS0_MAILBOX_2                                                                  
    a2436644  tisci_if_NAVSS0_MAILBOX_3                                                                  
    a243664c  tisci_if_NAVSS0_MAILBOX_4                                                                  
    a2436654  tisci_if_NAVSS0_MAILBOX_5                                                                  
    a243665c  tisci_if_NAVSS0_MAILBOX_6                                                                  
    a2436664  tisci_if_NAVSS0_MAILBOX_7                                                                  
    a243666c  tisci_if_NAVSS0_MAILBOX_8                                                                  
    a2436674  tisci_if_NAVSS0_MAILBOX_9                                                                  
    a2435628  tisci_if_NAVSS0_MCRC_0                                                                     
    a2436d30  tisci_if_NAVSS0_MODSS_INTA_0                                                               
    a2436d34  tisci_if_NAVSS0_MODSS_INTA_1                                                               
    a2436d38  tisci_if_NAVSS0_PVU_0                                                                      
    a2436d3c  tisci_if_NAVSS0_PVU_1                                                                      
    a2436d40  tisci_if_NAVSS0_UDMASS_INTA_0                                                              
    a2434eb0  tisci_if_PCIE0                                                                             
    a2434f34  tisci_if_PCIE1                                                                             
    a2434f74  tisci_if_PCIE2                                                                             
    a2434fb4  tisci_if_PCIE3                                                                             
    a243667c  tisci_if_SA2_UL0                                                                           
    a2436d44  tisci_if_TIMER0                                                                            
    a2436d58  tisci_if_TIMER1                                                                            
    a2436d48  tisci_if_TIMER10                                                                           
    a2436d4c  tisci_if_TIMER11                                                                           
    a2436d50  tisci_if_TIMER12                                                                           
    a2436d54  tisci_if_TIMER13                                                                           
    a2436684  tisci_if_TIMER14                                                                           
    a243668c  tisci_if_TIMER15                                                                           
    a2436694  tisci_if_TIMER16                                                                           
    a243669c  tisci_if_TIMER17                                                                           
    a24366a4  tisci_if_TIMER18                                                                           
    a24366ac  tisci_if_TIMER19                                                                           
    a2436d5c  tisci_if_TIMER2                                                                            
    a2436d60  tisci_if_TIMER3                                                                            
    a2436d64  tisci_if_TIMER4                                                                            
    a2436d68  tisci_if_TIMER5                                                                            
    a2436d6c  tisci_if_TIMER6                                                                            
    a2436d70  tisci_if_TIMER7                                                                            
    a2436d74  tisci_if_TIMER8                                                                            
    a2436d78  tisci_if_TIMER9                                                                            
    a2434db8  tisci_if_TIMESYNC_INTRTR0                                                                  
    a2436d7c  tisci_if_UART0                                                                             
    a2436d80  tisci_if_UART1                                                                             
    a2436d84  tisci_if_UART2                                                                             
    a2436d88  tisci_if_UART3                                                                             
    a2436d8c  tisci_if_UART4                                                                             
    a2436d90  tisci_if_UART5                                                                             
    a2436d94  tisci_if_UART6                                                                             
    a2436d98  tisci_if_UART7                                                                             
    a2436d9c  tisci_if_UART8                                                                             
    a2436da0  tisci_if_UART9                                                                             
    a2436da4  tisci_if_UFS0                                                                              
    a2435634  tisci_if_USB0                                                                              
    a2436da8  tisci_if_VPAC0                                                                             
    a2436dac  tisci_if_VPAC1                                                                             
    a2436db0  tisci_if_WKUP_GPIO0                                                                        
    a2436db4  tisci_if_WKUP_GPIO1                                                                        
    a2434ff4  tisci_if_WKUP_GPIOMUX_INTRTR0                                                              
    a2435314  tisci_if_cpsw_9xuss_j7am0                                                                  
    a2435640  tisci_if_csi_rx_if0                                                                        
    a243564c  tisci_if_csi_rx_if1                                                                        
    a2435658  tisci_if_csi_rx_if2                                                                        
    a2436db8  tisci_if_j7aep_gpu_bxs464_wrap0                                                            
    a24353e8  tisci_if_vusr_dual0                                                                        
    a2100400  traceBuf                                                                                   
    a242188d  tracePrintf                                                                                
    a2423595  uiPortGetRunTimeCounterValue                                                               
    a2439ab0  ulCriticalNesting                                                                          
    a2422890  ulDoCPSID                                                                                  
    a2422888  ulDoCPSIE                                                                                  
    a2422880  ulDoWFI                                                                                    
    a2422878  ulGetCPSR                                                                                  
    a2422860  ulGetDataFaultAddressRegister                                                              
    a2422858  ulGetDataFaultStatusRegister                                                               
    a2422870  ulGetInstructionFaultAddressRegister                                                       
    a2422868  ulGetInstructionFaultStatusRegister                                                        
    a2439ab8  ulPortInterruptNesting                                                                     
    a2439abc  ulPortSchedularRunning                                                                     
    a2439ac0  ulPortTaskHasFPUContext                                                                    
    a2439ac4  ulPortYieldRequired                                                                        
    a2423461  ulTaskGetIdleRunTimeCounter                                                                
    a2422eb5  uxListRemove                                                                               
    a2422587  uxPortReadPmuCounter                                                                       
    a2422df5  uxQueueMessagesWaiting                                                                     
    a24234d5  uxTaskGetNumberOfTasks                                                                     
    a2436dbc  uxTopUsedPriority                                                                          
    a24230b9  vApplicationGetIdleTaskMemory                                                              
    a24230d7  vApplicationGetTimerTaskMemory                                                             
    a242349f  vApplicationIdleHook                                                                       
    a2422b83  vApplicationLoadHook                                                                       
    a2422f6d  vApplicationStackOverflowHook                                                              
    a2423319  vListInitialise                                                                            
    a2423561  vListInitialiseItem                                                                        
    a2422a01  vListInsert                                                                                
    a2422c19  vPortConfigTimerForRunTimeStats                                                            
    a241f95b  vPortDumpExceptionState                                                                    
    a24227d7  vPortEnterCritical                                                                         
    a2422b4d  vPortExitCritical                                                                          
    a242140d  vPortFree                                                                                  
    00000040  vPortRestoreTaskContext                                                                    
    a24219b3  vPortValidateInterruptPriority                                                             
    a2423471  vPortYeildFromISR                                                                          
    a2421d41  vQueueAddToRegistry                                                                        
    a2422bb7  vQueueDelete                                                                               
    a2422817  vQueueUnregisterQueue                                                                      
    a24224fd  vQueueWaitForMessageRestricted                                                             
    a24225cb  vTaskDelay                                                                                 
    a2420ad7  vTaskGetInfo                                                                               
    a24231cd  vTaskInternalSetTimeOutState                                                               
    a24234ad  vTaskMissedYield                                                                           
    a2422951  vTaskPlaceOnEventList                                                                      
    a24218ef  vTaskPlaceOnEventListRestricted                                                            
    a241fcb9  vTaskPriorityDisinheritAfterTimeout                                                        
    a2421e9f  vTaskShutDown                                                                              
    a2420685  vTaskStartScheduler                                                                        
    a2423481  vTaskSuspendAll                                                                            
    a241f213  vTaskSwitchContext                                                                         
    a241df3d  vTaskTestTCM                                                                               
    a2439420  vint_usage_count_MCU_NAVSS0_UDMASS_INTA_0                                                  
    a243994c  vint_usage_count_NAVSS0_MODSS_INTA_0                                                       
    a243998c  vint_usage_count_NAVSS0_MODSS_INTA_1                                                       
    a2439520  vint_usage_count_NAVSS0_UDMASS_INTA_0                                                      
    a2421828  vsnprintf                                                                                  
    a2436c24  vusr_dual0_v0_mcp_hi_intlvl_0_0_to_MAIN2MCU_LVL_INTRTR0_in_84_84                           
    a2436c2c  vusr_dual0_v0_mcp_lo_intlvl_1_1_to_MAIN2MCU_LVL_INTRTR0_in_83_83                           
    a2436c34  vusr_dual0_v0_vusr_intlvl_2_2_to_MAIN2MCU_LVL_INTRTR0_in_82_82                             
    a2436c3c  vusr_dual0_v1_mcp_hi_intlvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_87_87                           
    a2436c44  vusr_dual0_v1_mcp_lo_intlvl_4_4_to_MAIN2MCU_LVL_INTRTR0_in_86_86                           
    a2436c4c  vusr_dual0_v1_vusr_intlvl_5_5_to_MAIN2MCU_LVL_INTRTR0_in_85_85                             
    a242305c  wcslen                                                                                     
    a24233ff  xPortInIsrContext                                                                          
    a242120b  xPortStartScheduler                                                                        
    a24226d5  xQueueCreateCountingSemaphoreStatic                                                        
    a2421951  xQueueGenericCreate                                                                        
    a2420dbf  xQueueGenericCreateStatic                                                                  
    a2420b6d  xQueueGenericReset                                                                         
    a241e3a5  xQueueGenericSend                                                                          
    a241fd89  xQueueGiveFromISR                                                                          
    a241e681  xQueueReceive                                                                              
    a241fb11  xQueueReceiveFromISR                                                                       
    a241a6b8  xQueueRegistry                                                                             
    a241e231  xQueueSemaphoreTake                                                                        
    a2439b08  xShutDownTaskHandle                                                                        
    a2420ee1  xTaskCheckForTimeOut                                                                       
    a2421c35  xTaskCreate                                                                                
    a2420c03  xTaskCreateStatic                                                                          
    a2422f91  xTaskGetSchedulerState                                                                     
    a242328f  xTaskGetTickCount                                                                          
    a241d90d  xTaskIncrementTick                                                                         
    a241ff23  xTaskPriorityDisinherit                                                                    
    a242017b  xTaskPriorityInherit                                                                       
    a241f771  xTaskRemoveFromEventList                                                                   
    a241e0b9  xTaskResumeAll                                                                             
    a2439b0c  xTestTCMTaskHandle                                                                         
    a242166d  xTimerCreateTimerTask                                                                      
    
    
    GLOBAL SYMBOLS: SORTED BY Symbol Address 
    
    address   name                                                                                       
    -------   ----                                                                                       
    00000000  __TI_ATRegion0_region_sz                                                                   
    00000000  __TI_ATRegion0_src_addr                                                                    
    00000000  __TI_ATRegion0_trg_addr                                                                    
    00000000  __TI_ATRegion1_region_sz                                                                   
    00000000  __TI_ATRegion1_src_addr                                                                    
    00000000  __TI_ATRegion1_trg_addr                                                                    
    00000000  __TI_ATRegion2_region_sz                                                                   
    00000000  __TI_ATRegion2_src_addr                                                                    
    00000000  __TI_ATRegion2_trg_addr                                                                    
    00000000  __TI_static_base__                                                                         
    00000000  _freertosresetvectors                                                                      
    00000040  vPortRestoreTaskContext                                                                    
    00000084  HwiP_svc_handler                                                                           
    00000100  __ABORT_STACK_SIZE                                                                         
    00000100  __FIQ_STACK_SIZE                                                                           
    00000100  __SVC_STACK_SIZE                                                                           
    00000100  __UND_STACK_SIZE                                                                           
    0000010c  HwiP_irq_handler                                                                           
    00000244  HwiP_data_abort_handler                                                                    
    000002ec  HwiP_prefetch_abort_handler                                                                
    0000031c  HwiP_fiq_handler                                                                           
    0000034c  HwiP_undefined_handler                                                                     
    000003b1  HwiP_irq_handler_c                                                                         
    00000417  HwiP_fiq_handler_c                                                                         
    00000491  HwiP_reserved_handler                                                                      
    000004bf  HwiP_undefined_handler_c                                                                   
    000004ff  HwiP_prefetch_abort_handler_c                                                              
    0000053f  HwiP_data_abort_handler_c                                                                  
    000005b9  CSL_armR5MPUCfg                                                                            
    00000675  __mpu_init                                                                                 
    00000779  CSL_armR5StartupGetCpuID                                                                   
    00000791  CSL_startupVimSetIntrEnable                                                                
    000007cd  CSL_startupVimClrIntrPending                                                               
    000007fb  CSL_armR5StartupCacheEnableAllCache                                                        
    0000080b  CSL_armR5StartupCacheEnableForceWrThru                                                     
    00000823  CSL_armR5StartupCacheEnableICache                                                          
    0000084b  CSL_armR5StartupCacheEnableDCache                                                          
    00000873  CSL_armR5StartupCacheInvalidateAllIcache                                                   
    00000889  CSL_armR5StartupCacheInvalidateAllDcache                                                   
    0000089f  CSL_armR5StartupCacheInvalidateAllCache                                                    
    000008af  CSL_armR5StartupMpuEnable                                                                  
    000008cf  CSL_armR5StartupMpuCfgRegion                                                               
    000008e9  CSL_armR5StartupReadMpidrReg                                                               
    000008f3  CSL_armR5StartupFpuEnable                                                                  
    00000913  CSL_armR5StartupIntrEnableVic                                                              
    0000092f  CSL_armR5StartupIntrEnableFiq                                                              
    00000947  CSL_armR5StartupIntrEnableIrq                                                              
    0000095f  CSL_armR5SetDLFOBit                                                                        
    0000098c  _c_int00                                                                                   
    00000a65  HF                                                                                         
    00000a98  gMemAttr                                                                                   
    00001000  __IRQ_STACK_SIZE                                                                           
    00004000  __STACK_SIZE                                                                               
    00008000  __SYSMEM_SIZE                                                                              
    a2100000  __RESOURCE_TABLE                                                                           
    a2100000  resourceTable                                                                              
    a2100400  traceBuf                                                                                   
    a2400000  __start___llvm_prf_bits                                                                    
    a2400000  __start___llvm_prf_cnts                                                                    
    a2400000  __stop___llvm_prf_bits                                                                     
    a2400000  __stop___llvm_prf_cnts                                                                     
    a2419ad8  gIpcObject                                                                                 
    a241a6b8  xQueueRegistry                                                                             
    a241a938  gRovDummyQueue                                                                             
    a241a988  FaultyGPR                                                                                  
    a241aa98  gTimerCntrl                                                                                
    a241aad0  FaultyLR                                                                                   
    a241aad4  FaultySP                                                                                   
    a241aad8  gVimBaseAddr                                                                               
    a241aadc  shutdownSem                                                                                
    a241aae0  __TI_printfi                                                                               
    a241c125  TimerP_create                                                                              
    a241c5a5  Sciclient_serviceSecureProxy                                                               
    a241cbd1  CSL_armR5Dsb                                                                               
    a241cbd7  CSL_armR5Isb                                                                               
    a241cbdd  CSL_armR5Dmb                                                                               
    a241cbe3  CSL_armR5FpuEnable                                                                         
    a241cc03  CSL_armR5IntrEnableFiq                                                                     
    a241cc1b  CSL_armR5IntrEnableIrq                                                                     
    a241cc33  CSL_armR5IntrEnableVic                                                                     
    a241cc4f  CSL_armR5CacheEnableICache                                                                 
    a241cc77  CSL_armR5CacheEnableDCache                                                                 
    a241cc9f  CSL_armR5CacheGetIcacheLineSize                                                            
    a241ccb9  CSL_armR5CacheGetDcacheLineSize                                                            
    a241ccd3  CSL_armR5CacheGetNumSets                                                                   
    a241cce9  CSL_armR5CacheGetNumWays                                                                   
    a241ccff  CSL_armR5CacheEnableAllCache                                                               
    a241cd0f  CSL_armR5CacheInvalidateAllIcache                                                          
    a241cd25  CSL_armR5CacheInvalidateAllDcache                                                          
    a241cd3b  CSL_armR5CacheInvalidateAllCache                                                           
    a241cd4b  CSL_armR5CacheInvalidateIcacheMva                                                          
    a241cd59  CSL_armR5CacheInvalidateDcacheMva                                                          
    a241cd5f  CSL_armR5CacheInvalidateDcacheSetWay                                                       
    a241cd81  CSL_armR5CacheCleanDcacheMva                                                               
    a241cd87  CSL_armR5CacheCleanDcacheSetWay                                                            
    a241cda9  CSL_armR5CacheCleanInvalidateDcacheMva                                                     
    a241cdaf  CSL_armR5CacheCleanInvalidateDcacheSetWay                                                  
    a241cdd1  CSL_armR5CacheEnableForceWrThru                                                            
    a241cde9  CSL_armR5CacheDisableEcc                                                                   
    a241ce19  CSL_armR5CacheEnableAxiAccess                                                              
    a241ce27  CSL_armR5ReadMpidrReg                                                                      
    a241ce31  CSL_armR5GetCpsrRegVal                                                                     
    a241ce41  CSL_armR5DisableIrqFiq                                                                     
    a241ce53  CSL_armR5EnableIrqFiq                                                                      
    a241d0f1  Sciclient_rmProgramInterruptRoute                                                          
    a241d569  Sciclient_rmClearInterruptRoute                                                            
    a241d73b  DebugP_log1                                                                                
    a241d73c  __aeabi_uidiv                                                                              
    a241d73c  __udivsi3                                                                                  
    a241d90d  xTaskIncrementTick                                                                         
    a241dc39  Sciclient_init                                                                             
    a241ddbb  TimerP_mapId                                                                               
    a241ddbc  memcpy                                                                                     
    a241df3d  vTaskTestTCM                                                                               
    a241e0b9  xTaskResumeAll                                                                             
    a241e231  xQueueSemaphoreTake                                                                        
    a241e3a5  xQueueGenericSend                                                                          
    a241e517  pvPortMalloc                                                                               
    a241e681  xQueueReceive                                                                              
    a241e935  SemaphoreP_create                                                                          
    a241ea8b  CacheP_Inv                                                                                 
    a241ea90  ldexp                                                                                      
    a241ea90  ldexpl                                                                                     
    a241ea90  scalbn                                                                                     
    a241ea90  scalbnl                                                                                    
    a241efb1  OsalArch_HwiPCreate                                                                        
    a241f213  vTaskSwitchContext                                                                         
    a241f338  __udivmoddi4                                                                               
    a241f451  getRunTimeCounterValue                                                                     
    a241f55f  rprocInit                                                                                  
    a241f675  CSL_armR5PmuCfg                                                                            
    a241f6a3  CSL_armR5PmuEnableAllCntrs                                                                 
    a241f6bb  CSL_armR5PmuGetNumCntrs                                                                    
    a241f6c9  CSL_armR5PmuCfgCntr                                                                        
    a241f6dd  CSL_armR5PmuEnableCntrOverflowIntr                                                         
    a241f6f9  CSL_armR5PmuEnableCntr                                                                     
    a241f715  CSL_armR5PmuReadCntr                                                                       
    a241f72f  CSL_armR5PmuSetCntr                                                                        
    a241f749  CSL_armR5PmuReadCntrOverflowStatus                                                         
    a241f74f  CSL_armR5PmuClearCntrOverflowStatus                                                        
    a241f755  CSL_armR5PmuResetCycleCnt                                                                  
    a241f763  CSL_armR5PmuResetCntrs                                                                     
    a241f771  xTaskRemoveFromEventList                                                                   
    a241f95b  vPortDumpExceptionState                                                                    
    a241fa3b  main                                                                                       
    a241fb11  xQueueReceiveFromISR                                                                       
    a241fbe7  LoadP_update                                                                               
    a241fcb9  vTaskPriorityDisinheritAfterTimeout                                                        
    a241fd89  xQueueGiveFromISR                                                                          
    a241fe57  Ipc_setCoreEventId                                                                         
    a241ff23  xTaskPriorityDisinherit                                                                    
    a242017b  xTaskPriorityInherit                                                                       
    a242023f  TimerP_start                                                                               
    a2420470  __TI_decompress_lzss                                                                       
    a24205d7  Sciclient_servicePrepareHeader                                                             
    a2420685  vTaskStartScheduler                                                                        
    a24207cd  TIMERModeConfigure                                                                         
    a242086c  memset                                                                                     
    a242090d  Sciclient_serviceGetThreadIds                                                              
    a24209ab  Intc_IntRegister                                                                           
    a2420a41  pxPortInitialiseStack                                                                      
    a2420ad7  vTaskGetInfo                                                                               
    a2420b6d  xQueueGenericReset                                                                         
    a2420c03  xTaskCreateStatic                                                                          
    a2420d2d  eTaskGetState                                                                              
    a2420dbf  xQueueGenericCreateStatic                                                                  
    a2420e51  CSL_vimCfgIntr                                                                             
    a2420ee1  xTaskCheckForTimeOut                                                                       
    a2420f6b  Ipc_getIntNumRange                                                                         
    a2420ff3  extended_system_post_cinit                                                                 
    a2420ff4  __TI_ltoa                                                                                  
    a2421105  Sciclient_sendMessage                                                                      
    a2421189  Sciclient_rmTranslateIntOutput                                                             
    a242120b  xPortStartScheduler                                                                        
    a242140d  vPortFree                                                                                  
    a242148b  CacheP_wb                                                                                  
    a2421490  frexp                                                                                      
    a2421490  frexpl                                                                                     
    a242166d  xTimerCreateTimerTask                                                                      
    a24216df  TimerP_stop                                                                                
    a24217bb  extended_system_pre_init                                                                   
    a24217bc  atoi                                                                                       
    a2421828  vsnprintf                                                                                  
    a242188d  tracePrintf                                                                                
    a24218ef  vTaskPlaceOnEventListRestricted                                                            
    a2421951  xQueueGenericCreate                                                                        
    a24219b3  vPortValidateInterruptPriority                                                             
    a2421a15  Osal_RegisterInterrupt                                                                     
    a2421a71  SystemP_printf                                                                             
    a2421acd  Ipc_sciclientIrqSet                                                                        
    a2421b27  Sciclient_deinit                                                                           
    a2421c35  xTaskCreate                                                                                
    a2421c8f  Intc_Init                                                                                  
    a2421d41  vQueueAddToRegistry                                                                        
    a2421d98  __TI_auto_init_nobinit_nopinit                                                             
    a2421df1  Intc_IntUnregister                                                                         
    a2421e49  Osal_getCoreId                                                                             
    a2421e9f  vTaskShutDown                                                                              
    a2421ef5  Ipc_sciclientIrqRelease                                                                    
    a2421f49  SemaphoreP_pend                                                                            
    a2421f9c  __aeabi_ul2f                                                                               
    a2421f9c  __floatundisf                                                                              
    a2422045  Sciclient_rmGetResourceRange                                                               
    a242213b  Sciclient_abiCheck                                                                         
    a24221d7  Sciclient_flush                                                                            
    a2422223  Sciclient_osalAcquireSecureProxyAcess                                                      
    a24222bb  Mailbox_plugInterrupt                                                                      
    a2422305  Ipc_getMailboxInfoRx                                                                       
    a242234d  Ipc_getMailboxInfoTx                                                                       
    a2422395  Sciclient_rmIrqReleaseRaw                                                                  
    a24223dd  Sciclient_rmIrqSetRaw                                                                      
    a2422425  TIMERDisable                                                                               
    a242246d  TIMEREnable                                                                                
    a24224b4  memccpy                                                                                    
    a24224fd  vQueueWaitForMessageRestricted                                                             
    a2422543  TimerP_updateDefaultInfoTbl                                                                
    a2422587  uxPortReadPmuCounter                                                                       
    a24225cb  vTaskDelay                                                                                 
    a242260f  TIMERCompareSet                                                                            
    a2422651  TIMERCounterSet                                                                            
    a2422693  TIMERReloadSet                                                                             
    a24226d5  xQueueCreateCountingSemaphoreStatic                                                        
    a2422717  CSL_armR5CacheInv                                                                          
    a24227d7  vPortEnterCritical                                                                         
    a2422817  vQueueUnregisterQueue                                                                      
    a2422858  ulGetDataFaultStatusRegister                                                               
    a2422860  ulGetDataFaultAddressRegister                                                              
    a2422868  ulGetInstructionFaultStatusRegister                                                        
    a2422870  ulGetInstructionFaultAddressRegister                                                       
    a2422878  ulGetCPSR                                                                                  
    a2422880  ulDoWFI                                                                                    
    a2422888  ulDoCPSIE                                                                                  
    a2422890  ulDoCPSID                                                                                  
    a2422899  SemaphoreP_post                                                                            
    a24228d7  TIMERReset                                                                                 
    a2422915  CSL_armR5CacheWb                                                                           
    a2422951  vTaskPlaceOnEventList                                                                      
    a242298d  TimerP_Params_init                                                                         
    a2422a01  vListInsert                                                                                
    a2422a3b  CSL_vimSetIntrEnable                                                                       
    a2422a73  Ipc_getMailboxIntrRouterCfg                                                                
    a2422aab  CSL_vimGetActivePendingIntr                                                                
    a2422ae1  Sciclient_getCurrentContext                                                                
    a2422b17  SemaphoreP_delete                                                                          
    a2422b4d  vPortExitCritical                                                                          
    a2422b83  vApplicationLoadHook                                                                       
    a2422bb7  vQueueDelete                                                                               
    a2422c19  vPortConfigTimerForRunTimeStats                                                            
    a2422c49  HwiP_create                                                                                
    a2422c75  OsalArch_HwiPDelete                                                                        
    a2422ca1  TaskP_getFreertosHandle                                                                    
    a2422ccd  HwiP_clearInterrupt                                                                        
    a2422cd0  __aeabi_idiv                                                                               
    a2422cd0  __divsi3                                                                                   
    a2422d29  Intc_IntClrPend                                                                            
    a2422d53  CSL_vimClrIntrPending                                                                      
    a2422d7b  Osal_getThreadType                                                                         
    a2422da3  Sciclient_waitThread                                                                       
    a2422df5  uxQueueMessagesWaiting                                                                     
    a2422e1d  BOARD_delay                                                                                
    a2422e43  CSL_vimGetIntrType                                                                         
    a2422e69  HwiP_restore                                                                               
    a2422eb5  uxListRemove                                                                               
    a2422edb  HwiP_delete                                                                                
    a2422eff  Osal_RegisterInterrupt_initParams                                                          
    a2422f24  __aeabi_uldivmod                                                                           
    a2422f48  _args_main                                                                                 
    a2422f6d  vApplicationStackOverflowHook                                                              
    a2422f91  xTaskGetSchedulerState                                                                     
    a2422fb5  HwiP_disable                                                                               
    a2422fd7  Intc_IntPrioritySet                                                                        
    a2422ff9  Sciclient_readThread32                                                                     
    a242301b  Sciclient_osalReleaseSecureProxyAcess                                                      
    a242303b  TIMERPostedModeConfig                                                                      
    a242305c  wcslen                                                                                     
    a242307d  CSL_vimAckIntr                                                                             
    a242309b  TIMERReadModeConfig                                                                        
    a24230b9  vApplicationGetIdleTaskMemory                                                              
    a24230d7  vApplicationGetTimerTaskMemory                                                             
    a24230f5  Intc_IntDisable                                                                            
    a2423111  Intc_IntEnable                                                                             
    a242312d  Osal_delay                                                                                 
    a2423165  Sciclient_configPrmsInit                                                                   
    a242317f  TIMERIntDisable                                                                            
    a2423199  TIMERIntEnable                                                                             
    a24231b3  TIMERIntStatusClear                                                                        
    a24231cd  vTaskInternalSetTimeOutState                                                               
    a24231e7  CSL_armR5GetCpuID                                                                          
    a24231ff  HwiP_Params_init                                                                           
    a2423217  Intc_IntSetSrcType                                                                         
    a242322f  Sciclient_readThreadCount                                                                  
    a2423247  Sciclient_verifyThread                                                                     
    a242325f  _system_post_cinit                                                                         
    a2423277  pvTaskIncrementMutexHeldCount                                                              
    a242328f  xTaskGetTickCount                                                                          
    a24232a8  __TI_zero_init                                                                             
    a24232d7  Ipc_getMailboxBaseAddr                                                                     
    a24232ed  Mailbox_getMessage                                                                         
    a2423303  Sciclient_rmIrqRelease                                                                     
    a2423319  vListInitialise                                                                            
    a242332f  Mailbox_getRawNewMsgStatus                                                                 
    a2423343  Mailbox_sendMessage                                                                        
    a2423357  Osal_isInAbortContext                                                                      
    a242336c  __TI_decompress_none                                                                       
    a2423381  Intc_SystemEnable                                                                          
    a2423393  Mailbox_clrNewMsgStatus                                                                    
    a24233a5  Mailbox_disableNewMsgInt                                                                   
    a24233b7  Mailbox_enableNewMsgInt                                                                    
    a24233c9  Osal_DebugP_assert                                                                         
    a24233db  Osal_DebugP_assert_fcn                                                                     
    a24233ed  Sciclient_threadStatusReg                                                                  
    a24233ff  xPortInIsrContext                                                                          
    a2423411  DebugP_exceptionLog                                                                        
    a2423421  Intc_SystemDisable                                                                         
    a2423431  Osal_DeleteInterrupt                                                                       
    a2423440  __aeabi_memset                                                                             
    a2423440  __aeabi_memset4                                                                            
    a2423440  __aeabi_memset8                                                                            
    a2423461  ulTaskGetIdleRunTimeCounter                                                                
    a2423471  vPortYeildFromISR                                                                          
    a2423481  vTaskSuspendAll                                                                            
    a2423491  osalArch_Init                                                                              
    a242349f  vApplicationIdleHook                                                                       
    a24234ad  vTaskMissedYield                                                                           
    a24234bc  __aeabi_errno_addr                                                                         
    a24234c8  __aeabi_memclr                                                                             
    a24234c8  __aeabi_memclr4                                                                            
    a24234c8  __aeabi_memclr8                                                                            
    a24234d5  uxTaskGetNumberOfTasks                                                                     
    a24234e1  CSL_secProxyGetDataAddr                                                                    
    a24234eb  CSL_vimGetFiqVectorAddress                                                                 
    a24234f5  Mailbox_getMessageCount                                                                    
    a24234ff  TimerP_getDefaultFreqLo                                                                    
    a2423509  _system_pre_init                                                                           
    a2423513  getIpcObjInst                                                                              
    a242351d  Sciclient_service                                                                          
    a2423525  TIMERIntStatusGet                                                                          
    a242352d  TIMERWritePostedStatusGet                                                                  
    a2423534  C$$EXIT                                                                                    
    a2423534  abort                                                                                      
    a242353d  OsalArch_clearInterrupt                                                                    
    a2423543  OsalArch_disableInterrupt                                                                  
    a2423549  OsalArch_enableInterrupt                                                                   
    a242354f  Osal_ClearInterrupt                                                                        
    a2423555  Osal_DisableInterrupt                                                                      
    a242355b  Osal_EnableInterrupt                                                                       
    a2423561  vListInitialiseItem                                                                        
    a2423567  HwiP_disableInterrupt                                                                      
    a242356b  HwiP_enableInterrupt                                                                       
    a242356f  Intc_SystemRestore                                                                         
    a2423573  OsalArch_globalDisableInterrupt                                                            
    a2423577  OsalArch_globalRestoreInterrupt                                                            
    a242357b  Sciclient_rmIrqSet                                                                         
    a242357f  Sciclient_rmIrqTranslateIrOutput                                                           
    a2423583  TaskP_sleep                                                                                
    a2423587  TimerP_getDefaultFreqHi                                                                    
    a242358c  __aeabi_memcpy                                                                             
    a242358c  __aeabi_memcpy4                                                                            
    a242358c  __aeabi_memcpy8                                                                            
    a2423590  __aeabi_idiv0                                                                              
    a2423595  uiPortGetRunTimeCounterValue                                                               
    a24235a0  __aeabi_ldiv0                                                                              
    a24235c0  _sys_memory                                                                                
    a2434060  gSciclientMap                                                                              
    a2434480  gCslR5MpuCfg                                                                               
    a2434740  gRmIrqTree                                                                                 
    a24349f8  CMPEVENT_INTRTR0_outp_0_3_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_544_547                   
    a2434a00  __aeabi_ctype_table_                                                                       
    a2434a00  __aeabi_ctype_table_C                                                                      
    a2434db8  tisci_if_TIMESYNC_INTRTR0                                                                  
    a2434e1c  tisci_if_GPIOMUX_INTRTR0                                                                   
    a2434eb0  tisci_if_PCIE0                                                                             
    a2434ef4  tisci_if_NAVSS0_INTR_0                                                                     
    a2434f34  tisci_if_PCIE1                                                                             
    a2434f74  tisci_if_PCIE2                                                                             
    a2434fb4  tisci_if_PCIE3                                                                             
    a2434ff4  tisci_if_WKUP_GPIOMUX_INTRTR0                                                              
    a243515c  tisci_if_CMPEVENT_INTRTR0                                                                  
    a2435280  tisci_if_NAVSS0                                                                            
    a24352f8  tisci_if_CPSW1                                                                             
    a2435314  tisci_if_cpsw_9xuss_j7am0                                                                  
    a24353d0  tisci_if_DSS0                                                                              
    a24353e8  tisci_if_vusr_dual0                                                                        
    a2435584  tisci_if_DDR0                                                                              
    a2435594  tisci_if_DDR1                                                                              
    a24355a4  tisci_if_DDR2                                                                              
    a24355b4  tisci_if_DDR3                                                                              
    a24355c4  tisci_if_MCU_CPSW0                                                                         
    a24355d4  tisci_if_MCU_NAVSS0_INTR_ROUTER_0                                                          
    a2435604  tisci_if_MAIN2MCU_LVL_INTRTR0                                                              
    a2435610  tisci_if_MAIN2MCU_PLS_INTRTR0                                                              
    a243561c  tisci_if_MCU_NAVSS0_MCRC_0                                                                 
    a2435628  tisci_if_NAVSS0_MCRC_0                                                                     
    a2435634  tisci_if_USB0                                                                              
    a2435640  tisci_if_csi_rx_if0                                                                        
    a243564c  tisci_if_csi_rx_if1                                                                        
    a2435658  tisci_if_csi_rx_if2                                                                        
    a2435734  CMPEVENT_INTRTR0_outp_0_3_to_COMPUTE_CLUSTER0_GIC500SS_spi_544_547                         
    a243573c  CMPEVENT_INTRTR0_outp_12_15_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_108_111              
    a2435744  CMPEVENT_INTRTR0_outp_4_7_to_MAIN2MCU_PLS_INTRTR0_in_96_99                                 
    a243574c  CMPEVENT_INTRTR0_outp_8_11_to_R5FSS0_CORE0_intr_326_329                                    
    a2435754  CMPEVENT_INTRTR0_outp_8_11_to_R5FSS0_CORE1_intr_326_329                                    
    a243575c  CMPEVENT_INTRTR0_outp_8_11_to_R5FSS1_CORE0_intr_326_329                                    
    a2435764  CMPEVENT_INTRTR0_outp_8_11_to_R5FSS1_CORE1_intr_326_329                                    
    a243576c  CMPEVENT_INTRTR0_outp_8_11_to_R5FSS2_CORE0_intr_326_329                                    
    a2435774  CMPEVENT_INTRTR0_outp_8_11_to_R5FSS2_CORE1_intr_326_329                                    
    a243577c  CODEC0_vpu_wave521cl_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_263_263                           
    a2435784  CODEC1_vpu_wave521cl_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_264_264                           
    a243578c  CPSW1_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_11_11                                           
    a2435794  CPSW1_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_18_18                                          
    a243579c  CPSW1_cpts_genf1_2_2_to_TIMESYNC_INTRTR0_in_19_19                                          
    a24357a4  CPSW1_cpts_sync_3_3_to_TIMESYNC_INTRTR0_in_39_39                                           
    a24357ac  CPSW1_evnt_pend_4_4_to_MAIN2MCU_LVL_INTRTR0_in_72_72                                       
    a24357b4  CPSW1_mdio_pend_5_5_to_MAIN2MCU_LVL_INTRTR0_in_71_71                                       
    a24357bc  CPSW1_stat_pend_6_6_to_MAIN2MCU_LVL_INTRTR0_in_70_70                                       
    a24357c4  CSI_TX_IF0_csi_interrupt_0_0_to_MAIN2MCU_LVL_INTRTR0_in_250_250                            
    a24357cc  CSI_TX_IF0_csi_level_1_1_to_MAIN2MCU_LVL_INTRTR0_in_251_251                                
    a24357d4  CSI_TX_IF1_csi_interrupt_0_0_to_MAIN2MCU_LVL_INTRTR0_in_248_248                            
    a24357dc  CSI_TX_IF1_csi_level_1_1_to_MAIN2MCU_LVL_INTRTR0_in_249_249                                
    a24357e4  DCC0_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_88_88                                  
    a24357ec  DCC1_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_89_89                                  
    a24357f4  DCC2_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_90_90                                  
    a24357fc  DCC3_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_91_91                                  
    a2435804  DCC4_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_92_92                                  
    a243580c  DCC5_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_93_93                                  
    a2435814  DCC6_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_94_94                                  
    a243581c  DCC7_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_95_95                                  
    a2435824  DCC8_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_208_208                                
    a243582c  DCC9_intr_done_level_0_0_to_MAIN2MCU_LVL_INTRTR0_in_209_209                                
    a2435834  DDR0_ddrss_controller_0_0_to_MAIN2MCU_LVL_INTRTR0_in_10_10                                 
    a243583c  DDR0_ddrss_hs_phy_global_error_1_1_to_MAIN2MCU_LVL_INTRTR0_in_12_12                        
    a2435844  DDR0_ddrss_pll_freq_change_req_2_2_to_MAIN2MCU_LVL_INTRTR0_in_9_9                          
    a243584c  DDR0_ddrss_v2a_other_err_lvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_11_11                          
    a2435854  DDR1_ddrss_controller_0_0_to_MAIN2MCU_LVL_INTRTR0_in_64_64                                 
    a243585c  DDR1_ddrss_hs_phy_global_error_1_1_to_MAIN2MCU_LVL_INTRTR0_in_66_66                        
    a2435864  DDR1_ddrss_pll_freq_change_req_2_2_to_MAIN2MCU_LVL_INTRTR0_in_63_63                        
    a243586c  DDR1_ddrss_v2a_other_err_lvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_65_65                          
    a2435874  DDR2_ddrss_controller_0_0_to_MAIN2MCU_LVL_INTRTR0_in_201_201                               
    a243587c  DDR2_ddrss_hs_phy_global_error_1_1_to_MAIN2MCU_LVL_INTRTR0_in_203_203                      
    a2435884  DDR2_ddrss_pll_freq_change_req_2_2_to_MAIN2MCU_LVL_INTRTR0_in_200_200                      
    a243588c  DDR2_ddrss_v2a_other_err_lvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_202_202                        
    a2435894  DDR3_ddrss_controller_0_0_to_MAIN2MCU_LVL_INTRTR0_in_149_149                               
    a243589c  DDR3_ddrss_hs_phy_global_error_1_1_to_MAIN2MCU_LVL_INTRTR0_in_151_151                      
    a24358a4  DDR3_ddrss_pll_freq_change_req_2_2_to_MAIN2MCU_LVL_INTRTR0_in_148_148                      
    a24358ac  DDR3_ddrss_v2a_other_err_lvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_150_150                        
    a24358b4  DMPAC0_INTD_0_system_intr_level_0_1_to_MAIN2MCU_LVL_INTRTR0_in_268_269                     
    a24358bc  DSS0_dss_inst0_dispc_func_irq_proc0_0_0_to_MAIN2MCU_LVL_INTRTR0_in_226_226                 
    a24358c4  DSS0_dss_inst0_dispc_func_irq_proc1_1_1_to_MAIN2MCU_LVL_INTRTR0_in_227_227                 
    a24358cc  DSS0_dss_inst0_dispc_safety_error_irq_proc0_2_2_to_MAIN2MCU_LVL_INTRTR0_in_230_230         
    a24358d4  DSS0_dss_inst0_dispc_safety_error_irq_proc1_3_3_to_MAIN2MCU_LVL_INTRTR0_in_231_231         
    a24358dc  DSS0_dss_inst0_dispc_secure_irq_proc0_4_4_to_MAIN2MCU_LVL_INTRTR0_in_228_228               
    a24358e4  DSS0_dss_inst0_dispc_secure_irq_proc1_5_5_to_MAIN2MCU_LVL_INTRTR0_in_229_229               
    a24358ec  DSS_DSI0_dsi_0_func_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_224_224                            
    a24358f4  DSS_DSI1_dsi_0_func_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_225_225                            
    a24358fc  DSS_EDP0_intr_0_3_to_MAIN2MCU_LVL_INTRTR0_in_238_241                                       
    a2435904  ECAP0_ecap_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_17_17                                        
    a243590c  ECAP1_ecap_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_18_18                                        
    a2435914  ECAP2_ecap_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_19_19                                        
    a243591c  ELM0_elm_porocpsinterrupt_lvl_0_0_to_MAIN2MCU_LVL_INTRTR0_in_7_7                           
    a2435924  EPWM0_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_2_2                                        
    a243592c  EPWM0_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_8_8                                     
    a2435934  EPWM1_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_3_3                                        
    a243593c  EPWM1_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_9_9                                     
    a2435944  EPWM2_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_4_4                                        
    a243594c  EPWM2_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_10_10                                   
    a2435954  EPWM3_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_5_5                                        
    a243595c  EPWM3_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_11_11                                   
    a2435964  EPWM4_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_6_6                                        
    a243596c  EPWM4_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_12_12                                   
    a2435974  EPWM5_epwm_etint_0_0_to_MAIN2MCU_PLS_INTRTR0_in_7_7                                        
    a243597c  EPWM5_epwm_tripzint_1_1_to_MAIN2MCU_PLS_INTRTR0_in_13_13                                   
    a2435984  EQEP0_eqep_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_14_14                                        
    a243598c  EQEP1_eqep_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_15_15                                        
    a2435994  EQEP2_eqep_int_0_0_to_MAIN2MCU_PLS_INTRTR0_in_16_16                                        
    a243599c  GPIO0_gpio_bank_0_7_to_GPIOMUX_INTRTR0_in_145_152                                          
    a24359a4  GPIO2_gpio_bank_0_7_to_GPIOMUX_INTRTR0_in_154_161                                          
    a24359ac  GPIO4_gpio_bank_0_7_to_GPIOMUX_INTRTR0_in_163_170                                          
    a24359b4  GPIO6_gpio_bank_0_7_to_GPIOMUX_INTRTR0_in_172_179                                          
    a24359bc  GPIOMUX_INTRTR0_outp_0_15_to_R5FSS0_CORE0_intr_396_411                                     
    a24359c4  GPIOMUX_INTRTR0_outp_0_15_to_R5FSS0_CORE1_intr_396_411                                     
    a24359cc  GPIOMUX_INTRTR0_outp_0_15_to_R5FSS1_CORE0_intr_396_411                                     
    a24359d4  GPIOMUX_INTRTR0_outp_0_15_to_R5FSS1_CORE1_intr_396_411                                     
    a24359dc  GPIOMUX_INTRTR0_outp_0_15_to_R5FSS2_CORE0_intr_396_411                                     
    a24359e4  GPIOMUX_INTRTR0_outp_0_15_to_R5FSS2_CORE1_intr_396_411                                     
    a24359ec  GPIOMUX_INTRTR0_outp_0_31_to_MAIN2MCU_PLS_INTRTR0_in_64_95                                 
    a24359f4  GPIOMUX_INTRTR0_outp_0_7_to_ESM0_esm_pls_event0_664_671                                    
    a24359fc  GPIOMUX_INTRTR0_outp_0_7_to_ESM0_esm_pls_event1_672_679                                    
    a2435a04  GPIOMUX_INTRTR0_outp_0_7_to_ESM0_esm_pls_event2_680_687                                    
    a2435a0c  GPIOMUX_INTRTR0_outp_16_31_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_116_131               
    a2435a14  GPIOMUX_INTRTR0_outp_16_31_to_R5FSS0_CORE0_intr_176_191                                    
    a2435a1c  GPIOMUX_INTRTR0_outp_16_31_to_R5FSS0_CORE1_intr_176_191                                    
    a2435a24  GPIOMUX_INTRTR0_outp_16_31_to_R5FSS1_CORE0_intr_176_191                                    
    a2435a2c  GPIOMUX_INTRTR0_outp_16_31_to_R5FSS1_CORE1_intr_176_191                                    
    a2435a34  GPIOMUX_INTRTR0_outp_16_31_to_R5FSS2_CORE0_intr_176_191                                    
    a2435a3c  GPIOMUX_INTRTR0_outp_16_31_to_R5FSS2_CORE1_intr_176_191                                    
    a2435a44  GPIOMUX_INTRTR0_outp_8_63_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_392_447                   
    a2435a4c  GPIOMUX_INTRTR0_outp_8_63_to_COMPUTE_CLUSTER0_GIC500SS_spi_392_447                         
    a2435a54  GPMC0_gpmc_sinterrupt_0_0_to_MAIN2MCU_LVL_INTRTR0_in_8_8                                   
    a2435a5c  GTC0_gtc_push_event_0_0_to_TIMESYNC_INTRTR0_in_1_1                                         
    a2435a64  I2C0_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_56_56                                       
    a2435a6c  I2C1_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_57_57                                       
    a2435a74  I2C2_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_58_58                                       
    a2435a7c  I2C3_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_59_59                                       
    a2435a84  I2C4_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_60_60                                       
    a2435a8c  I2C5_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_61_61                                       
    a2435a94  I2C6_pointrpend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_62_62                                       
    a2435a9c  J7AEP_GPU_BXS464_WRAP0_GPU_SS_0_os_irq_0_3_to_MAIN2MCU_LVL_INTRTR0_in_312_315              
    a2435aa4  MAIN2MCU_LVL_INTRTR0_outl_0_63_to_MCU_R5FSS0_CORE0_intr_160_223                            
    a2435aac  MAIN2MCU_LVL_INTRTR0_outl_0_63_to_MCU_R5FSS0_CORE1_intr_160_223                            
    a2435ab4  MAIN2MCU_LVL_INTRTR0_outl_56_63_to_WKUP_HSM0_nvic_64_71                                    
    a2435abc  MAIN2MCU_PLS_INTRTR0_outp_0_47_to_MCU_R5FSS0_CORE0_intr_224_271                            
    a2435ac4  MAIN2MCU_PLS_INTRTR0_outp_0_47_to_MCU_R5FSS0_CORE1_intr_224_271                            
    a2435acc  MAIN2MCU_PLS_INTRTR0_outp_40_47_to_WKUP_HSM0_nvic_72_79                                    
    a2435ad4  MCAN0_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_18_18                  
    a2435adc  MCAN0_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_16_17                             
    a2435ae4  MCAN10_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_298_298               
    a2435aec  MCAN10_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_296_297                          
    a2435af4  MCAN11_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_301_301               
    a2435afc  MCAN11_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_299_300                          
    a2435b04  MCAN12_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_304_304               
    a2435b0c  MCAN12_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_302_303                          
    a2435b14  MCAN13_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_307_307               
    a2435b1c  MCAN13_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_305_306                          
    a2435b24  MCAN14_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_162_162               
    a2435b2c  MCAN14_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_160_161                          
    a2435b34  MCAN15_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_165_165               
    a2435b3c  MCAN15_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_163_164                          
    a2435b44  MCAN16_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_172_172               
    a2435b4c  MCAN16_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_170_171                          
    a2435b54  MCAN17_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_175_175               
    a2435b5c  MCAN17_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_173_174                          
    a2435b64  MCAN1_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_21_21                  
    a2435b6c  MCAN1_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_19_20                             
    a2435b74  MCAN2_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_24_24                  
    a2435b7c  MCAN2_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_22_23                             
    a2435b84  MCAN3_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_27_27                  
    a2435b8c  MCAN3_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_25_26                             
    a2435b94  MCAN4_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_280_280                
    a2435b9c  MCAN4_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_278_279                           
    a2435ba4  MCAN5_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_283_283                
    a2435bac  MCAN5_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_281_282                           
    a2435bb4  MCAN6_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_286_286                
    a2435bbc  MCAN6_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_284_285                           
    a2435bc4  MCAN7_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_289_289                
    a2435bcc  MCAN7_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_287_288                           
    a2435bd4  MCAN8_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_292_292                
    a2435bdc  MCAN8_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_290_291                           
    a2435be4  MCAN9_mcanss_ext_ts_rollover_lvl_int_0_0_to_MAIN2MCU_LVL_INTRTR0_in_295_295                
    a2435bec  MCAN9_mcanss_mcan_lvl_int_1_2_to_MAIN2MCU_LVL_INTRTR0_in_293_294                           
    a2435bf4  MCASP0_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_177_177                                
    a2435bfc  MCASP0_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_176_176                               
    a2435c04  MCASP1_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_179_179                                
    a2435c0c  MCASP1_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_178_178                               
    a2435c14  MCASP2_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_181_181                                
    a2435c1c  MCASP2_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_180_180                               
    a2435c24  MCASP3_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_183_183                                
    a2435c2c  MCASP3_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_182_182                               
    a2435c34  MCASP4_rec_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_185_185                                
    a2435c3c  MCASP4_xmit_intr_pend_1_1_to_MAIN2MCU_LVL_INTRTR0_in_184_184                               
    a2435c44  MCSPI0_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_48_48                                       
    a2435c4c  MCSPI1_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_49_49                                       
    a2435c54  MCSPI2_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_50_50                                       
    a2435c5c  MCSPI3_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_51_51                                       
    a2435c64  MCSPI4_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_52_52                                       
    a2435c6c  MCSPI5_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_53_53                                       
    a2435c74  MCSPI6_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_54_54                                       
    a2435c7c  MCSPI7_intr_spi_0_0_to_MAIN2MCU_LVL_INTRTR0_in_55_55                                       
    a2435c84  MCU_CPSW0_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_10_10                                       
    a2435c8c  MCU_CPSW0_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_16_16                                      
    a2435c94  MCU_CPSW0_cpts_genf1_2_2_to_TIMESYNC_INTRTR0_in_17_17                                      
    a2435c9c  MCU_CPSW0_cpts_sync_3_3_to_TIMESYNC_INTRTR0_in_38_38                                       
    a2435ca4  MCU_NAVSS0_INTR_ROUTER_0_outl_intr_0_23_to_MCU_R5FSS0_CORE0_intr_64_87                     
    a2435cac  MCU_NAVSS0_INTR_ROUTER_0_outl_intr_24_31_to_WKUP_HSM0_nvic_48_55                           
    a2435cb4  MCU_NAVSS0_INTR_ROUTER_0_outl_intr_32_55_to_MCU_R5FSS0_CORE1_intr_64_87                    
    a2435cbc  MCU_NAVSS0_INTR_ROUTER_0_outl_intr_56_63_to_WKUP_HSM0_nvic_56_63                           
    a2435cc4  MCU_NAVSS0_MCRC_0_dma_event_intr_0_3_to_MCU_NAVSS0_INTR_ROUTER_0_in_intr_256_259           
    a2435ccc  MCU_NAVSS0_MCRC_0_dma_event_intr_0_3_to_MCU_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_0_3     
    a2435cd4  MCU_NAVSS0_MCRC_0_intaggr_vintr_pend_4_4_to_MCU_NAVSS0_INTR_ROUTER_0_in_intr_260_260       
    a2435cdc  MCU_NAVSS0_UDMASS_INTA_0_intaggr_vintr_pend_0_255_to_MCU_NAVSS0_INTR_ROUTER_0_in_intr_0_255
    a2435ce4  MMCSD0_emmcss_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_28_28                                    
    a2435cec  MMCSD1_emmcsdss_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_29_29                                  
    a2435cf4  NAVSS0_CPTS_0_event_pend_intr_0_0_to_NAVSS0_INTR_0_in_intr_391_391                         
    a2435cfc  NAVSS0_INTR_0_outl_intr_0_63_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_64_127                 
    a2435d04  NAVSS0_INTR_0_outl_intr_0_63_to_COMPUTE_CLUSTER0_GIC500SS_spi_64_127                       
    a2435d0c  NAVSS0_INTR_0_outl_intr_128_191_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_672_735             
    a2435d14  NAVSS0_INTR_0_outl_intr_128_191_to_COMPUTE_CLUSTER0_GIC500SS_spi_672_735                   
    a2435d1c  NAVSS0_INTR_0_outl_intr_192_223_to_R5FSS0_CORE0_intr_224_255                               
    a2435d24  NAVSS0_INTR_0_outl_intr_224_255_to_R5FSS0_CORE1_intr_224_255                               
    a2435d2c  NAVSS0_INTR_0_outl_intr_256_287_to_R5FSS1_CORE0_intr_224_255                               
    a2435d34  NAVSS0_INTR_0_outl_intr_288_319_to_R5FSS1_CORE1_intr_224_255                               
    a2435d3c  NAVSS0_INTR_0_outl_intr_320_351_to_R5FSS2_CORE0_intr_224_255                               
    a2435d44  NAVSS0_INTR_0_outl_intr_352_383_to_R5FSS2_CORE1_intr_224_255                               
    a2435d4c  NAVSS0_INTR_0_outl_intr_400_407_to_MCU_R5FSS0_CORE0_intr_376_383                           
    a2435d54  NAVSS0_INTR_0_outl_intr_400_407_to_MCU_R5FSS0_CORE1_intr_376_383                           
    a2435d5c  NAVSS0_INTR_0_outl_intr_408_439_to_vusr_dual0_v0_vusr_in_int_0_31                          
    a2435d64  NAVSS0_INTR_0_outl_intr_408_439_to_vusr_dual0_v1_vusr_in_int_32_63                         
    a2435d6c  NAVSS0_INTR_0_outl_intr_64_127_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_448_511              
    a2435d74  NAVSS0_INTR_0_outl_intr_64_127_to_COMPUTE_CLUSTER0_GIC500SS_spi_448_511                    
    a2435d7c  NAVSS0_MAILBOX1_0_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_484_487                           
    a2435d84  NAVSS0_MAILBOX1_0_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_4_7              
    a2435d8c  NAVSS0_MAILBOX1_10_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_444_447                          
    a2435d94  NAVSS0_MAILBOX1_10_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_44_47           
    a2435d9c  NAVSS0_MAILBOX1_11_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_440_443                          
    a2435da4  NAVSS0_MAILBOX1_11_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_48_51           
    a2435dac  NAVSS0_MAILBOX1_1_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_480_483                           
    a2435db4  NAVSS0_MAILBOX1_1_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_8_11             
    a2435dbc  NAVSS0_MAILBOX1_2_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_476_479                           
    a2435dc4  NAVSS0_MAILBOX1_2_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_12_15            
    a2435dcc  NAVSS0_MAILBOX1_3_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_472_475                           
    a2435dd4  NAVSS0_MAILBOX1_3_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_16_19            
    a2435ddc  NAVSS0_MAILBOX1_4_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_468_471                           
    a2435de4  NAVSS0_MAILBOX1_4_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_20_23            
    a2435dec  NAVSS0_MAILBOX1_5_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_464_467                           
    a2435df4  NAVSS0_MAILBOX1_5_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_24_27            
    a2435dfc  NAVSS0_MAILBOX1_6_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_460_463                           
    a2435e04  NAVSS0_MAILBOX1_6_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_28_31            
    a2435e0c  NAVSS0_MAILBOX1_7_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_456_459                           
    a2435e14  NAVSS0_MAILBOX1_7_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_32_35            
    a2435e1c  NAVSS0_MAILBOX1_8_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_452_455                           
    a2435e24  NAVSS0_MAILBOX1_8_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_36_39            
    a2435e2c  NAVSS0_MAILBOX1_9_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_448_451                           
    a2435e34  NAVSS0_MAILBOX1_9_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_40_43            
    a2435e3c  NAVSS0_MAILBOX_0_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_436_439                            
    a2435e44  NAVSS0_MAILBOX_0_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_52_55             
    a2435e4c  NAVSS0_MAILBOX_10_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_396_399                           
    a2435e54  NAVSS0_MAILBOX_10_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_92_95            
    a2435e5c  NAVSS0_MAILBOX_11_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_392_395                           
    a2435e64  NAVSS0_MAILBOX_11_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_96_99            
    a2435e6c  NAVSS0_MAILBOX_1_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_432_435                            
    a2435e74  NAVSS0_MAILBOX_1_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_56_59             
    a2435e7c  NAVSS0_MAILBOX_2_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_428_431                            
    a2435e84  NAVSS0_MAILBOX_2_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_60_63             
    a2435e8c  NAVSS0_MAILBOX_3_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_424_427                            
    a2435e94  NAVSS0_MAILBOX_3_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_64_67             
    a2435e9c  NAVSS0_MAILBOX_4_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_420_423                            
    a2435ea4  NAVSS0_MAILBOX_4_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_68_71             
    a2435eac  NAVSS0_MAILBOX_5_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_416_419                            
    a2435eb4  NAVSS0_MAILBOX_5_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_72_75             
    a2435ebc  NAVSS0_MAILBOX_6_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_412_415                            
    a2435ec4  NAVSS0_MAILBOX_6_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_76_79             
    a2435ecc  NAVSS0_MAILBOX_7_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_408_411                            
    a2435ed4  NAVSS0_MAILBOX_7_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_80_83             
    a2435edc  NAVSS0_MAILBOX_8_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_404_407                            
    a2435ee4  NAVSS0_MAILBOX_8_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_84_87             
    a2435eec  NAVSS0_MAILBOX_9_pend_intr_0_3_to_NAVSS0_INTR_0_in_intr_400_403                            
    a2435ef4  NAVSS0_MAILBOX_9_pend_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_88_91             
    a2435efc  NAVSS0_MCRC_0_dma_event_intr_0_3_to_NAVSS0_INTR_0_in_intr_384_387                          
    a2435f04  NAVSS0_MCRC_0_dma_event_intr_0_3_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_0_3             
    a2435f0c  NAVSS0_MCRC_0_intaggr_vintr_pend_4_4_to_NAVSS0_INTR_0_in_intr_388_388                      
    a2435f14  NAVSS0_MODSS_INTA_0_intaggr_vintr_pend_0_63_to_NAVSS0_INTR_0_in_intr_320_383               
    a2435f1c  NAVSS0_MODSS_INTA_1_intaggr_vintr_pend_0_63_to_NAVSS0_INTR_0_in_intr_256_319               
    a2435f24  NAVSS0_PVU_0_exp_intr_0_0_to_NAVSS0_INTR_0_in_intr_489_489                                 
    a2435f2c  NAVSS0_PVU_1_exp_intr_0_0_to_NAVSS0_INTR_0_in_intr_488_488                                 
    a2435f34  NAVSS0_UDMASS_INTA_0_intaggr_vintr_pend_0_255_to_NAVSS0_INTR_0_in_intr_0_255               
    a2435f3c  NAVSS0_cpts0_comp_0_0_to_CMPEVENT_INTRTR0_in_8_8                                           
    a2435f44  NAVSS0_cpts0_genf0_1_1_to_TIMESYNC_INTRTR0_in_4_4                                          
    a2435f4c  NAVSS0_cpts0_genf1_2_2_to_TIMESYNC_INTRTR0_in_5_5                                          
    a2435f54  NAVSS0_cpts0_genf2_3_3_to_TIMESYNC_INTRTR0_in_6_6                                          
    a2435f5c  NAVSS0_cpts0_genf3_4_4_to_TIMESYNC_INTRTR0_in_7_7                                          
    a2435f64  NAVSS0_cpts0_genf4_5_5_to_TIMESYNC_INTRTR0_in_8_8                                          
    a2435f6c  NAVSS0_cpts0_genf5_6_6_to_TIMESYNC_INTRTR0_in_9_9                                          
    a2435f74  NAVSS0_cpts0_sync_7_7_to_TIMESYNC_INTRTR0_in_36_36                                         
    a2435f7c  PCIE0_pcie_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_4_4                                        
    a2435f84  PCIE0_pcie_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_10_10                                     
    a2435f8c  PCIE0_pcie_cpts_hw1_push_2_2_to_TIMESYNC_INTRTR0_in_20_20                                  
    a2435f94  PCIE0_pcie_cpts_pend_3_3_to_MAIN2MCU_LVL_INTRTR0_in_69_69                                  
    a2435f9c  PCIE0_pcie_cpts_sync_4_4_to_TIMESYNC_INTRTR0_in_32_32                                      
    a2435fa4  PCIE0_pcie_downstream_pulse_5_5_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_345_345             
    a2435fac  PCIE0_pcie_downstream_pulse_5_5_to_MAIN2MCU_PLS_INTRTR0_in_33_33                           
    a2435fb4  PCIE0_pcie_dpa_pulse_6_6_to_MAIN2MCU_PLS_INTRTR0_in_20_20                                  
    a2435fbc  PCIE0_pcie_error_pulse_7_7_to_MAIN2MCU_PLS_INTRTR0_in_35_35                                
    a2435fc4  PCIE0_pcie_flr_pulse_8_8_to_MAIN2MCU_PLS_INTRTR0_in_34_34                                  
    a2435fcc  PCIE0_pcie_hot_reset_pulse_9_9_to_MAIN2MCU_PLS_INTRTR0_in_39_39                            
    a2435fd4  PCIE0_pcie_legacy_pulse_10_10_to_MAIN2MCU_PLS_INTRTR0_in_32_32                             
    a2435fdc  PCIE0_pcie_link_state_pulse_11_11_to_MAIN2MCU_PLS_INTRTR0_in_36_36                         
    a2435fe4  PCIE0_pcie_local_level_12_12_to_MAIN2MCU_LVL_INTRTR0_in_68_68                              
    a2435fec  PCIE0_pcie_phy_level_13_13_to_MAIN2MCU_LVL_INTRTR0_in_67_67                                
    a2435ff4  PCIE0_pcie_ptm_valid_pulse_14_14_to_MAIN2MCU_PLS_INTRTR0_in_38_38                          
    a2435ffc  PCIE0_pcie_pwr_state_pulse_15_15_to_MAIN2MCU_PLS_INTRTR0_in_37_37                          
    a2436004  PCIE1_pcie_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_5_5                                        
    a243600c  PCIE1_pcie_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_11_11                                     
    a2436014  PCIE1_pcie_cpts_hw1_push_2_2_to_TIMESYNC_INTRTR0_in_21_21                                  
    a243601c  PCIE1_pcie_cpts_pend_3_3_to_MAIN2MCU_LVL_INTRTR0_in_75_75                                  
    a2436024  PCIE1_pcie_cpts_sync_4_4_to_TIMESYNC_INTRTR0_in_33_33                                      
    a243602c  PCIE1_pcie_downstream_pulse_5_5_to_MAIN2MCU_PLS_INTRTR0_in_41_41                           
    a2436034  PCIE1_pcie_dpa_pulse_6_6_to_MAIN2MCU_PLS_INTRTR0_in_21_21                                  
    a243603c  PCIE1_pcie_error_pulse_7_7_to_MAIN2MCU_PLS_INTRTR0_in_43_43                                
    a2436044  PCIE1_pcie_flr_pulse_8_8_to_MAIN2MCU_PLS_INTRTR0_in_42_42                                  
    a243604c  PCIE1_pcie_hot_reset_pulse_9_9_to_MAIN2MCU_PLS_INTRTR0_in_47_47                            
    a2436054  PCIE1_pcie_legacy_pulse_10_10_to_MAIN2MCU_PLS_INTRTR0_in_40_40                             
    a243605c  PCIE1_pcie_link_state_pulse_11_11_to_MAIN2MCU_PLS_INTRTR0_in_44_44                         
    a2436064  PCIE1_pcie_local_level_12_12_to_MAIN2MCU_LVL_INTRTR0_in_74_74                              
    a243606c  PCIE1_pcie_phy_level_13_13_to_MAIN2MCU_LVL_INTRTR0_in_73_73                                
    a2436074  PCIE1_pcie_ptm_valid_pulse_14_14_to_MAIN2MCU_PLS_INTRTR0_in_46_46                          
    a243607c  PCIE1_pcie_pwr_state_pulse_15_15_to_MAIN2MCU_PLS_INTRTR0_in_45_45                          
    a2436084  PCIE2_pcie_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_6_6                                        
    a243608c  PCIE2_pcie_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_12_12                                     
    a2436094  PCIE2_pcie_cpts_hw1_push_2_2_to_TIMESYNC_INTRTR0_in_22_22                                  
    a243609c  PCIE2_pcie_cpts_pend_3_3_to_MAIN2MCU_LVL_INTRTR0_in_78_78                                  
    a24360a4  PCIE2_pcie_cpts_sync_4_4_to_TIMESYNC_INTRTR0_in_34_34                                      
    a24360ac  PCIE2_pcie_downstream_pulse_5_5_to_MAIN2MCU_PLS_INTRTR0_in_49_49                           
    a24360b4  PCIE2_pcie_dpa_pulse_6_6_to_MAIN2MCU_PLS_INTRTR0_in_22_22                                  
    a24360bc  PCIE2_pcie_error_pulse_7_7_to_MAIN2MCU_PLS_INTRTR0_in_51_51                                
    a24360c4  PCIE2_pcie_flr_pulse_8_8_to_MAIN2MCU_PLS_INTRTR0_in_50_50                                  
    a24360cc  PCIE2_pcie_hot_reset_pulse_9_9_to_MAIN2MCU_PLS_INTRTR0_in_55_55                            
    a24360d4  PCIE2_pcie_legacy_pulse_10_10_to_MAIN2MCU_PLS_INTRTR0_in_48_48                             
    a24360dc  PCIE2_pcie_link_state_pulse_11_11_to_MAIN2MCU_PLS_INTRTR0_in_52_52                         
    a24360e4  PCIE2_pcie_local_level_12_12_to_MAIN2MCU_LVL_INTRTR0_in_77_77                              
    a24360ec  PCIE2_pcie_phy_level_13_13_to_MAIN2MCU_LVL_INTRTR0_in_76_76                                
    a24360f4  PCIE2_pcie_ptm_valid_pulse_14_14_to_MAIN2MCU_PLS_INTRTR0_in_54_54                          
    a24360fc  PCIE2_pcie_pwr_state_pulse_15_15_to_MAIN2MCU_PLS_INTRTR0_in_53_53                          
    a2436104  PCIE3_pcie_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_7_7                                        
    a243610c  PCIE3_pcie_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_13_13                                     
    a2436114  PCIE3_pcie_cpts_hw1_push_2_2_to_TIMESYNC_INTRTR0_in_23_23                                  
    a243611c  PCIE3_pcie_cpts_pend_3_3_to_MAIN2MCU_LVL_INTRTR0_in_81_81                                  
    a2436124  PCIE3_pcie_cpts_sync_4_4_to_TIMESYNC_INTRTR0_in_35_35                                      
    a243612c  PCIE3_pcie_downstream_pulse_5_5_to_MAIN2MCU_PLS_INTRTR0_in_57_57                           
    a2436134  PCIE3_pcie_dpa_pulse_6_6_to_MAIN2MCU_PLS_INTRTR0_in_23_23                                  
    a243613c  PCIE3_pcie_error_pulse_7_7_to_MAIN2MCU_PLS_INTRTR0_in_59_59                                
    a2436144  PCIE3_pcie_flr_pulse_8_8_to_MAIN2MCU_PLS_INTRTR0_in_58_58                                  
    a243614c  PCIE3_pcie_hot_reset_pulse_9_9_to_MAIN2MCU_PLS_INTRTR0_in_63_63                            
    a2436154  PCIE3_pcie_legacy_pulse_10_10_to_MAIN2MCU_PLS_INTRTR0_in_56_56                             
    a243615c  PCIE3_pcie_link_state_pulse_11_11_to_MAIN2MCU_PLS_INTRTR0_in_60_60                         
    a2436164  PCIE3_pcie_local_level_12_12_to_MAIN2MCU_LVL_INTRTR0_in_80_80                              
    a243616c  PCIE3_pcie_phy_level_13_13_to_MAIN2MCU_LVL_INTRTR0_in_79_79                                
    a2436174  PCIE3_pcie_ptm_valid_pulse_14_14_to_MAIN2MCU_PLS_INTRTR0_in_62_62                          
    a243617c  PCIE3_pcie_pwr_state_pulse_15_15_to_MAIN2MCU_PLS_INTRTR0_in_61_61                          
    a2436184  SA2_UL0_sa_ul_pka_0_0_to_MAIN2MCU_LVL_INTRTR0_in_5_5                                       
    a243618c  SA2_UL0_sa_ul_trng_1_1_to_MAIN2MCU_LVL_INTRTR0_in_4_4                                      
    a2436194  TIMER0_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_108_108                                    
    a243619c  TIMER10_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_118_118                                   
    a24361a4  TIMER11_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_119_119                                   
    a24361ac  TIMER12_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_120_120                                   
    a24361b4  TIMER13_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_121_121                                   
    a24361bc  TIMER14_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_122_122                                   
    a24361c4  TIMER14_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_2_2                                           
    a24361cc  TIMER15_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_123_123                                   
    a24361d4  TIMER15_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_3_3                                           
    a24361dc  TIMER16_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_124_124                                   
    a24361e4  TIMER16_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_40_40                                         
    a24361ec  TIMER17_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_125_125                                   
    a24361f4  TIMER17_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_41_41                                         
    a24361fc  TIMER18_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_126_126                                   
    a2436204  TIMER18_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_42_42                                         
    a243620c  TIMER19_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_127_127                                   
    a2436214  TIMER19_timer_pwm_1_1_to_TIMESYNC_INTRTR0_in_43_43                                         
    a243621c  TIMER1_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_109_109                                    
    a2436224  TIMER2_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_110_110                                    
    a243622c  TIMER3_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_111_111                                    
    a2436234  TIMER4_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_112_112                                    
    a243623c  TIMER5_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_113_113                                    
    a2436244  TIMER6_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_114_114                                    
    a243624c  TIMER7_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_115_115                                    
    a2436254  TIMER8_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_116_116                                    
    a243625c  TIMER9_intr_pend_0_0_to_MAIN2MCU_LVL_INTRTR0_in_117_117                                    
    a2436264  TIMESYNC_INTRTR0_outl_0_0_to_NAVSS0_cpts0_hw1_push_0_0                                     
    a243626c  TIMESYNC_INTRTR0_outl_1_1_to_NAVSS0_cpts0_hw2_push_1_1                                     
    a2436274  TIMESYNC_INTRTR0_outl_20_20_to_PCIE0_pcie_cpts_hw2_push_0_0                                
    a243627c  TIMESYNC_INTRTR0_outl_21_21_to_PCIE1_pcie_cpts_hw2_push_0_0                                
    a2436284  TIMESYNC_INTRTR0_outl_22_22_to_PCIE2_pcie_cpts_hw2_push_0_0                                
    a243628c  TIMESYNC_INTRTR0_outl_23_23_to_PCIE3_pcie_cpts_hw2_push_0_0                                
    a2436294  TIMESYNC_INTRTR0_outl_24_24_to_MCU_CPSW0_cpts_hw3_push_0_0                                 
    a243629c  TIMESYNC_INTRTR0_outl_25_25_to_MCU_CPSW0_cpts_hw4_push_1_1                                 
    a24362a4  TIMESYNC_INTRTR0_outl_26_26_to_cpsw_9xuss_j7am0_cpts_hw1_push_0_0                          
    a24362ac  TIMESYNC_INTRTR0_outl_27_27_to_cpsw_9xuss_j7am0_cpts_hw2_push_1_1                          
    a24362b4  TIMESYNC_INTRTR0_outl_28_28_to_cpsw_9xuss_j7am0_cpts_hw3_push_2_2                          
    a24362bc  TIMESYNC_INTRTR0_outl_29_29_to_cpsw_9xuss_j7am0_cpts_hw4_push_3_3                          
    a24362c4  TIMESYNC_INTRTR0_outl_2_2_to_NAVSS0_cpts0_hw3_push_2_2                                     
    a24362cc  TIMESYNC_INTRTR0_outl_30_30_to_cpsw_9xuss_j7am0_cpts_hw5_push_4_4                          
    a24362d4  TIMESYNC_INTRTR0_outl_31_31_to_cpsw_9xuss_j7am0_cpts_hw6_push_5_5                          
    a24362dc  TIMESYNC_INTRTR0_outl_32_32_to_cpsw_9xuss_j7am0_cpts_hw7_push_6_6                          
    a24362e4  TIMESYNC_INTRTR0_outl_33_33_to_cpsw_9xuss_j7am0_cpts_hw8_push_7_7                          
    a24362ec  TIMESYNC_INTRTR0_outl_38_38_to_CPSW1_cpts_hw3_push_0_0                                     
    a24362f4  TIMESYNC_INTRTR0_outl_39_39_to_CPSW1_cpts_hw4_push_1_1                                     
    a24362fc  TIMESYNC_INTRTR0_outl_3_3_to_NAVSS0_cpts0_hw4_push_3_3                                     
    a2436304  TIMESYNC_INTRTR0_outl_40_47_to_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_100_107              
    a243630c  TIMESYNC_INTRTR0_outl_4_4_to_NAVSS0_cpts0_hw5_push_4_4                                     
    a2436314  TIMESYNC_INTRTR0_outl_5_5_to_NAVSS0_cpts0_hw6_push_5_5                                     
    a243631c  TIMESYNC_INTRTR0_outl_6_6_to_NAVSS0_cpts0_hw7_push_6_6                                     
    a2436324  TIMESYNC_INTRTR0_outl_7_7_to_NAVSS0_cpts0_hw8_push_7_7                                     
    a243632c  UART0_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_96_96                                       
    a2436334  UART1_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_97_97                                       
    a243633c  UART2_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_98_98                                       
    a2436344  UART3_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_99_99                                       
    a243634c  UART4_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_100_100                                     
    a2436354  UART5_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_101_101                                     
    a243635c  UART6_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_102_102                                     
    a2436364  UART7_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_103_103                                     
    a243636c  UART8_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_104_104                                     
    a2436374  UART9_usart_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_105_105                                     
    a243637c  UFS0_ufs_intr_0_0_to_MAIN2MCU_LVL_INTRTR0_in_218_218                                       
    a2436384  USB0_host_system_error_0_0_to_MAIN2MCU_LVL_INTRTR0_in_157_157                              
    a243638c  USB0_irq_1_8_to_MAIN2MCU_LVL_INTRTR0_in_128_135                                            
    a2436394  USB0_otgirq_9_9_to_MAIN2MCU_LVL_INTRTR0_in_152_152                                         
    a243639c  VPAC0_vpac_level_0_5_to_MAIN2MCU_LVL_INTRTR0_in_270_275                                    
    a24363a4  VPAC1_vpac_level_0_5_to_MAIN2MCU_LVL_INTRTR0_in_40_45                                      
    a24363ac  WKUP_GPIO0_gpio_bank_0_5_to_WKUP_GPIOMUX_INTRTR0_in_103_108                                
    a24363b4  WKUP_GPIO1_gpio_bank_0_5_to_WKUP_GPIOMUX_INTRTR0_in_112_117                                
    a24363bc  WKUP_GPIOMUX_INTRTR0_outp_0_11_to_WKUP_HSM0_nvic_184_195                                   
    a24363c4  WKUP_GPIOMUX_INTRTR0_outp_0_15_to_MCU_R5FSS0_CORE0_intr_124_139                            
    a24363cc  WKUP_GPIOMUX_INTRTR0_outp_0_15_to_MCU_R5FSS0_CORE1_intr_124_139                            
    a24363d4  WKUP_GPIOMUX_INTRTR0_outp_12_19_to_MCU_NAVSS0_UDMASS_INTA_0_intaggr_levi_pend_4_11         
    a24363dc  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_COMPUTE_CLUSTER0_CLEC_soc_events_in_960_975             
    a24363e4  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_COMPUTE_CLUSTER0_GIC500SS_spi_960_975                   
    a24363ec  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS0_CORE0_intr_488_503                               
    a24363f4  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS0_CORE1_intr_488_503                               
    a24363fc  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS1_CORE0_intr_488_503                               
    a2436404  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS1_CORE1_intr_488_503                               
    a243640c  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS2_CORE0_intr_488_503                               
    a2436414  WKUP_GPIOMUX_INTRTR0_outp_16_31_to_R5FSS2_CORE1_intr_488_503                               
    a243641c  WKUP_GPIOMUX_INTRTR0_outp_8_15_to_WKUP_ESM0_esm_pls_event0_120_127                         
    a2436424  WKUP_GPIOMUX_INTRTR0_outp_8_15_to_WKUP_ESM0_esm_pls_event1_128_135                         
    a243642c  WKUP_GPIOMUX_INTRTR0_outp_8_15_to_WKUP_ESM0_esm_pls_event2_136_143                         
    a2436434  cpsw_9xuss_j7am0_cpts_comp_0_0_to_CMPEVENT_INTRTR0_in_9_9                                  
    a243643c  cpsw_9xuss_j7am0_cpts_genf0_1_1_to_TIMESYNC_INTRTR0_in_14_14                               
    a2436444  cpsw_9xuss_j7am0_cpts_genf1_2_2_to_TIMESYNC_INTRTR0_in_15_15                               
    a243644c  cpsw_9xuss_j7am0_cpts_sync_3_3_to_TIMESYNC_INTRTR0_in_37_37                                
    a2436454  cpsw_9xuss_j7am0_evnt_pend_4_4_to_MAIN2MCU_LVL_INTRTR0_in_223_223                          
    a243645c  cpsw_9xuss_j7am0_mdio_pend_5_5_to_MAIN2MCU_LVL_INTRTR0_in_222_222                          
    a2436464  cpsw_9xuss_j7am0_stat_pend_6_6_to_MAIN2MCU_LVL_INTRTR0_in_221_221                          
    a243646c  csi_rx_if0_csi_err_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_255_255                              
    a2436474  csi_rx_if0_csi_irq_1_1_to_MAIN2MCU_LVL_INTRTR0_in_254_254                                  
    a243647c  csi_rx_if0_csi_level_2_2_to_MAIN2MCU_LVL_INTRTR0_in_256_256                                
    a2436484  csi_rx_if1_csi_err_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_258_258                              
    a243648c  csi_rx_if1_csi_irq_1_1_to_MAIN2MCU_LVL_INTRTR0_in_257_257                                  
    a2436494  csi_rx_if1_csi_level_2_2_to_MAIN2MCU_LVL_INTRTR0_in_259_259                                
    a243649c  csi_rx_if2_csi_err_irq_0_0_to_MAIN2MCU_LVL_INTRTR0_in_261_261                              
    a24364a4  csi_rx_if2_csi_irq_1_1_to_MAIN2MCU_LVL_INTRTR0_in_260_260                                  
    a24364ac  csi_rx_if2_csi_level_2_2_to_MAIN2MCU_LVL_INTRTR0_in_262_262                                
    a24364b4  j7aep_gpu_bxs464_wrap0_gpu_pwrctrl_req_0_0_to_MAIN2MCU_LVL_INTRTR0_in_316_316              
    a24364c4  tisci_if_CSI_TX_IF0                                                                        
    a24364cc  tisci_if_CSI_TX_IF1                                                                        
    a24364d4  tisci_if_EPWM0                                                                             
    a24364dc  tisci_if_EPWM1                                                                             
    a24364e4  tisci_if_EPWM2                                                                             
    a24364ec  tisci_if_EPWM3                                                                             
    a24364f4  tisci_if_EPWM4                                                                             
    a24364fc  tisci_if_EPWM5                                                                             
    a2436504  tisci_if_MCAN0                                                                             
    a243650c  tisci_if_MCAN10                                                                            
    a2436514  tisci_if_MCAN11                                                                            
    a243651c  tisci_if_MCAN12                                                                            
    a2436524  tisci_if_MCAN13                                                                            
    a243652c  tisci_if_MCAN14                                                                            
    a2436534  tisci_if_MCAN15                                                                            
    a243653c  tisci_if_MCAN16                                                                            
    a2436544  tisci_if_MCAN17                                                                            
    a243654c  tisci_if_MCAN1                                                                             
    a2436554  tisci_if_MCAN2                                                                             
    a243655c  tisci_if_MCAN3                                                                             
    a2436564  tisci_if_MCAN4                                                                             
    a243656c  tisci_if_MCAN5                                                                             
    a2436574  tisci_if_MCAN6                                                                             
    a243657c  tisci_if_MCAN7                                                                             
    a2436584  tisci_if_MCAN8                                                                             
    a243658c  tisci_if_MCAN9                                                                             
    a2436594  tisci_if_MCASP0                                                                            
    a243659c  tisci_if_MCASP1                                                                            
    a24365a4  tisci_if_MCASP2                                                                            
    a24365ac  tisci_if_MCASP3                                                                            
    a24365b4  tisci_if_MCASP4                                                                            
    a24365bc  tisci_if_NAVSS0_MAILBOX1_0                                                                 
    a24365c4  tisci_if_NAVSS0_MAILBOX1_10                                                                
    a24365cc  tisci_if_NAVSS0_MAILBOX1_11                                                                
    a24365d4  tisci_if_NAVSS0_MAILBOX1_1                                                                 
    a24365dc  tisci_if_NAVSS0_MAILBOX1_2                                                                 
    a24365e4  tisci_if_NAVSS0_MAILBOX1_3                                                                 
    a24365ec  tisci_if_NAVSS0_MAILBOX1_4                                                                 
    a24365f4  tisci_if_NAVSS0_MAILBOX1_5                                                                 
    a24365fc  tisci_if_NAVSS0_MAILBOX1_6                                                                 
    a2436604  tisci_if_NAVSS0_MAILBOX1_7                                                                 
    a243660c  tisci_if_NAVSS0_MAILBOX1_8                                                                 
    a2436614  tisci_if_NAVSS0_MAILBOX1_9                                                                 
    a243661c  tisci_if_NAVSS0_MAILBOX_0                                                                  
    a2436624  tisci_if_NAVSS0_MAILBOX_10                                                                 
    a243662c  tisci_if_NAVSS0_MAILBOX_11                                                                 
    a2436634  tisci_if_NAVSS0_MAILBOX_1                                                                  
    a243663c  tisci_if_NAVSS0_MAILBOX_2                                                                  
    a2436644  tisci_if_NAVSS0_MAILBOX_3                                                                  
    a243664c  tisci_if_NAVSS0_MAILBOX_4                                                                  
    a2436654  tisci_if_NAVSS0_MAILBOX_5                                                                  
    a243665c  tisci_if_NAVSS0_MAILBOX_6                                                                  
    a2436664  tisci_if_NAVSS0_MAILBOX_7                                                                  
    a243666c  tisci_if_NAVSS0_MAILBOX_8                                                                  
    a2436674  tisci_if_NAVSS0_MAILBOX_9                                                                  
    a243667c  tisci_if_SA2_UL0                                                                           
    a2436684  tisci_if_TIMER14                                                                           
    a243668c  tisci_if_TIMER15                                                                           
    a2436694  tisci_if_TIMER16                                                                           
    a243669c  tisci_if_TIMER17                                                                           
    a24366a4  tisci_if_TIMER18                                                                           
    a24366ac  tisci_if_TIMER19                                                                           
    a2436c24  vusr_dual0_v0_mcp_hi_intlvl_0_0_to_MAIN2MCU_LVL_INTRTR0_in_84_84                           
    a2436c2c  vusr_dual0_v0_mcp_lo_intlvl_1_1_to_MAIN2MCU_LVL_INTRTR0_in_83_83                           
    a2436c34  vusr_dual0_v0_vusr_intlvl_2_2_to_MAIN2MCU_LVL_INTRTR0_in_82_82                             
    a2436c3c  vusr_dual0_v1_mcp_hi_intlvl_3_3_to_MAIN2MCU_LVL_INTRTR0_in_87_87                           
    a2436c44  vusr_dual0_v1_mcp_lo_intlvl_4_4_to_MAIN2MCU_LVL_INTRTR0_in_86_86                           
    a2436c4c  vusr_dual0_v1_vusr_intlvl_5_5_to_MAIN2MCU_LVL_INTRTR0_in_85_85                             
    a2436c68  gRmIrqTreeCount                                                                            
    a2436c6c  tisci_if_CODEC0                                                                            
    a2436c70  tisci_if_CODEC1                                                                            
    a2436c74  tisci_if_DCC0                                                                              
    a2436c78  tisci_if_DCC1                                                                              
    a2436c7c  tisci_if_DCC2                                                                              
    a2436c80  tisci_if_DCC3                                                                              
    a2436c84  tisci_if_DCC4                                                                              
    a2436c88  tisci_if_DCC5                                                                              
    a2436c8c  tisci_if_DCC6                                                                              
    a2436c90  tisci_if_DCC7                                                                              
    a2436c94  tisci_if_DCC8                                                                              
    a2436c98  tisci_if_DCC9                                                                              
    a2436c9c  tisci_if_DMPAC0_INTD_0                                                                     
    a2436ca0  tisci_if_DSS_DSI0                                                                          
    a2436ca4  tisci_if_DSS_DSI1                                                                          
    a2436ca8  tisci_if_DSS_EDP0                                                                          
    a2436cac  tisci_if_ECAP0                                                                             
    a2436cb0  tisci_if_ECAP1                                                                             
    a2436cb4  tisci_if_ECAP2                                                                             
    a2436cb8  tisci_if_ELM0                                                                              
    a2436cbc  tisci_if_EQEP0                                                                             
    a2436cc0  tisci_if_EQEP1                                                                             
    a2436cc4  tisci_if_EQEP2                                                                             
    a2436cc8  tisci_if_GPIO0                                                                             
    a2436ccc  tisci_if_GPIO2                                                                             
    a2436cd0  tisci_if_GPIO4                                                                             
    a2436cd4  tisci_if_GPIO6                                                                             
    a2436cd8  tisci_if_GPMC0                                                                             
    a2436cdc  tisci_if_GTC0                                                                              
    a2436ce0  tisci_if_I2C0                                                                              
    a2436ce4  tisci_if_I2C1                                                                              
    a2436ce8  tisci_if_I2C2                                                                              
    a2436cec  tisci_if_I2C3                                                                              
    a2436cf0  tisci_if_I2C4                                                                              
    a2436cf4  tisci_if_I2C5                                                                              
    a2436cf8  tisci_if_I2C6                                                                              
    a2436cfc  tisci_if_J7AEP_GPU_BXS464_WRAP0_GPU_SS_0                                                   
    a2436d00  tisci_if_MCSPI0                                                                            
    a2436d04  tisci_if_MCSPI1                                                                            
    a2436d08  tisci_if_MCSPI2                                                                            
    a2436d0c  tisci_if_MCSPI3                                                                            
    a2436d10  tisci_if_MCSPI4                                                                            
    a2436d14  tisci_if_MCSPI5                                                                            
    a2436d18  tisci_if_MCSPI6                                                                            
    a2436d1c  tisci_if_MCSPI7                                                                            
    a2436d20  tisci_if_MCU_NAVSS0_UDMASS_INTA_0                                                          
    a2436d24  tisci_if_MMCSD0                                                                            
    a2436d28  tisci_if_MMCSD1                                                                            
    a2436d2c  tisci_if_NAVSS0_CPTS_0                                                                     
    a2436d30  tisci_if_NAVSS0_MODSS_INTA_0                                                               
    a2436d34  tisci_if_NAVSS0_MODSS_INTA_1                                                               
    a2436d38  tisci_if_NAVSS0_PVU_0                                                                      
    a2436d3c  tisci_if_NAVSS0_PVU_1                                                                      
    a2436d40  tisci_if_NAVSS0_UDMASS_INTA_0                                                              
    a2436d44  tisci_if_TIMER0                                                                            
    a2436d48  tisci_if_TIMER10                                                                           
    a2436d4c  tisci_if_TIMER11                                                                           
    a2436d50  tisci_if_TIMER12                                                                           
    a2436d54  tisci_if_TIMER13                                                                           
    a2436d58  tisci_if_TIMER1                                                                            
    a2436d5c  tisci_if_TIMER2                                                                            
    a2436d60  tisci_if_TIMER3                                                                            
    a2436d64  tisci_if_TIMER4                                                                            
    a2436d68  tisci_if_TIMER5                                                                            
    a2436d6c  tisci_if_TIMER6                                                                            
    a2436d70  tisci_if_TIMER7                                                                            
    a2436d74  tisci_if_TIMER8                                                                            
    a2436d78  tisci_if_TIMER9                                                                            
    a2436d7c  tisci_if_UART0                                                                             
    a2436d80  tisci_if_UART1                                                                             
    a2436d84  tisci_if_UART2                                                                             
    a2436d88  tisci_if_UART3                                                                             
    a2436d8c  tisci_if_UART4                                                                             
    a2436d90  tisci_if_UART5                                                                             
    a2436d94  tisci_if_UART6                                                                             
    a2436d98  tisci_if_UART7                                                                             
    a2436d9c  tisci_if_UART8                                                                             
    a2436da0  tisci_if_UART9                                                                             
    a2436da4  tisci_if_UFS0                                                                              
    a2436da8  tisci_if_VPAC0                                                                             
    a2436dac  tisci_if_VPAC1                                                                             
    a2436db0  tisci_if_WKUP_GPIO0                                                                        
    a2436db4  tisci_if_WKUP_GPIO1                                                                        
    a2436db8  tisci_if_j7aep_gpu_bxs464_wrap0                                                            
    a2436dbc  uxTopUsedPriority                                                                          
    a2436e00  argArray                                                                                   
    a2437600  fxnArray                                                                                   
    a2437e00  intrSrcType                                                                                
    a2438600  gTimerStructs                                                                              
    a2438ce0  intrPri                                                                                    
    a24390e0  intrMap                                                                                    
    a24392e0  gDmTimerPInfoTbl                                                                           
    a2439420  vint_usage_count_MCU_NAVSS0_UDMASS_INTA_0                                                  
    a2439520  vint_usage_count_NAVSS0_UDMASS_INTA_0                                                      
    a2439620  gRmIrInstances                                                                             
    a24396e0  gRmIaInstances                                                                             
    a2439760  Osal_mainMcuRestrictedTimerID                                                              
    a24397d8  Osal_mcuRestrictedTimerID                                                                  
    a2439850  test_desc                                                                                  
    a24398b0  gSciclientHandle                                                                           
    a2439904  g_Navss512MbInput                                                                          
    a243994c  vint_usage_count_NAVSS0_MODSS_INTA_0                                                       
    a243998c  vint_usage_count_NAVSS0_MODSS_INTA_1                                                       
    a24399cc  gExptnHandlers                                                                             
    a24399fc  FreeRTOS_errno                                                                             
    a2439a00  gOsal_HwAttrs                                                                              
    a2439a20  gSciclient_secProxyCfg                                                                     
    a2439a58  gStartTime                                                                                 
    a2439a70  Osal_exptnLogFxn                                                                           
    a2439a74  __aeabi_errno                                                                              
    a2439a78  gCurrentProcessorState                                                                     
    a2439a7c  gOsalHwiAllocCnt                                                                           
    a2439a80  gOsalHwiPeak                                                                               
    a2439a84  gOsalSemAllocCnt                                                                           
    a2439a88  gOsalSemPeak                                                                               
    a2439a8c  gOsalTimerAllocCnt                                                                         
    a2439a90  gOsalTimerPeak                                                                             
    a2439a94  gSciclient_writeInProgress                                                                 
    a2439a98  pSciclient_secProxyCfg                                                                     
    a2439aa0  pxCurrentTCB                                                                               
    a2439ab0  ulCriticalNesting                                                                          
    a2439ab8  ulPortInterruptNesting                                                                     
    a2439abc  ulPortSchedularRunning                                                                     
    a2439ac0  ulPortTaskHasFPUContext                                                                    
    a2439ac4  ulPortYieldRequired                                                                        
    a2439b08  xShutDownTaskHandle                                                                        
    a2439b0c  xTestTCMTaskHandle                                                                         
    a2439b24  Osal_DebugP_Assert_Val                                                                     
    a2439b28  gOsalArchConfig                                                                            
    a2439d80  __TI_Handler_Table_Base                                                                    
    a2439d8c  __TI_Handler_Table_Limit                                                                   
    a2439dac  __TI_CINIT_Base                                                                            
    a2439dd4  __TI_CINIT_Limit                                                                           
    a2439dd4  __TI_CINIT_Warm                                                                            
    a2ffac00  __UND_STACK_START                                                                          
    a2ffad00  __SVC_STACK_START                                                                          
    a2ffad00  __UND_STACK_END                                                                            
    a2ffae00  __IRQ_STACK_START                                                                          
    a2ffae00  __SVC_STACK_END                                                                            
    a2ffbe00  __FIQ_STACK_START                                                                          
    a2ffbe00  __IRQ_STACK_END                                                                            
    a2ffbf00  __ABORT_STACK_START                                                                        
    a2ffbf00  __FIQ_STACK_END                                                                            
    a2ffc000  __ABORT_STACK_END                                                                          
    a2ffc000  __stack                                                                                    
    a3000000  __STACK_END                                                                                
    ffffffff  __TI_pprof_out_hndl                                                                        
    ffffffff  __TI_prof_data_size                                                                        
    ffffffff  __TI_prof_data_start                                                                       
    ffffffff  __binit__                                                                                  
    ffffffff  binit                                                                                      
    UNDEFED   __c_args__                                                                                 
    
    [1051 symbols]
    

    Regards,

    Charles

  • Hi Charles,

    Did you get a chance to perform the experiment measuring transfer performance between OCMC and BTCM?

    Regards,

    Karthik

  • Hi Karthik,

    Did you get a chance to perform the experiment measuring transfer performance between OCMC and BTCM?

    Not yet, I will try to do it during next week (I won't be at the office).

    I will let you know as soon as I have measure the performance.

    Regards,

    Charles

  • Hi Karthik,

    Did you get a chance to perform the experiment measuring transfer performance between OCMC and BTCM?

    Not yet, I will try to do it during next week (I am not at the office).

    I will let you know as soon as I have measure the performance.

    Regards,

    Charles

  • Hi Charles,

    Thank you for your update. No problem please let me know once you’ve had a chance to measure the performance.

    Regards,

    Karthik

  • Hi Karthik,

    The performance are even worse when I copy data from OCMC to BTCM.

    [FreeRTOS] TCM test is starting !!!
    [FreeRTOS] creating tasks ...
    
    ********************************************
    
    [FreeRTOS] TCM tests ... start !!!
    
    ********************************************
    src buffer @0x41c82000
    dst buffer @0x41010080
    
     ------------- 
    
    Time to cpy data from OCMC to BTCM: 
         data size  = 10 Bytes
         total time = 243 us
         1 cpy     = 2.43 us
         speed     = 4.12 MB/s
    
     ------------- 
    
    Time to cpy data from OCMC to BTCM: 
         data size  = 40 Bytes
         total time = 446 us
         1 cpy     = 4.46 us
         speed     = 8.97 MB/s
    
     ------------- 
    
    Time to cpy data from OCMC to BTCM: 
         data size  = 100 Bytes
         total time = 1830 us
         1 cpy     = 18.30 us
         speed     = 5.46 MB/s
    
     ------------- 
    
    Time to cpy data from OCMC to BTCM: 
         data size  = 1024 Bytes
         total time = 7632 us
         1 cpy     = 76.32 us
         speed     = 13.42 MB/s
    
     ------------- 
    
    Time to cpy data from OCMC to BTCM: 
         data size  = 10240 Bytes
         total time = 67192 us
         1 cpy     = 671.92 us
         speed     = 15.24 MB/s
    
     ------------- 
    
    Time to cpy data from OCMC to BTCM: 
         data size  = 30720 Bytes
         total time = 200332 us
         1 cpy     = 2003.32 us
         speed     = 15.33 MB/s

    Regards,

    Charles

  • Hi Charles,

    I am looking into this issue; I'll get back to you by the end of today.

    Regards,

    Karthik

  • Hi Karthik,

    Do you have any update ?

    Thanks

    Charles

  • Hi Charles,

    Are any other cores active while running this test? If so, could you please run the test with only the R5 core active to observe the impact on performance?

    It also appears that the current measurements include the time for cache invalidate, memcpy, and cache writeback operations. Since the duration of each of these steps is not clearly known, could you please isolate and measure only the memcpy portion to obtain the raw DDR to BTCM transfer performance?

    Regards,

    Karthik

  • Hi Karthik,

    from remote proc point of view, every over core state is "offline".

    I have remove the cache invalidate, and cache writeback operations but it has no impact on the performances.

    Thanks

    Charles

  • Hi Charles,

    Could you please try enabling cache to improve the DDR to BTCM memcpy performance?
    Please enable cache for the DDR region and keep the BTCM region non-cacheable.let us know if that helps.

    Regards,

    Karthik

  • Hi Karthik,

    I am already using cache for DDR, this is the freertos init mmu function and I am using addr 0xA3000000 to copy data from DDR
    attrs.attrIndx = Mmu_AttrIndx_MAIR7;
    OsalMmuMap(0x80000000U, 0x80000000U, 0x20000000U, &attrs, isSecure); /* DDR */
    OsalMmuMap(0xA0000000U, 0xA0000000U, 0x20000000U, &attrs, isSecure); /* DDR */

    Thanks

    Charles

  • Hi Charles,

    I am currently discussing this issue with our DDR team. I will get back to you once I have an update.

    Regards,

    Karthik

  • Hi Charles,

    Please remove the following line from the benchmark code and re-run the test:
    CacheP_Inv(srcMemory, test_desc[i_test].size);
    Based on our analysis, Invalidating the source buffer each iteration forces the CPU to discard the cached DDR data and fetch it again from main memory before every memcpy. This adds unnecessary latency and reduces the effective transfer speed.

    When we skip the source cache invalidation (since the CPU itself is producing and reading the data), the cache remains valid and memcpy can read directly from the cached DDR region. As a result, the DDR to BTCM transfer achieves significantly higher speed.

    I’ve attached the updated performance log for reference, showing the improved bandwidth when CacheP_Inv(srcMemory, …) is removed.

    DDR_to_BTCM_memcpy_benchmark_log.zip

    Regards,

    Karthik

  • Hi Karthik,

    I have remove the cache invalidate, and cache writeback operations but it has no impact on the performances

    I have removed the cache invalidation from the time measured. But I need to invalidate the cache every time because in the final application the data will be written in DDR from an other core :

    memset(dstMemory, 0, APP_MAX_SIZE_BYTE);
    CacheP_Inv(srcMemory, test_desc[i_test].size);
    
    gStartTime = portGET_RUN_TIME_COUNTER_VALUE();
                
    memcpy(dstMemory, srcMemory, test_desc[i_test].size);
    
    test_desc[i_test].time += portGET_RUN_TIME_COUNTER_VALUE() - gStartTime;

    Does it means that the max performance that can be achieved in my use case to copy data from DDR to BTCM when the cache has been invalidated is ~130MB/s ?

    Regards

    Charles

  • Hi Charles,

    Does it means that the max performance that can be achieved in my use case to copy data from DDR to BTCM when the cache has been invalidated is ~130MB/s ?

    Yes, that’s correct. Invalidating the source each time forces data to be fetched from DDR, which limits the achievable performance.

    Regards,

    Karthik