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.

AM62A7: System Crash Using MMCSD_write from SBL

Part Number: AM62A7
Other Parts Discussed in Thread: AM62P, UNIFLASH, CSD

Tool/software:

Hi TI Experts,

Customer is working on SDK9.1 with SBL boot.

They need to use MMCSD_read & MMCSD_write to read / write the EMMC.

However, they found that only MMCSD_read could be used, if they use MMCSD_write there will be system crash (no log shown).

I found some similar threads discussing this problem on AM62P, and seems that we need to modify the  MMCSD driver (source/drivers/mmcsd/v0/mmcsd_v0.c) source file.

However, that is for AM62P only, I let customer try this method but still fail on AM62A.

I also let customer use the  MMCSD driver code in SDK9.2 & SDK10.0, but all fail.

Could you please help us?

Many Thanks,

Kevin

  • Hi Prashant,

    Thanks for your reply!

    Customer followed the above example for their usecase. They have not run exactly the same example since their usercase is kind of different.

    However, what customer confirmed is that as long as they use MMCSD_write, the system will crash.

    Customer also mentioned that if they use MMCSD_read firstly then run the below code to partition the emmc, the system will also crash. (if they directly run the below code without running  MMCSD_read, then it is normal)

    uint8_t read_emmc_partition_config(MMCSD_Handle handle) {
        MMCSD_Transaction trans;
        uint8_t extCsdData[512] = {0};
    
        MMCSD_initTransaction(&trans);
        trans.cmd = MMCSD_MMC_CMD(8); 
        trans.dir = MMCSD_CMD_XFER_TYPE_READ;
        trans.arg = 0; 
        trans.blockCount = 1;
        trans.blockSize = 512;
        trans.dataBuf = extCsdData; 
    
        int status = MMCSD_transfer(handle, &trans);
        if (status != 0) {
            return 0xFF;
        }
    
        uint8_t partitionConfig = extCsdData[179];
        return partitionConfig;
    }

    Customer thought that there seems be a timer in the SMS, is it possible that customer did the above operations and do not feed the watchdog in time and causing this problem?

    BTW, if customer operate the emmc from the Linux side there is no any problem.

    Thanks,

    Kevin

  • I test by example,it also not working

    it enter a loop,please refer the following picture 

  • It looks like the execution didn't even reach the main function of the example. May I know how are you actually running or booting the example?

  • I bootstrap up with SBL and load it through CCS, and I use the same method when debugging other examples.

    In addition, the problem I described in SBL seems to have a problem without running to the main function, because after the initialization of the main function is completed, the information is output through the serial port, but after downloading the image of the operation of the MMCSD_write function, any serial port information is not output

  • Hi Prashant,

    May I know if Tom's steps of running is expected or you need him to do some modifications to run this example?

    Thanks,

    Kevin

  • I bootstrap up with SBL and load it through CCS, and I use the same method when debugging other examples.

    This is incorrect method. The WKUP R5F examples cannot be run using CCS. They must be booted by SBL as described here:

    AM62Ax MCU+ SDK: Developing applications on Device Manager/Wake-up R5 core

  • I use this method test the example which it test passed.

    For my issue,have any analytical methods?

  • I refer the link of https://software-dl.ti.com/mcu-plus-sdk/esd/AM62AX/10_00_00_14/exports/docs/api_guide_am62ax/DEVELOP_AND_DEBUG_DMR5.html to debug my code. When a Added flowing code use the CCS debug,is operation sucessed.

        {
            uint8_t writeBuff[1024] = {0x11,0x12,0x13,0x14,0x15,0x15,0x16,0x18,0x19,0x20};
            uint8_t readBuff[1024];
            status = MMCSD_write(gMmcsdHandle[0], writeBuff, 35, 1);
            LogServ_DebugInfo(  LOGSERV_LOG_CHANNEL_MASK_UART, 
                                LOGSERV_LOG_LEVEL_INFO, 
                                SBL1_MAIN_SW_MODULE_ID, 
                                SBL1_MAIN_API_ID_main, 
                                0,
                                NULL,
                                "MMC Write Data: status = %d\r\n",status);
    
            status = MMCSD_read(gMmcsdHandle[0], readBuff, 35, 1);
            LogServ_DebugInfo(  LOGSERV_LOG_CHANNEL_MASK_UART, 
                                LOGSERV_LOG_LEVEL_INFO, 
                                SBL1_MAIN_SW_MODULE_ID, 
                                SBL1_MAIN_API_ID_main, 
                                0,
                                NULL,
                                "MMC Read Data: status = %d,Data:0x%x 0x%x 0x%x 0x%x\r\n",status,readBuff[0],readBuff[1],readBuff[2],readBuff[3]);
        }

    but i use same code,flash the image to chip,it will crash.

    the flash method:

    - use the USB DFU flash the dm-am62ax-sbl_emmc_stage1.release.hs_fs.tiimage file

    when i deleted above code and use the same method flash the image,it not crash

    Do you have any ideas for this issue?

  • When a Added flowing code use the CCS debug,is operation sucessed.
    - use the USB DFU flash the dm-am62ax-sbl_emmc_stage1.release.hs_fs.tiimage file

     Can you please explain the exact steps you are following for both the above cases? Please also share the boot logs.

  • You means the USB DFU flash image step? We refer link for 3.1.1.2. USB Device Firmware Upgrade (DFU) — Processor SDK AM62x Documentation

    Step following

    - added above code

    - compiling code and generated fs_fs.tiimage files

    - swith the BootMode to USB DFU

    - use the USB-DFU tools flash image

    - switch the BootMode to eMMC

    - Power ON,the UART NOT OUTPUT any info

    When the deletde above code,and use above step flash,and power on. The UART has output info. the info following 

  • - Power ON,the UART NOT OUTPUT any info

    Can you use the debugger at this point, connect to the WKUP R5F core, & note down the address the core is suspended at?

  • The address following and the map files

  • ******************************************************************************
                TI ARM Clang Linker PC v3.2.0                      
    ******************************************************************************
    >> Linked Fri Nov 15 09:47:42 2024
    
    OUTPUT FILE NAME:   <dm-am62ax-sbl_emmc_stage1.release.out>
    ENTRY POINT SYMBOL: "_vectors_sbl"  address: 43c00040
    
    
    MEMORY CONFIGURATION
    
             name            origin    length      used     unused   attr    fill
    ----------------------  --------  ---------  --------  --------  ----  --------
      HSM_RAM_VECS          43c00000   00000100  00000080  00000080  RWIX
      HSM_RAM               43c00100   0003c700  00030980  0000bd80  RWIX
      APPIMAGE              84000000   00800000  00800000  00000000  RWIX
    
    
    SEGMENT ALLOCATION MAP
    
    run origin  load origin   length   init length attrs members
    ----------  ----------- ---------- ----------- ----- -------
    43c00000    43c00000    00000080   00000080    r-x
      43c00000    43c00000    00000080   00000080    r-x .vectors
    43c00100    43c00100    00016538   00016538    r-x
      43c00100    43c00100    00013e10   00013e10    r-x .text
      43c13f10    43c13f10    00001870   00001870    r-- .const
      43c15780    43c15780    00000718   00000718    r-x .text.hwi
      43c15e98    43c15e98    00000430   00000430    r-x .text.cache
      43c162c8    43c162c8    00000248   00000248    r-x .text.mpu
      43c16510    43c16510    00000128   00000128    r-x .text.boot
    43c16638    43c16638    00004240   00004240    rw-
      43c16638    43c16638    00004240   00004240    rw- .data
    43c1a880    43c1a880    000041d0   000041d0    r--
      43c1a880    43c1a880    000041d0   000041d0    r-- .rodata
    43c1ea80    43c1ea80    00000f80   00000f80    r--
      43c1ea80    43c1ea80    00000f80   00000f80    r-- .boardcfg_data
    43c1fa00    43c1fa00    0000fc80   00000000    rw-
      43c1fa00    43c1fa00    00008000   00000000    rw- .sysmem
      43c27a00    43c27a00    00004000   00000000    rw- .stack
      43c2ba00    43c2ba00    00003c80   00000000    rw- .bss
    43c2f680    43c2f680    00001400   00000000    r--
      43c2f680    43c2f680    00001000   00000000    r-- .irqstack
      43c30680    43c30680    00000100   00000000    r-- .fiqstack
      43c30780    43c30780    00000100   00000000    r-- .svcstack
      43c30880    43c30880    00000100   00000000    r-- .abortstack
      43c30980    43c30980    00000100   00000000    r-- .undefinedstack
    84000000    84000000    00800000   00000000    rw-
      84000000    84000000    00800000   00000000    rw- .app
    
    
    SECTION ALLOCATION MAP
    
     output                                  attributes/
    section   page    origin      length       input sections
    --------  ----  ----------  ----------   ----------------
    .vectors   0    43c00000    00000080     
                      43c00000    00000040     nortos.am62ax.r5f.ti-arm-clang.release.lib : HwiP_armv7r_vectors_nortos_asm.obj (.vectors)
                      43c00040    00000040                                                : HwiP_armv7r_vectors_nortos_sbl_asm.obj (.vectors)
    
    .text      0    43c00100    00013e10     
                      43c00100    00000ddc     libc.a : _printfi.c.obj (.text:__TI_printfi_nofloat)
                      43c00edc    00000d22     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_open)
                      43c01bfe    00000894                                                    : mmcsd_v1.obj (.text.MMCSD_transfer)
                      43c02492    00000002     ti_board_config.obj (.text.Board_deinit)
                      43c02494    00000740     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : pll.obj (.text.pll_calc)
                      43c02bd4    0000062c                                                       : rm_udmap.obj (.text.rm_udmap_tx_ch_cfg)
                      43c03200    000005c4                                                       : rm_udmap.obj (.text.rm_udmap_rx_ch_cfg)
                      43c037c4    00000598     nortos.am62ax.r5f.ti-arm-clang.release.lib : printf.obj (.text._vsnprintf)
                      43c03d5c    000004f4     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : ddr.obj (.text.DDR_init)
                      43c04250    0000043c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_ra.obj (.text.rm_ra_cfg)
                      43c0468c    00000004     ti_board_open_close.obj (.text.Board_driversOpen)
                      43c04690    00000398     nortos.am62ax.r5f.ti-arm-clang.release.lib : printf.obj (.text._ftoa)
                      43c04a28    00000388     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : psc.obj (.text.lpsc_module_sync_state)
                      43c04db0    0000031c     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient.obj (.text.Sciclient_serviceSecureProxy)
                      43c050cc    00000004     BootCtrl.obj (.text.BootCtrl_readBootPartitionNum)
                      43c050d0    00000310     nortos.am62ax.r5f.ti-arm-clang.release.lib : printf.obj (.text._etoa)
                      43c053e0    000002e8     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_udmap.obj (.text.rm_udmap_flow_cfg)
                      43c056c8    00000292     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socCpuResetRelease)
                      43c0595a    00000292     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : pll.obj (.text.pll_consider)
                      43c05bec    00000280                                                       : clk_div.obj (.text.clk_div_set_freq)
                      43c05e6c    0000027c                                                       : clk_pll_16fft.obj (.text.clk_pll_16fft_hsdiv_set_freq)
                      43c060e8    00000260                                                       : clk_pll_16fft.obj (.text.clk_pll_16fft_init)
                      43c06348    0000025a     main.obj (.text.main)
                      43c065a2    0000024a     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.text.Bootloader_verifyMulticoreImage)
                      43c067ec    00000248     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : device_clk.obj (.text.dev_clk_set_freq)
                      43c06a34    00000246     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : uart_v0.obj (.text.UART_open)
                      43c06c7a    00000002     ti_board_config.obj (.text.Board_init)
                      43c06c7c    00000224     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_irq.obj (.text.rm_irq_release)
                      43c06ea0    00000220     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : uart_v0.obj (.text.UART_masterIsr)
                      43c070c0    00000200     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : device.obj (.text.devices_init)
                      43c072c0    000001fc                                                       : rm_irq.obj (.text.rm_irq_set)
                      43c074bc    000001e0                                                       : clk_pll_16fft.obj (.text.clk_pll_16fft_program_freq)
                      43c0769c    000001d6     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socCpuPowerOnResetR5f)
                      43c07872    00000002                                                    : ddr_soc.obj (.text.DDR_socEnableVttRegulator)
                      43c07874    000001d4     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct.obj (.text.Sciclient_service)
                      43c07a48    000001d0                                                              : sciclient.obj (.text.Sciclient_init)
                      43c07c18    000001d0     libclang_rt.builtins.a : udivsi3.S.obj (.text.__udivsi3)
                      43c07de8    000001c6     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_close)
                      43c07fae    000001c0     nortos.am62ax.r5f.ti-arm-clang.release.lib : TimerP.obj (.text.TimerP_setup)
                      43c0816e    00000002     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_mmcsd_raw.obj (.text.MMCSDRaw_imgClose)
                      43c08170    000001b0     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : psc.obj (.text.psc_pre_init)
                      43c08320    000001a2     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : ddr_soc.obj (.text.DDR_programPLL)
                      43c084c2    00000192                                                    : uart_v0.obj (.text.UART_configInstance)
                      43c08654    00000164     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_udmap.obj (.text.rm_udmap_gcfg_cfg)
                      43c087b8    0000015c                                                       : device_process.obj (.text.set_device_handler)
                      43c08914    00000158                                                       : rm_ir.obj (.text.rm_ir_configure)
                      43c08a6c    00000152     nortos.am62ax.r5f.ti-arm-clang.release.lib : printf.obj (.text._ntoa_format)
                      43c08bbe    00000002     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_isr)
                      43c08bc0    0000014c     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : uart_print.obj (.text.UART_printf)
                      43c08d0c    00000148     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk.obj (.text.clk_init)
                      43c08e54    00000146     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct.obj (.text.Sciclient_ProcessPmMessage)
                      43c08f9a    00000146     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : uart_v0.obj (.text.UART_close)
                      43c090e0    00000140                                                    : bootloader_profile.obj (.text.Bootloader_profilePrintProfileLog)
                      43c09220    00000140                                                    : uart_v0.obj (.text.UART_fifoConfig)
                      43c09360    00000136                                                    : uart_v0.obj (.text.UART_write)
                      43c09496    00000134                                                    : bootloader.obj (.text.Bootloader_parseMultiCoreAppImage)
                      43c095ca    00000002                                                    : bootloader_mem.obj (.text.Mem_imgClose)
                      43c095cc    00000134     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_ra.obj (.text.ra_get_ring_evt)
                      43c09700    00000134                                                       : rm_ra.obj (.text.ra_set_ring_evt)
                      43c09834    00000132     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : soc.obj (.text.SOC_moduleSetClockFrequency)
                      43c09966    00000002     nortos.am62ax.r5f.ti-arm-clang.release.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_destruct)
                      43c09968    0000012c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : psc.obj (.text.psc_uninit)
                      43c09a94    00000128     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : ddr.obj (.text.DDR_isr)
                      43c09bbc    00000124     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_pll_16fft.obj (.text.clk_pll_16fft_get_freq)
                      43c09ce0    00000122                                                       : rm_udmap.obj (.text.udmap_oes_index_validate)
                      43c09e02    00000120     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : lpddr4_am6x.obj (.text.LPDDR4_CheckCtlInterrupt)
                      43c09f22    00000002     nortos.am62ax.r5f.ti-arm-clang.release.lib : TaskP_nortos.obj (.text.TaskP_yield)
                      43c09f24    00000120     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_udmap.obj (.text.udmap_get_ch_evt)
                      43c0a044    0000011e     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_dma.obj (.text.BootloaderDma_submitTR)
                      43c0a162    00000002     nortos.am62ax.r5f.ti-arm-clang.release.lib : printf.obj (.text._out_null)
                      43c0a164    0000011c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_pll_16fft.obj (.text.clk_pll_16fft_internal_set_freq)
                      43c0a280    00000118     libclang_rt.builtins.a : udivmoddi4.S.obj (.text)
                      43c0a398    00000116     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socCpuPowerOnResetHSMM4f)
                      43c0a4ae    00000112                                                    : bootloader.obj (.text.Bootloader_rprcImageLoad)
                      43c0a5c0    00000112                                                    : lpddr4_am6x.obj (.text.LPDDR4_AckCtlInterrupt)
                      43c0a6d2    00000002     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : ioremap.obj (.text.ioremap_internal)
                      43c0a6d4    0000010c                                                       : rm_core.obj (.text.rm_core_get_resource_range)
                      43c0a7e0    0000010c                                                       : rm_ia.obj (.text.rm_ia_vint_map)
                      43c0a8ec    00000104                                                       : device_clk.obj (.text.device_clk_get_parent)
                      43c0a9f0    00000102     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_phyConfigure)
                      43c0aaf2    00000100     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct.obj (.text.Sciclient_ProcessRmMessage)
                      43c0abf2    000000fc     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos_r5.obj (.text.ClockP_init)
                      43c0acee    00000002     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : mmr_lock.obj (.text.mmr_lock_all)
                      43c0acf0    000000f8                                                       : rm_udmap.obj (.text.udmap_set_ch_evt)
                      43c0ade8    000000f4     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_read)
                      43c0aedc    000000f4     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_ia.obj (.text.rm_ia_init)
                      43c0afd0    000000f2                                                       : rm_ia.obj (.text.rm_ia_vint_unmap)
                      43c0b0c2    000000f0     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_dma.obj (.text.Bootloader_dmaCopy)
                      43c0b1b2    00000002     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : map.obj (.text.u32_get_bytes)
                      43c0b1b4    000000ec                                                       : clk_div.obj (.text.clk_div_notify_freq)
                      43c0b2a0    000000ec                                                       : psc.obj (.text.psc_pd_get)
                      43c0b38c    000000e8                                                       : rm_udmap.obj (.text.rm_udmap_is_managed_resasg_utype)
                      43c0b474    000000e6                                                       : rm_ia.obj (.text.ia_validate_evt)
                      43c0b55a    00000002     --HOLE-- [fill = 0]
                      43c0b55c    000000e0                                                       : clk.obj (.text.clk_set_freq)
                      43c0b63c    000000e0                                                       : device_clk.obj (.text.device_clk_set_gated)
                      43c0b71c    000000e0                                                       : psc.obj (.text.lpsc_module_wait)
                      43c0b7fc    000000de     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_mmcsd_raw.obj (.text.Bootloader_MmcsdRaw_readFromOffset)
                      43c0b8da    00000002     --HOLE-- [fill = 0]
                      43c0b8dc    000000dc     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_ra.obj (.text.rm_ra_mon_cfg)
                      43c0b9b8    000000d8     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : uart_v0.obj (.text.UART_writePolling)
                      43c0ba90    000000d0     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_ia.obj (.text.ia_set_oes_evt)
                      43c0bb60    000000d0                                                       : psc.obj (.text.lpsc_module_put_internal)
                      43c0bc30    000000d0                                                       : psc.obj (.text.psc_pd_put)
                      43c0bd00    000000d0                                                       : rm_udmap.obj (.text.rm_udmap_flow_delegate)
                      43c0bdd0    000000ca                                                       : rm_ia.obj (.text.ia_get_oes_evt)
                      43c0be9a    00000002     --HOLE-- [fill = 0]
                      43c0be9c    000000c4                                                       : clk_div.obj (.text.clk_div_set_freq_static_parent)
                      43c0bf60    000000c4                                                       : device_clk.obj (.text.device_clk_set_parent)
                      43c0c024    000000c0                                                       : clk_pll_16fft.obj (.text.clk_pll_16fft_wait_for_lock)
                      43c0c0e4    000000c0                                                       : clk_mux.obj (.text.clk_set_parent)
                      43c0c1a4    000000c0                                                       : clock.obj (.text.get_clock_handler)
                      43c0c264    000000c0                                                       : psc.obj (.text.psc_post_init)
                      43c0c324    000000c0                                                       : clock.obj (.text.set_clock_handler)
                      43c0c3e4    000000be     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_halSetBusFreq)
                      43c0c4a2    000000bc     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_pm.obj (.text.Sciclient_pmQueryModuleClkFreq)
                      43c0c55e    00000002     --HOLE-- [fill = 0]
                      43c0c560    000000bc     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_core.obj (.text.rm_core_resasg_validate_resource)
                      43c0c61c    000000bc                                                       : clock.obj (.text.set_freq_handler)
                      43c0c6d8    000000bc                                                       : device_psc.obj (.text.soc_device_init)
                      43c0c794    000000b8     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct.obj (.text.Sciclient_boardCfgParseHeader)
                      43c0c84c    000000b8     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : uart_v0.obj (.text.UART_divisorLatchWrite)
                      43c0c904    000000b8                                                    : uart_v0.obj (.text.UART_flushTxFifo)
                      43c0c9bc    000000b8     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clock.obj (.text.query_freq_handler)
                      43c0ca74    000000b6                                                       : map.obj (.text.map_add)
                      43c0cb2a    000000b6                                                       : div64.obj (.text.pm_div64)
                      43c0cbe0    000000b4     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct_wrapper.obj (.text.Sciclient_getVersionCheck)
                      43c0cc94    000000b4     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_div.obj (.text.clk_div_reg_go_set_div)
                      43c0cd48    000000b4                                                       : init.obj (.text.pm_init)
                      43c0cdfc    000000b2     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_enableBootPartition)
                      43c0ceae    000000b0     nortos.am62ax.r5f.ti-arm-clang.release.lib : printf.obj (.text._ntoa_long_long)
                      43c0cf5e    00000002     --HOLE-- [fill = 0]
                      43c0cf60    000000b0     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_ra.obj (.text.rm_ra_init)
                      43c0d010    000000ae     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct.obj (.text.boardcfgRmFindCertSize)
                      43c0d0be    00000002     --HOLE-- [fill = 0]
                      43c0d0c0    000000ac     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : psc.obj (.text.lpsc_module_get_internal)
                      43c0d16c    000000ac                                                       : rm_udmap.obj (.text.rm_udmap_init)
                      43c0d218    000000aa     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_pm.obj (.text.Sciclient_pmSetModuleClkFreq)
                      43c0d2c2    000000aa     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : uart_v0.obj (.text.UART_procLineStatusErr)
                      43c0d36c    000000a8     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_udmap.obj (.text.udmap_check_index_range)
                      43c0d414    000000a6     nortos.am62ax.r5f.ti-arm-clang.release.lib : printf.obj (.text._out_rev)
                      43c0d4ba    00000002     --HOLE-- [fill = 0]
                      43c0d4bc    000000a4     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : boardcfg-user.obj (.text.boardcfg_rm_receive_and_validate)
                      43c0d560    000000a0                                                       : device_prepare.obj (.text.device_prepare)
                      43c0d600    000000a0                                                       : device_process.obj (.text.get_device_handler)
                      43c0d6a0    000000a0                                                       : rm_core.obj (.text.rm_core_init)
                      43c0d740    000000a0                                                       : rm_ra.obj (.text.rm_ra_validate_ring_index)
                      43c0d7e0    0000009e                                                       : rm_udmap.obj (.text.udmap_check_flow_index)
                      43c0d87e    0000009c                                                       : clk.obj (.text.clk_generic_set_freq_parent)
                      43c0d91a    00000002     --HOLE-- [fill = 0]
                      43c0d91c    0000009c                                                       : clk_pll_16fft.obj (.text.clk_pll_16fft_set_freq)
                      43c0d9b8    0000009c                                                       : rm_ir.obj (.text.rm_ir_clear)
                      43c0da54    00000098     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_priv.obj (.text.MMCSD_parseCSDSd)
                      43c0daec    00000098     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient.obj (.text.Sciclient_serviceGetThreadIds)
                      43c0db84    00000096     nortos.am62ax.r5f.ti-arm-clang.release.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_pend)
                      43c0dc1a    00000094     BootCtrl.obj (.text.BootCtrl_eMMCMiscReadAll)
                      43c0dcae    00000094     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.text.Bootloader_getMsgLen)
                      43c0dd42    00000094                                                    : uart_v0.obj (.text.UART_init)
                      43c0ddd6    00000002     --HOLE-- [fill = 0]
                      43c0ddd8    00000094     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_irq.obj (.text.irq_trace_remaining_params)
                      43c0de6c    00000090     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.text.Bootloader_loadSelfCpu)
                      43c0defc    00000090                                                    : mmcsd_priv.obj (.text.MMCSD_parseECSDEmmc)
                      43c0df8c    00000090     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : device_pm.obj (.text.device_set_state)
                      43c0e01c    00000090                                                       : rm_ir.obj (.text.ir_clear_rom_mapping)
                      43c0e0ac    00000090                                                       : psc.obj (.text.lpsc_module_set_local_reset)
                      43c0e13c    0000008c     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_priv.obj (.text.MMCSD_parseCIDEmmc)
                      43c0e1c8    0000008c     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : uart_print.obj (.text.UART_convertVal)
                      43c0e254    0000008c     nortos.am62ax.r5f.ti-arm-clang.release.lib : printf.obj (.text._ntoa_long)
                      43c0e2e0    0000008c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_mux.obj (.text.clk_mux_set_parent)
                      43c0e36c    0000008c                                                       : psc.obj (.text.psc_pd_wait)
                      43c0e3f8    0000008a                                                       : rm_ra.obj (.text.ra_check_index_range)
                      43c0e482    00000088     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socCpuPowerOnResetC7x)
                      43c0e50a    00000088                                                    : ddr.obj (.text.DDR_primeMem)
                      43c0e592    00000002     --HOLE-- [fill = 0]
                      43c0e594    00000088     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : psc.obj (.text.lpsc_module_set_module_reset)
                      43c0e61c    00000086     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socCpuSetClock)
                      43c0e6a2    00000086     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_pm.obj (.text.Sciclient_pmGetModuleClkNumParent)
                      43c0e728    00000086                                                              : sciclient_pm.obj (.text.Sciclient_pmGetModuleClkParent)
                      43c0e7ae    00000002     --HOLE-- [fill = 0]
                      43c0e7b0    00000084                                                              : sciclient_boardcfg.obj (.text.Sciclient_boardCfgPm)
                      43c0e834    00000084                                                              : sciclient_boardcfg.obj (.text.Sciclient_boardCfgRm)
                      43c0e8b8    00000084                                                              : sciclient_pm.obj (.text.Sciclient_pmGetModuleClkFreq)
                      43c0e93c    00000084                                                              : sciclient_pm.obj (.text.Sciclient_pmModuleGetClkStatus)
                      43c0e9c0    00000082     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_init)
                      43c0ea42    00000082     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_pm.obj (.text.Sciclient_pmGetModuleState)
                      43c0eac4    00000080                                                              : sciclient.obj (.text.Sciclient_ISR)
                      43c0eb44    00000080                                                              : sciclient_secureproxy.obj (.text.Sciclient_sendMessage)
                      43c0ebc4    00000080     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_div.obj (.text.clk_div_reg_set_div)
                      43c0ec44    00000080                                                       : clk_pll_16fft.obj (.text.clk_pll_16fft_postdiv_set_freq)
                      43c0ecc4    00000080                                                       : clock.obj (.text.set_clock_parent_handler)
                      43c0ed44    0000007e     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_pm.obj (.text.Sciclient_pmModuleClkRequest)
                      43c0edc2    0000007e                                                              : sciclient_pm.obj (.text.Sciclient_pmSetModuleClkParent)
                      43c0ee40    0000007c     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_phyInit)
                      43c0eebc    0000007c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk.obj (.text.clk_notify_sibling_freq)
                      43c0ef38    0000007c                                                       : clk_pll_16fft.obj (.text.clk_pll_16fft_postdiv_set_div)
                      43c0efb4    0000007c                                                       : clock.obj (.text.get_clock_parent_handler)
                      43c0f030    0000007c                                                       : clock.obj (.text.get_num_clock_parents_handler)
                      43c0f0ac    0000007c                                                       : rm_ra.obj (.text.rm_ra_is_managed_resasg_utype)
                      43c0f128    0000007a                                                       : rm_udmap.obj (.text.udmap_clear_rom_oes)
                      43c0f1a2    00000002     --HOLE-- [fill = 0]
                      43c0f1a4    00000078     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient.obj (.text.Sciclient_servicePrepareHeader)
                      43c0f21c    00000078     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : psc.obj (.text.psc_drop_pwr_up_ref)
                      43c0f294    00000078     libc.a : snprintf.c.obj (.text.snprintf)
                      43c0f30c    00000076     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_priv.obj (.text.MMCSD_parseCIDSd)
                      43c0f382    00000002     --HOLE-- [fill = 0]
                      43c0f384    00000074     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_dev.obj (.text.clk_from_device_get_state)
                      43c0f3f8    00000074                                                       : clk.obj (.text.clk_get)
                      43c0f46c    00000074                                                       : device_process.obj (.text.set_device_resets_handler)
                      43c0f4e0    00000072     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socCpuPowerOnResetA53)
                      43c0f552    00000002     --HOLE-- [fill = 0]
                      43c0f554    00000070     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient.obj (.text.Sciclient_configPrmsInit)
                      43c0f5c4    0000006e     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : ddr_soc.obj (.text.DDR_programHSDIV)
                      43c0f632    0000006e                                                    : lpddr4.obj (.text.LPDDR4_Start)
                      43c0f6a0    0000006e                                                    : soc.obj (.text.SOC_moduleClockEnable)
                      43c0f70e    0000006e     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_core.obj (.text.core_resasg_get_range)
                      43c0f77c    0000006c     libc.a : atoi.c.obj (.text.atoi)
                      43c0f7e8    0000006c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : device_clk.obj (.text.device_clk_init)
                      43c0f854    0000006c                                                       : device_clk.obj (.text.get_dev_clk)
                      43c0f8c0    0000006c                                                       : psc.obj (.text.lpsc_module_set_reset_iso)
                      43c0f92c    0000006a     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socMemInitCpu)
                      43c0f996    0000006a     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_ia.obj (.text.ia_unmap_clear_rom_mapping)
                      43c0fa00    00000068     nortos.am62ax.r5f.ti-arm-clang.release.lib : AddrTranslateP.obj (.text.AddrTranslateP_getLocalAddr)
                      43c0fa68    00000068     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socCpuGetClock)
                      43c0fad0    00000068                                                    : bootloader_soc.obj (.text.Bootloader_socCpuRelease)
                      43c0fb38    00000068                                                    : uart_v0.obj (.text.UART_writeCancelNoCB)
                      43c0fba0    00000068     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_mux.obj (.text.clk_mux_get_parent)
                      43c0fc08    00000068                                                       : rm_core.obj (.text.rm_core_validate_devgrp)
                      43c0fc70    00000068                                                       : rm_ir.obj (.text.rm_ir_get_outp)
                      43c0fcd8    00000066     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socCpuRequest)
                      43c0fd3e    00000064                                                    : csl_emif.obj (.text.CSL_emifConfig)
                      43c0fda2    00000064                                                    : mmcsd_v1.obj (.text.MMCSD_isReadyForTransfer)
                      43c0fe06    00000064     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_procboot.obj (.text.Sciclient_procBootSetSequenceCtrl)
                      43c0fe6a    00000002     --HOLE-- [fill = 0]
                      43c0fe6c    00000064     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_div.obj (.text.clk_div_reg_get_div)
                      43c0fed0    00000064                                                       : clk_pll_16fft.obj (.text.clk_pll_16fft_get_state)
                      43c0ff34    00000064                                                       : psc.obj (.text.lpsc_module_clk_put)
                      43c0ff98    00000064                                                       : resource.obj (.text.resource_get)
                      43c0fffc    00000064                                                       : rm_core.obj (.text.rm_core_resasg_get_utype_index)
                      43c10060    00000062     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient.obj (.text.Sciclient_setDebugConfig)
                      43c100c2    00000062     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : udma_ring_common.obj (.text.Udma_ringQueueRaw)
                      43c10124    00000062                                                    : utils.obj (.text.Utils_memcpyWord)
                      43c10186    00000060                                                    : mmcsd_v1.obj (.text.MMCSD_cmdStatusPollingFxn)
                      43c101e6    00000060                                                    : mmcsd_v1.obj (.text.MMCSD_readBootPartition)
                      43c10246    00000002     --HOLE-- [fill = 0]
                      43c10248    00000060     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct_wrapper.obj (.text.Sciclient_direct_init)
                      43c102a8    00000060                                                              : sciclient_pm.obj (.text.Sciclient_pmSetModuleState)
                      43c10308    00000060     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk.obj (.text.clk_notify_freq)
                      43c10368    00000060                                                       : device_psc.obj (.text.soc_device_get_state)
                      43c103c8    0000005e     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.text.Bootloader_runCpu)
                      43c10426    0000005e     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos.obj (.text.ClockP_timerTickIsr)
                      43c10484    0000005e     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_procboot.obj (.text.Sciclient_procBootAuthAndStart)
                      43c104e2    0000005c                                                              : sciclient_procboot.obj (.text.Sciclient_procBootReleaseProcessor)
                      43c1053e    0000005c     nortos.am62ax.r5f.ti-arm-clang.release.lib : DebugP_log.obj (.text._DebugP_assert)
                      43c1059a    00000002     --HOLE-- [fill = 0]
                      43c1059c    0000005c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_div.obj (.text.clk_div_reg_go_get_div)
                      43c105f8    0000005c                                                       : clk_pllctrl.obj (.text.clk_pllctrl_mux_get_parent)
                      43c10654    0000005c                                                       : device_clk.obj (.text.device_clk_get_hw_ready)
                      43c106b0    0000005c                                                       : clock.obj (.text.get_freq_handler)
                      43c1070c    0000005c                                                       : rm_ra.obj (.text.ra_check_monitor_index_range)
                      43c10768    0000005c                                                       : device_psc.obj (.text.soc_device_disable)
                      43c107c4    0000005a     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : soc.obj (.text.SOC_controlModuleLockMMR)
                      43c1081e    0000005a                                                    : udma_ring_common.obj (.text.Udma_ringDequeueRaw)
                      43c10878    00000058                                                    : bootloader_mmcsd_raw.obj (.text.MMCSDRaw_imgRead)
                      43c108d0    00000058     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_procboot.obj (.text.Sciclient_procBootGetProcessorState)
                      43c10928    00000058     libc.a : snprintf.c.obj (.text._outs)
                      43c10980    00000058     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : device_clk.obj (.text.device_clk_set_freq_change)
                      43c109d8    00000058                                                       : device_clk.obj (.text.device_clk_set_ssc)
                      43c10a30    00000058                                                       : rm_irq.obj (.text.irq_validate_global_event)
                      43c10a88    00000058                                                       : itoa.obj (.text.lib_itoa)
                      43c10ae0    00000058                                                       : mmr_lock.obj (.text.mmr_unlock_all)
                      43c10b38    00000058                                                       : pll.obj (.text.pll_init)
                      43c10b90    00000058                                                       : rm_udmap.obj (.text.udmap_get_inst)
                      43c10be8    00000058     libc.a : autoinit.c.obj (.text:__TI_auto_init_nobinit_nopinit)
                      43c10c40    00000056     ti_drivers_open_close.obj (.text.Drivers_uartOpen)
                      43c10c96    00000056     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : uart_dma.obj (.text.UART_dmaDisableChannel)
                      43c10cec    00000054                                                    : mmcsd_v1.obj (.text.MMCSD_halSendCommand)
                      43c10d40    00000054     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_pm.obj (.text.Sciclient_pmSetModuleRst)
                      43c10d94    00000054                                                              : sciclient_procboot.obj (.text.Sciclient_procBootRequestProcessor)
                      43c10de8    00000054     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : uart_dma.obj (.text.UART_dmaClose)
                      43c10e3c    00000054     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_div.obj (.text.clk_div_init)
                      43c10e90    00000054                                                       : psc.obj (.text.lpsc_module_get_local_reset)
                      43c10ee4    00000054                                                       : rm_ia.obj (.text.rm_ia_is_managed_resasg_utype)
                      43c10f38    00000054                                                       : rm_irq.obj (.text.rm_irq_oes_src_register)
                      43c10f8c    00000054                                                       : device_psc.obj (.text.soc_device_enable)
                      43c10fe0    00000052                                                       : rm_ra.obj (.text.ra_clear_rom_oes)
                      43c11032    00000050     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.text.Bootloader_loadCpu)
                      43c11082    00000050                                                    : bootloader.obj (.text.Bootloader_rprcImageParseEntryPoint)
                      43c110d2    00000050     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos.obj (.text.ClockP_addToList)
                      43c11122    00000050                                                : ClockP_nortos.obj (.text.ClockP_construct)
                      43c11172    00000050     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_halSetBusWidth)
                      43c111c2    00000050     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient.obj (.text.Sciclient_abiCheck)
                      43c11212    00000050                                                              : sciclient_firewall.obj (.text.Sciclient_firewallSetRegion)
                      43c11262    00000002     --HOLE-- [fill = 0]
                      43c11264    00000050                                                              : sciclient.obj (.text.Sciclient_getCurrentContext)
                      43c112b4    00000050     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_pll_16fft.obj (.text.clk_pll_16fft_postdiv_get_div)
                      43c11304    00000050                                                       : device_psc.obj (.text.soc_device_get_context_loss_count)
                      43c11354    00000050                                                       : device_psc.obj (.text.soc_device_set_resets)
                      43c113a4    0000004e     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.text.Bootloader_findSeq)
                      43c113f2    0000004e                                                    : lpddr4.obj (.text.LPDDR4_ReadReg)
                      43c11440    0000004e     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : device_psc.obj (.text.soc_device_verify_mapping)
                      43c1148e    0000004c     ti_drivers_open_close.obj (.text.Drivers_mmcsdOpen)
                      43c114da    00000002     --HOLE-- [fill = 0]
                      43c114dc    0000004c     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient.obj (.text.Sciclient_deinit)
                      43c11528    0000004c                                                              : sciclient_boardcfg.obj (.text.Sciclient_getDefaultBoardCfgInfo)
                      43c11574    0000004c                                                              : sciclient_procboot.obj (.text.Sciclient_procBootSetProcessorCfg)
                      43c115c0    0000004c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_pll_16fft.obj (.text.clk_pll_16fft_cal_option4)
                      43c1160c    0000004c                                                       : psc.obj (.text.lpsc_module_get_reset_iso)
                      43c11658    0000004c                                                       : rm_ra.obj (.text.ra_get_inst)
                      43c116a4    0000004c                                                       : device_psc.obj (.text.soc_device_get_resets)
                      43c116f0    0000004c                                                       : device_psc.obj (.text.soc_device_ret_disable)
                      43c1173c    0000004c                                                       : device_psc.obj (.text.soc_device_ret_enable)
                      43c11788    0000004a     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : lpddr4.obj (.text.LPDDR4_WritePhyIndepConfig)
                      43c117d2    0000004a                                                    : mmcsd_priv.obj (.text.MMCSD_parseCSDEmmc)
                      43c1181c    0000004a                                                    : pinmux.obj (.text.Pinmux_unlockMMR)
                      43c11866    0000004a                                                    : soc.obj (.text.SOC_controlModuleUnlockMMR)
                      43c118b0    00000048     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_pll_16fft.obj (.text.clk_pll_16fft_bypass)
                      43c118f8    00000048                                                       : clk.obj (.text.clk_put)
                      43c11940    00000048                                                       : device_clk.obj (.text.get_dev_clk_data)
                      43c11988    00000048     libc.a : memccpy.c.obj (.text.memccpy)
                      43c119d0    00000046     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos.obj (.text.ClockP_getTimeUsec)
                      43c11a16    00000046     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : lpddr4.obj (.text.LPDDR4_WritePhyConfig)
                      43c11a5c    00000046                                                    : lpddr4.obj (.text.LPDDR4_WriteReg)
                      43c11aa2    00000046                                                    : pinmux.obj (.text.Pinmux_config)
                      43c11ae8    00000046     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_irq.obj (.text.irq_cfg_is_ia_cfg)
                      43c11b2e    00000046                                                       : rm_irq.obj (.text.irq_cfg_is_ir_cfg)
                      43c11b74    00000046                                                       : rm_irq.obj (.text.irq_cfg_is_oes_only)
                      43c11bba    00000002     --HOLE-- [fill = 0]
                      43c11bbc    00000044     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct_wrapper.obj (.text.Sciclient_waitForBootNotification)
                      43c11c00    00000044     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : dmsc.obj (.text.am62a_sys_reset_handler)
                      43c11c44    00000044                                                       : clk.obj (.text.clk_get_state)
                      43c11c88    00000042     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_mem.obj (.text.Mem_imgRead)
                      43c11cca    00000042     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : device_clk.obj (.text.device_clk_disable)
                      43c11d0c    00000042                                                       : device_clk.obj (.text.device_clk_enable)
                      43c11d4e    00000040     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_profile.obj (.text.Bootloader_profileReset)
                      43c11d8e    00000040     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos.obj (.text.ClockP_stop)
                      43c11dce    00000040     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : ddr.obj (.text.DDR_setFreq)
                      43c11e0e    00000040     ti_dpl_config.obj (.text.Dpl_init)
                      43c11e4e    00000040     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : lpddr4.obj (.text.LPDDR4_WriteCtlConfig)
                      43c11e8e    00000040     nortos.am62ax.r5f.ti-arm-clang.release.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_constructBinary)
                      43c11ece    00000002     --HOLE-- [fill = 0]
                      43c11ed0    00000040     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_mux.obj (.text.clk_get_parent)
                      43c11f10    00000040                                                       : psc.obj (.text.psc_lookup_lpsc)
                      43c11f50    00000040                                                       : device_psc.obj (.text.soc_device_set_reset_iso)
                      43c11f90    00000040                                                       : trace.obj (.text.trace_debug_internal)
                      43c11fd0    0000003e     nortos.am62ax.r5f.ti-arm-clang.release.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_constructMutex)
                      43c1200e    0000003e     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : device_clk.obj (.text.device_clk_get_num_parents)
                      43c1204c    0000003e                                                       : device_psc.obj (.text.soc_device_ret_enable_internal)
                      43c1208a    0000003e                                                       : rm_udmap.obj (.text.udmap_validate_chan_type)
                      43c120c8    0000003c     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socTranslateSectionAddr)
                      43c12104    0000003c     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos.obj (.text.ClockP_usleep)
                      43c12140    0000003c     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_halBusPower)
                      43c1217c    0000003c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : device_pm.obj (.text.device_disable)
                      43c121b8    0000003c                                                       : rm_ia.obj (.text.ia_get_inst)
                      43c121f4    0000003c                                                       : rm_ir.obj (.text.ir_get_inst)
                      43c12230    0000003c                                                       : psc.obj (.text.lpsc_module_clk_get)
                      43c1226c    0000003c                                                       : mmr_lock.obj (.text.mmr_unlock)
                      43c122a8    0000003c                                                       : device_psc.obj (.text.soc_device_get_reset_iso)
                      43c122e4    0000003c                                                       : device_psc.obj (.text.soc_device_ret_disable_internal)
                      43c12320    0000003a     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.text.Bootloader_open)
                      43c1235a    0000003a     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos.obj (.text.ClockP_destruct)
                      43c12394    0000003a                                                : DebugP_uartLogWriter.obj (.text.DebugP_uartLogWriterPutChar)
                      43c123ce    0000003a     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_halSoftReset)
                      43c12408    0000003a                                                    : uart_dma.obj (.text.UART_dmaOpen)
                      43c12442    0000003a     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : boardcfg-user.obj (.text.boardcfg_pm_receive_and_validate)
                      43c1247c    00000038     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socCpuPowerOnReset)
                      43c124b4    00000038     ti_drivers_config.obj (.text.System_init)
                      43c124ec    00000038     nortos.am62ax.r5f.ti-arm-clang.release.lib : DebugP_nortos.obj (.text._DebugP_logZone)
                      43c12524    00000038     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk.obj (.text.clk_drop_pwr_up_en)
                      43c1255c    00000038                                                       : clk_pll_16fft.obj (.text.clk_pll_16fft_cal_option3)
                      43c12594    00000038                                                       : clk.obj (.text.clk_value_set_freq)
                      43c125cc    00000038                                                       : device_clk.obj (.text.device_clk_get_freq)
                      43c12604    00000038                                                       : rm_ir.obj (.text.rm_ir_init)
                      43c1263c    00000038                                                       : rm_irq.obj (.text.rm_irq_is_managed_resasg_utype)
                      43c12674    00000036     ti_power_clock_config.obj (.text.Module_clockSetFrequency)
                      43c126aa    00000034     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.text.Bootloader_BootImageInfo_init)
                      43c126de    00000034                                                    : bootloader_soc.obj (.text.Bootloader_socOpenFirewalls)
                      43c12712    00000034     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos.obj (.text.ClockP_start)
                      43c12746    00000034     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : lpddr4_am6x.obj (.text.LPDDR4_EnablePIInitiator)
                      43c1277a    00000034                                                    : lpddr4.obj (.text.LPDDR4_PollCtlIrq)
                      43c127ae    00000002     --HOLE-- [fill = 0]
                      43c127b0    00000034     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : uart_print.obj (.text.UART_dataWrite)
                      43c127e4    00000034     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk.obj (.text.clk_set_state)
                      43c12818    00000034                                                       : device.obj (.text.devices_init_rw)
                      43c1284c    00000034                                                       : psc.obj (.text.psc_lookup)
                      43c12880    00000034                                                       : psc.obj (.text.psc_lookup_pd)
                      43c128b4    00000034                                                       : rm.obj (.text.rm_init)
                      43c128e8    00000032     ti_drivers_open_close.obj (.text.Drivers_close)
                      43c1291a    00000032     nortos.am62ax.r5f.ti-arm-clang.release.lib : SemaphoreP_nortos.obj (.text.SemaphoreP_post)
                      43c1294c    00000032     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : uart_v0.obj (.text.UART_getHandle)
                      43c1297e    00000032     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : device_pm.obj (.text.device_set_retention)
                      43c129b0    00000030     libc.a : snprintf.c.obj (.text._outc)
                      43c129e0    00000030     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_fixed.obj (.text.clk_fixed_get_freq)
                      43c12a10    00000030                                                       : clk.obj (.text.clk_get_freq)
                      43c12a40    00000030                                                       : clk.obj (.text.clk_get_parent_freq)
                      43c12a70    00000030     nortos.am62ax.r5f.ti-arm-clang.release.lib : PmuP_armv7r_asm.obj (.text.pmu)
                      43c12aa0    00000030     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : trace-uart.obj (.text.trace_debug_uart)
                      43c12ad0    0000002e     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_getHandle)
                      43c12afe    0000002e                                                    : mmcsd_v1.obj (.text.MMCSD_halLinesResetCmd)
                      43c12b2c    0000002e                                                    : mmcsd_v1.obj (.text.MMCSD_halLinesResetDat)
                      43c12b5a    0000002e     ti_power_clock_config.obj (.text.Module_clockDisable)
                      43c12b88    0000002e     ti_power_clock_config.obj (.text.Module_clockEnable)
                      43c12bb6    0000002e     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_pll_16fft.obj (.text.clk_pll_16fft_set_state)
                      43c12be4    0000002c     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_halCmdResponseGet)
                      43c12c10    0000002c     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_secureproxy.obj (.text.Sciclient_flush)
                      43c12c3c    0000002c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : boardcfg-user.obj (.text.boardcfg_memcpy_rm)
                      43c12c68    0000002c                                                       : clk_div.obj (.text.clk_get_div)
                      43c12c94    0000002c                                                       : clk.obj (.text.clk_lookup)
                      43c12cc0    0000002c                                                       : clk_div.obj (.text.clk_lookup)
                      43c12cec    0000002c                                                       : clk_mux.obj (.text.clk_lookup)
                      43c12d18    0000002c                                                       : clk_pll_16fft.obj (.text.clk_lookup)
                      43c12d44    0000002c                                                       : device_clk.obj (.text.clk_lookup)
                      43c12d70    0000002c                                                       : psc.obj (.text.clk_lookup)
                      43c12d9c    0000002c                                                       : psc.obj (.text.device_lookup)
                      43c12dc8    0000002c                                                       : rm_irq.obj (.text.irq_is_evt_src)
                      43c12df4    0000002c                                                       : psc.obj (.text.lpsc_module_get_state)
                      43c12e20    0000002c                                                       : fw_caps.obj (.text.query_fw_caps_handler)
                      43c12e4c    0000002a     BootCtrl.obj (.text.BootCtrl_updateeMMCMiscData_gSystemAttemptBootNum)
                      43c12e76    0000002a     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_ir.obj (.text.ir_clear_outp)
                      43c12ea0    0000002a                                                       : device_psc.obj (.text.soc_device_get_state_internal)
                      43c12eca    00000028     BootCtrl.obj (.text.BootCtrl_readeMMCMiscData_BootPartitionNum)
                      43c12ef2    00000028     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socRprcToCslCoreId)
                      43c12f1a    00000028     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos.obj (.text.ClockP_sleepTicks)
                      43c12f42    00000028     LogServ.obj (.text.LogServ_SearchIndexBaseModuleId)
                      43c12f6a    00000028     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_priv.obj (.text.MMCSD_parseSCRSd)
                      43c12f92    00000028                                                    : udma_ch.obj (.text.Udma_chGetCqRingHandle)
                      43c12fba    00000028                                                    : udma_ch.obj (.text.Udma_chGetFqRingHandle)
                      43c12fe2    00000002     --HOLE-- [fill = 0]
                      43c12fe4    00000028     libclang_rt.builtins.a : ashldi3.S.obj (.text.__ashldi3)
                      43c1300c    00000028                            : lshrdi3.S.obj (.text.__lshrdi3)
                      43c13034    00000028     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk.obj (.text.clk_value_get_freq)
                      43c1305c    00000028                                                       : psc.obj (.text.lpsc_module_idx)
                      43c13084    00000028                                                       : psc.obj (.text.pd_initiate)
                      43c130ac    00000028                                                       : rm_ia.obj (.text.rm_ia_validate_vint)
                      43c130d4    00000028                                                       : rm_ir.obj (.text.rm_ir_is_managed_resasg_utype)
                      43c130fc    00000028                                                       : rm_ir.obj (.text.rm_ir_validate_output)
                      43c13124    00000028                                                       : device_psc.obj (.text.soc_device_disable_internal)
                      43c1314c    00000028                                                       : device_psc.obj (.text.soc_device_enable_internal)
                      43c13174    00000026     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_profile.obj (.text.Bootloader_profileAddProfilePoint)
                      43c1319a    00000026                                                    : bootloader_soc.obj (.text.Bootloader_socIsMCUResetIsoEnabled)
                      43c131c0    00000026     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_udmap.obj (.text.udmap_validate_ch_fetch_size)
                      43c131e6    00000026                                                       : rm_udmap.obj (.text.udmap_validate_ch_pause_on_err)
                      43c1320c    00000026                                                       : rm_udmap.obj (.text.udmap_validate_orderid)
                      43c13232    00000026                                                       : rm_udmap.obj (.text.udmap_validate_priority)
                      43c13258    00000026                                                       : rm_udmap.obj (.text.udmap_validate_qos)
                      43c1327e    00000024     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : gtc_soc.obj (.text.GTC_setFID)
                      43c132a2    00000002     --HOLE-- [fill = 0]
                      43c132a4    00000024     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_secureproxy.obj (.text.Sciclient_waitThread)
                      43c132c8    00000024     ti_drivers_config.obj (.text.System_deinit)
                      43c132ec    00000024     libclang_rt.builtins.a : aeabi_uldivmod.S.obj (.text.__aeabi_uldivmod)
                      43c13310    00000024     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : boardcfg-user.obj (.text.boardcfg_get_rm_devgrp)
                      43c13334    00000024                                                       : clk_soc_hfosc0.obj (.text.clk_soc_hfosc0_get_freq)
                      43c13358    00000024                                                       : map.obj (.text.closest)
                      43c1337c    00000024                                                       : device_prepare.obj (.text.device_prepare_exclusive)
                      43c133a0    00000024                                                       : device_pm.obj (.text.device_suspend)
                      43c133c4    00000024                                                       : dmsc.obj (.text.dmsc_init)
                      43c133e8    00000024     nortos.am62ax.r5f.ti-arm-clang.release.lib : PmuP_armv7r.obj (.text.pmu)
                      43c1340c    00000024     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : psc.obj (.text.psc_pd_idx)
                      43c13430    00000024                                                       : rm_ia.obj (.text.rm_ia_vint_get_info)
                      43c13454    00000024                                                       : rm_irq.obj (.text.rm_irq_init)
                      43c13478    00000024                                                       : rm_udmap.obj (.text.udmap_validate_atype)
                      43c1349c    00000024                                                       : rm_udmap.obj (.text.udmap_validate_sched_priority)
                      43c134c0    00000024     nortos.am62ax.r5f.ti-arm-clang.release.lib : printf.obj (.text.vprintf_)
                      43c134e4    00000022                                                : ClockP_nortos.obj (.text.ClockP_deinit)
                      43c13506    00000022     ti_pinmux_config.obj (.text.Pinmux_init)
                      43c13528    00000022     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk.obj (.text.clk_ssc_allow)
                      43c1354a    00000022                                                       : device_clk.obj (.text.device_clk_set_input_term)
                      43c1356c    00000022                                                       : rm_ir.obj (.text.ir_get_inp)
                      43c1358e    00000022                                                       : osal_glue.obj (.text.osal_delay)
                      43c135b0    00000022                                                       : clk_div.obj (.text.pm_writel_verified)
                      43c135d2    00000022                                                       : clk_pll_16fft.obj (.text.pm_writel_verified)
                      43c135f4    00000020     BootCtrl.obj (.text.BootCtrl_InitFunction)
                      43c13614    00000020     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socGetCoreName)
                      43c13634    00000020     nortos.am62ax.r5f.ti-arm-clang.release.lib : DebugP_log.obj (.text.DebugP_logZoneEnable)
                      43c13654    00000020     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : soc.obj (.text.SOC_getSelfCpuClk)
                      43c13674    00000020     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct.obj (.text.Sciclient_query_fw_caps_handler)
                      43c13694    00000020     nortos.am62ax.r5f.ti-arm-clang.release.lib : TimerP.obj (.text.TimerP_Params_init)
                      43c136b4    00000020     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk.obj (.text.clk_ssc_block)
                      43c136d4    00000020                                                       : clk_pll_16fft.obj (.text.pll_16fft_pllm_valid)
                      43c136f4    00000020                                                       : device_psc.obj (.text.soc_device_get_context_loss_count_internal)
                      43c13714    00000020     libc.a : wcslen.c.obj (.text.wcslen)
                      43c13734    0000001e     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : resource.obj (.text.device_resource_mem)
                      43c13752    0000001e                                                       : psc.obj (.text.psc_pd_clk_put)
                      43c13770    0000001e                                                       : core.obj (.text.sys_reset_handler)
                      43c1378e    0000001e                                                       : map.obj (.text.u32map_get)
                      43c137ac    0000001c     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.text.Bootloader_JumpSelfCpu)
                      43c137c8    0000001c                                                    : bootloader_soc.obj (.text.Bootloader_socCpuGetClkDefault)
                      43c137e4    0000001c                                                    : bootloader_soc.obj (.text.Bootloader_socIsAuthRequired)
                      43c13800    0000001c                                                    : bootloader_mem.obj (.text.Mem_imgOpen)
                      43c1381c    0000001c                                                    : soc.obj (.text.SOC_getCoreName)
                      43c13838    0000001c     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_secureproxy.obj (.text.Sciclient_readThread32)
                      43c13854    0000001c     nortos.am62ax.r5f.ti-arm-clang.release.lib : boot_armv7r.obj (.text._system_pre_init)
                      43c13870    0000001c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_irq.obj (.text.irq_oes_src_lookup)
                      43c1388c    0000001c                                                       : notifier.obj (.text.notifier_call)
                      43c138a8    0000001c                                                       : psc.obj (.text.psc_read)
                      43c138c4    0000001c                                                       : sleep.obj (.text.sleep_modes_register)
                      43c138e0    0000001c     libc.a : _printfi.c.obj (.text.strlen)
                      43c138fc    0000001c            : memcpy32.S.obj (.text:TI_memcpy_small)
                      43c13918    0000001a     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_profile.obj (.text.Bootloader_profileAddCore)
                      43c13932    0000001a                                                    : mmcsd_v1.obj (.text.MMCSD_deinit)
                      43c1394c    0000001a                                                    : uart_v0.obj (.text.UART_deinit)
                      43c13966    0000001a                                                    : uart_dma.obj (.text.UART_writeInterruptDma)
                      43c13980    0000001a     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : psc.obj (.text.psc_write)
                      43c1399a    00000018     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socAuthImage)
                      43c139b2    00000018     ti_drivers_open_close.obj (.text.Drivers_mmcsdClose)
                      43c139ca    00000018     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : lpddr4.obj (.text.LPDDR4_Init)
                      43c139e2    00000002     --HOLE-- [fill = 0]
                      43c139e4    00000018     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : boardcfg-user.obj (.text.boardcfg_get_rm_resasg_size)
                      43c139fc    00000018                                                       : clk_pll_16fft.obj (.text.clk_pll_16fft_postdiv_valid_div)
                      43c13a14    00000018                                                       : clk_soc_lfosc0.obj (.text.clk_soc_lfosc0_get_freq)
                      43c13a2c    00000018                                                       : device_clk.obj (.text.dev_get_clk)
                      43c13a44    00000018                                                       : clk_pll_16fft.obj (.text.pll_16fft_clkod_valid)
                      43c13a5c    00000018     libc.a : memset32.S.obj (.text:TI_memset_small)
                      43c13a74    00000016     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_div.obj (.text.clk_div_get_freq)
                      43c13a8a    00000016                                                       : clk_pll_16fft.obj (.text.clk_pll_16fft_check_lock)
                      43c13aa0    00000016                                                       : device_clk.obj (.text.device_clk_set_freq)
                      43c13ab6    00000014     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_getBlockSize)
                      43c13aca    00000002     --HOLE-- [fill = 0]
                      43c13acc    00000014     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_secureproxy.obj (.text.Sciclient_readThreadCount)
                      43c13ae0    00000014                                                              : sciclient_secureproxy.obj (.text.Sciclient_verifyThread)
                      43c13af4    00000014     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : boardcfg-user.obj (.text.boardcfg_get_rm_resasg)
                      43c13b08    00000014                                                       : clk_pll_16fft.obj (.text.clk_pll_16fft_is_bypass)
                      43c13b1c    00000014                                                       : device_clk.obj (.text.device_clk_get_freq_change)
                      43c13b30    00000014                                                       : device_clk.obj (.text.device_clk_get_input_term)
                      43c13b44    00000014                                                       : device_clk.obj (.text.device_clk_get_ssc)
                      43c13b58    00000014                                                       : device_clk.obj (.text.device_clk_get_sw_gated)
                      43c13b6c    00000014                                                       : rm_core.obj (.text.rm_core_unmap_region)
                      43c13b80    00000014                                                       : sys-reset.obj (.text.system_reset)
                      43c13b94    00000012     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : csl_emif.obj (.text.CSL_emifClearECCInterruptStatus)
                      43c13ba6    00000012                                                    : csl_emif.obj (.text.CSL_emifEnableECCInterrupts)
                      43c13bb8    00000012                                                    : gtc.obj (.text.GTC_init)
                      43c13bca    00000012     nortos.am62ax.r5f.ti-arm-clang.release.lib : TimerP.obj (.text.TimerP_clearOverflowInt)
                      43c13bdc    00000010                                                : ClockP_nortos.obj (.text.ClockP_ticksToUsec)
                      43c13bec    00000010     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : lpddr4.obj (.text.LPDDR4_Probe)
                      43c13bfc    00000010     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_secureproxy.obj (.text.Sciclient_threadStatusReg)
                      43c13c0c    00000010                                                              : sciclient.obj (.text.Sciclient_utilByteCopy)
                      43c13c1c    00000010     libclang_rt.builtins.a : aeabi_memset.S.obj (.text.__aeabi_memset)
                      43c13c2c    00000010     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : device_clk.obj (.text.device_clk_query_freq)
                      43c13c3c    00000010                                                       : device_pm.obj (.text.device_notify)
                      43c13c4c    00000010                                                       : device.obj (.text.pm_devgroup_is_enabled)
                      43c13c5c    00000010                                                       : device.obj (.text.pm_devgroup_set_enabled)
                      43c13c6c    00000010                                                       : rm_core.obj (.text.rm_core_map_region)
                      43c13c7c    0000000e     BootCtrl.obj (.text.BootCtrl_writeeMMCMiscData_BootPartitionNum)
                      43c13c8a    0000000e     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_profile.obj (.text.Bootloader_profileUpdateAppimageSize)
                      43c13c98    0000000e                                                    : bootloader_profile.obj (.text.Bootloader_profileUpdateMediaAndClk)
                      43c13ca6    0000000e                                                    : bootloader_soc.obj (.text.Bootloader_socCpuSetEntryPoint)
                      43c13cb4    0000000e     ti_dpl_config.obj (.text.Dpl_deinit)
                      43c13cc2    0000000e     ti_drivers_open_close.obj (.text.Drivers_open)
                      43c13cd0    0000000e     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : gtc_soc.obj (.text.GTC_enable)
                      43c13cde    0000000e     ti_power_clock_config.obj (.text.PowerClock_init)
                      43c13cec    0000000c     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.text.Bootloader_Params_init)
                      43c13cf8    0000000c                                                    : bootloader_soc.obj (.text.Bootloader_socSelfCPUjump)
                      43c13d04    0000000c     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos.obj (.text.ClockP_getTicks)
                      43c13d10    0000000c     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : ddr_soc.obj (.text.DDR_ResetDDR_PLL)
                      43c13d1c    0000000c     nortos.am62ax.r5f.ti-arm-clang.release.lib : DebugP_uartLogWriter.obj (.text.DebugP_uartSetDrvIndex)
                      43c13d28    0000000c     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.text.MMCSD_getInputClk)
                      43c13d34    0000000c     libc.a : aeabi_portable.c.obj (.text.__aeabi_errno_addr)
                      43c13d40    0000000c     libclang_rt.builtins.a : aeabi_memset.S.obj (.text.__aeabi_memclr)
                      43c13d4c    0000000c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : device_prepare.obj (.text.device_prepare_nonexclusive)
                      43c13d58    0000000c                                                       : sys-reset.obj (.text.sys_reset_handler_register)
                      43c13d64    0000000c                                                       : trace.obj (.text.trace_reconfigure)
                      43c13d70    0000000a     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.text.Bootloader_getMulticoreImageSize)
                      43c13d7a    0000000a                                                    : bootloader_soc.obj (.text.Bootloader_socGetSBLMem)
                      43c13d84    0000000a                                                    : bootloader_soc.obj (.text.Bootloader_socIsSmpEnable)
                      43c13d8e    0000000a                                                    : csl_sec_proxy.obj (.text.CSL_secProxyGetDataAddr)
                      43c13d98    0000000a     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos.obj (.text.ClockP_Params_init)
                      43c13da2    0000000a                                                : ClockP_nortos.obj (.text.ClockP_isActive)
                      43c13dac    0000000a     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_mmcsd_raw.obj (.text.MMCSDRaw_imgOpen)
                      43c13db6    0000000a     nortos.am62ax.r5f.ti-arm-clang.release.lib : TimerP.obj (.text.TimerP_start)
                      43c13dc0    0000000a                                                : TimerP.obj (.text.TimerP_stop)
                      43c13dca    0000000a     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk.obj (.text.clk_notify_children_freq)
                      43c13dd4    0000000a                                                       : clk_div.obj (.text.readl)
                      43c13dde    0000000a                                                       : clk_mux.obj (.text.readl)
                      43c13de8    0000000a                                                       : clk_pll_16fft.obj (.text.readl)
                      43c13df2    0000000a                                                       : clk_pllctrl.obj (.text.readl)
                      43c13dfc    0000000a                                                       : dmsc.obj (.text.readl)
                      43c13e06    0000000a                                                       : mmr_lock.obj (.text.readl)
                      43c13e10    00000008     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_mmcsd_raw.obj (.text.MMCSDRaw_imgSeek)
                      43c13e18    00000008                                                    : soc.obj (.text.SOC_moduleGetClockFrequency)
                      43c13e20    00000008     nortos.am62ax.r5f.ti-arm-clang.release.lib : printf.obj (.text._out_char)
                      43c13e28    00000008     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk.obj (.text.clk_freq_change_allow)
                      43c13e30    00000008                                                       : clk.obj (.text.clk_freq_change_block)
                      43c13e38    00000008                                                       : psc.obj (.text.lpsc_module_get)
                      43c13e40    00000008                                                       : psc.obj (.text.lpsc_module_get_module_reset)
                      43c13e48    00000008                                                       : psc.obj (.text.lpsc_module_put)
                      43c13e50    00000008                                                       : psc.obj (.text.lpsc_module_ret_get)
                      43c13e58    00000008                                                       : psc.obj (.text.lpsc_module_ret_put)
                      43c13e60    00000008                                                       : rm_core.obj (.text.rm_core_param_is_valid)
                      43c13e68    00000008     libc.a : exit.c.obj (.text:abort)
                      43c13e70    00000006     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_pll_16fft.obj (.text.pll_16fft_bin)
                      43c13e76    00000004     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.text.Bootloader_socWaitForFWBoot)
                      43c13e7a    00000004                                                    : lpddr4.obj (.text.CPS_UncachedRead32)
                      43c13e7e    00000004                                                    : lpddr4.obj (.text.CPS_UncachedWrite32)
                      43c13e82    00000004     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos_r5.obj (.text.ClockP_getTimerCount)
                      43c13e86    00000004                                                : ClockP_nortos_r5.obj (.text.ClockP_timerClearOverflowInt)
                      43c13e8a    00000004     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_mmcsd_raw.obj (.text.MMCSDRaw_imgGetCurOffset)
                      43c13e8e    00000004                                                    : bootloader_mem.obj (.text.Mem_imgGetCurOffset)
                      43c13e92    00000004                                                    : bootloader_mem.obj (.text.Mem_imgSeek)
                      43c13e96    00000004     ti_power_clock_config.obj (.text.PowerClock_deinit)
                      43c13e9a    00000004     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct_wrapper.obj (.text.Sciclient_getSelfDevIdCore)
                      43c13e9e    00000004     nortos.am62ax.r5f.ti-arm-clang.release.lib : TimerP.obj (.text.TimerP_getCount)
                      43c13ea2    00000004                                                : TimerP.obj (.text.TimerP_getReloadCount)
                      43c13ea6    00000004     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : udma_utils.obj (.text.Udma_defaultVirtToPhyFxn)
                      43c13eaa    00000002     --HOLE-- [fill = 0]
                      43c13eac    00000004     libclang_rt.builtins.a : aeabi_memcpy.S.obj (.text.__aeabi_memcpy)
                      43c13eb0    00000004                            : aeabi_div0.c.obj (.text.__aeabi_idiv0)
                      43c13eb4    00000004     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_fixed.obj (.text.clk_fixed_get_state)
                      43c13eb8    00000004                                                       : clk_dev.obj (.text.clk_from_device_notify_freq)
                      43c13ebc    00000004                                                       : clk_dev.obj (.text.clk_from_device_set_state)
                      43c13ec0    00000004     libclang_rt.builtins.a : aeabi_div0.c.obj (.text.__aeabi_ldiv0)
                      43c13ec4    00000004     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_soc_hfosc0.obj (.text.clk_soc_hfosc0_get_state)
                      43c13ec8    00000004                                                       : clk_soc_lfosc0.obj (.text.clk_soc_lfosc0_get_state)
                      43c13ecc    00000004                                                       : device_clk.obj (.text.device_clk_get_hw_ssc)
                      43c13ed0    00000004                                                       : clk_pll_16fft.obj (.text.pll_16fft_vco_fitness)
                      43c13ed4    00000004     ti_dpl_config.obj (.text.putchar_)
                      43c13ed8    00000004     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_udmap.obj (.text.rm_udmap_flow_size_thresh_cfg)
                      43c13edc    00000004                                                       : device_psc.obj (.text.soc_device_init_complete)
                      43c13ee0    00000004                                                       : trace.obj (.text.trace_debug)
                      43c13ee4    00000008     nortos.am62ax.r5f.ti-arm-clang.release.lib : HwiP_armv7r_asm.obj (.tramp.HwiP_disable.1)
                      43c13eec    00000008                                                : PmuP_armv7r_asm.obj (.tramp.PmuP_enableCounters.1)
                      43c13ef4    00000008                                                : HwiP_armv7r_asm.obj (.tramp.HwiP_enable.1)
                      43c13efc    00000008                                                : HwiP_armv7r_asm.obj (.tramp.HwiP_restore.1)
                      43c13f04    00000008     libclang_rt.builtins.a : aeabi_memcpy.S.obj (.tramp.__aeabi_memcpy.1)
                      43c13f0c    00000004     --HOLE-- [fill = 0]
    
    .const     0    43c13f10    00001870     
                      43c13f10    00001498     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : devices.obj (.const.devgroup.MAIN)
                      43c153a8    000003cc                                                       : devices.obj (.const.devgroup.MCU_WAKEUP)
                      43c15774    0000000a                                                       : devices.obj (.const.devgroup.TIFS_INTERNAL)
                      43c1577e    00000002     --HOLE-- [fill = 0]
    
    .text.hwi 
    *          0    43c15780    00000718     
                      43c15780    00000408     nortos.am62ax.r5f.ti-arm-clang.release.lib : HwiP_armv7r_vim.obj (.text.hwi)
                      43c15b88    00000220                                                : HwiP_armv7r_handlers_nortos.obj (.text.hwi)
                      43c15da8    00000078                                                : HwiP_armv7r_handlers_nortos_asm.obj (.text.hwi)
                      43c15e20    00000070                                                : HwiP_armv7r_asm.obj (.text.hwi)
                      43c15e90    00000008                                                : HwiP_armv7r_asm.obj (.tramp.HwiP_enableFIQ.1)
    
    .text.cache 
    *          0    43c15e98    00000430     
                      43c15e98    00000340     nortos.am62ax.r5f.ti-arm-clang.release.lib : CacheP_armv7r_asm.obj (.text.cache)
                      43c161d8    000000d8                                                : CacheP_armv7r.obj (.text.cache)
                      43c162b0    00000008                                                : CacheP_armv7r_asm.obj (.tramp.CacheP_invL1d.1)
                      43c162b8    00000008                                                : CacheP_armv7r_asm.obj (.tramp.CacheP_enableL1p.1)
                      43c162c0    00000008                                                : HwiP_armv7r_asm.obj (.tramp.HwiP_restore.2)
    
    .text.mpu 
    *          0    43c162c8    00000248     
                      43c162c8    000001b8     nortos.am62ax.r5f.ti-arm-clang.release.lib : MpuP_armv7r.obj (.text.mpu)
                      43c16480    00000078                                                : MpuP_armv7r_asm.obj (.text.mpu)
                      43c164f8    00000008                                                : MpuP_armv7r_asm.obj (.tramp.MpuP_setRegionAsm.1)
                      43c16500    00000008                                                : HwiP_armv7r_asm.obj (.tramp.HwiP_restore.3)
                      43c16508    00000008                                                : MpuP_armv7r_asm.obj (.tramp.MpuP_isEnableAsm.1)
    
    .text.boot 
    *          0    43c16510    00000128     
                      43c16510    000000fc     nortos.am62ax.r5f.ti-arm-clang.release.lib : boot_armv7r_asm.obj (.text.boot)
                      43c1660c    0000001e                                                : DebugP_log.obj (.text.boot)
                      43c1662a    0000000e     ti_dpl_config.obj (.text.boot)
    
    .data      0    43c16638    00004240     
                      43c16638    00000cec     ti_drivers_config.obj (.data.DDRSS_phyReg)
                      43c17324    00000c8c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : boardcfg-user.obj (.data.local_rm_config)
                      43c17fb0    000006cc     ti_drivers_config.obj (.data.DDRSS_ctlReg)
                      43c1867c    000006a0     ti_drivers_config.obj (.data.DDRSS_phyIndepReg)
                      43c18d1c    00000676     ti_drivers_config.obj (.data.DDRSS_phyRegNum)
                      43c19392    00000366     ti_drivers_config.obj (.data.DDRSS_ctlRegNum)
                      43c196f8    00000350     ti_drivers_config.obj (.data.DDRSS_phyIndepRegNum)
                      43c19a48    0000023c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_core.obj (.data.resasg_indexer)
                      43c19c84    000001a0                                                       : ra_cfg.obj (.data.ra_inst)
                      43c19e24    00000168                                                       : udmap_cfg.obj (.data.udmap_inst)
                      43c19f8c    000000e0     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.data.gAddrTranslateInfo)
                      43c1a06c    000000c0                                                    : bootloader_soc.obj (.data.gCoreBootInfo)
                      43c1a12c    000000b8     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : ia_cfg.obj (.data.ia_inst)
                      43c1a1e4    0000009c     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.data.gMmcsdDrvObj)
                      43c1a280    0000009c                                                    : uart_v0.obj (.data.gUartDrvObj)
                      43c1a31c    00000090     ti_dpl_config.obj (.data.gMpuRegionConfig)
                      43c1a3ac    00000070     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : ir_cfg.obj (.data.ir_inst)
                      43c1a41c    00000060     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient.obj (.data..L_MergedGlobals)
                      43c1a47c    00000058     ti_pinmux_config.obj (.data.gPinMuxMainDomainCfg)
                      43c1a4d4    00000054     ti_drivers_open_close.obj (.data.gUartParams)
                      43c1a528    00000048     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient.obj (.data..L_MergedGlobals.1)
                      43c1a570    00000040     ti_drivers_config.obj (.data.gBootloaderConfig)
                      43c1a5b0    0000003c     ti_drivers_config.obj (.data.gMmcsdAttrs)
                      43c1a5ec    00000004     libc.a : aeabi_portable.c.obj (.data.__aeabi_errno)
                      43c1a5f0    00000038     ti_drivers_config.obj (.data.gDdrParams)
                      43c1a628    00000024     ti_power_clock_config.obj (.data.gSocModulesClockFrequency)
                      43c1a64c    00000020     ti_drivers_config.obj (.data.gBootloaderUdmaArgs)
                      43c1a66c    00000020     ti_drivers_config.obj (.data.gMemBootloaderConfig)
                      43c1a68c    00000004     ti_drivers_config.obj (.data.gBootloaderConfigNum)
                      43c1a690    00000020     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct_wrapper.obj (.data.gSciclientRomSecProxyCfg)
                      43c1a6b0    00000020                                                              : sciclient_secureProxyCfg.obj (.data.gSciclient_secProxyCfg)
                      43c1a6d0    00000018     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_mem.obj (.data.gBootloaderMemFxns)
                      43c1a6e8    00000018                                                    : bootloader_mmcsd_raw.obj (.data.gBootloaderMmcsdFxns)
                      43c1a700    00000018     ti_dpl_config.obj (.data.gClockConfig)
                      43c1a718    00000018     ti_pinmux_config.obj (.data.gPinMuxMcuDomainCfg)
                      43c1a730    00000018     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : udmap_cfg.obj (.data.rom_usage_DMASS0_PKTDMA_0)
                      43c1a748    00000014     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.data.gResMemSection)
                      43c1a75c    00000014     ti_power_clock_config.obj (.data.gSocModules)
                      43c1a770    00000010     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : trace.obj (.data..L_MergedGlobals)
                      43c1a780    00000010     ti_drivers_config.obj (.data.gMemBootloaderArgs)
                      43c1a790    0000000c     nortos.am62ax.r5f.ti-arm-clang.release.lib : AddrTranslateP.obj (.data.gAddrTranslateConfig)
                      43c1a79c    0000000c     ti_drivers_config.obj (.data.gBootloader0Args)
                      43c1a7a8    0000000c     ti_drivers_config.obj (.data.gBootloader1Args)
                      43c1a7b4    0000000c     ti_dpl_config.obj (.data.gMpuConfig)
                      43c1a7c0    0000000c     ti_drivers_config.obj (.data.gUartConfig)
                      43c1a7cc    00000008     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : device.obj (.data..L_MergedGlobals)
                      43c1a7d4    00000008                                                       : device_pm.obj (.data.device_notifiers)
                      43c1a7dc    00000008     ti_dpl_config.obj (.data.gCacheConfig)
                      43c1a7e4    00000004     nortos.am62ax.r5f.ti-arm-clang.release.lib : DebugP_log.obj (.data.gDebugLogZone)
                      43c1a7e8    00000008     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : ddr.obj (.data.gDDRECCRegion.0)
                      43c1a7f0    00000008                                                    : ddr.obj (.data.gDDRECCRegion.1)
                      43c1a7f8    00000008                                                    : ddr.obj (.data.gDDRECCRegion.3)
                      43c1a800    00000008                                                    : ddr.obj (.data.gDDRECCRegion.4)
                      43c1a808    00000008                                                    : ddr.obj (.data.gDDRECCRegion.6)
                      43c1a810    00000008                                                    : ddr.obj (.data.gDDRECCRegion.7)
                      43c1a818    00000008     ti_drivers_config.obj (.data.gMmcsdConfig)
                      43c1a820    00000008     ti_drivers_open_close.obj (.data.gMmcsdParams)
                      43c1a828    00000008     ti_drivers_config.obj (.data.gUartAttrs)
                      43c1a830    00000004     nortos.am62ax.r5f.ti-arm-clang.release.lib : DebugP_uartLogWriter.obj (.data.gDebugP_uartDrvIndex)
                      43c1a834    00000004     ti_dpl_config.obj (.data.gHwiConfig)
                      43c1a838    00000004     ti_drivers_config.obj (.data.gMmcsdConfigNum)
                      43c1a83c    00000004     ti_drivers_config.obj (.data.gUartConfigNum)
                      43c1a840    00000004     ti_drivers_config.obj (.data.gUartDmaConfigNum)
                      43c1a844    00000004     ti_drivers_config.obj (.data.operatingMode)
                      43c1a848    00000004     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_secureProxyCfg.obj (.data.pSciclient_secProxyCfg)
                      43c1a84c    00000004     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : ia_cfg.obj (.data.rom_usage_DMASS0_INTAGGR_0)
                      43c1a850    00000004                                                       : ia_cfg.obj (.data.rom_usage_unmapped_events_DMASS0_INTAGGR_0)
                      43c1a854    00000004                                                       : ia_cfg.obj (.data.rom_usage_unmapped_events_DMASS1_INTAGGR_0)
                      43c1a858    00000004     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.data.selfcoreEntry)
                      43c1a85c    00000001                                                    : ddr.obj (.data.DDR_isr.isrCnt)
                      43c1a85d    00000001                                                    : ddr.obj (.data.gDDRInitDoneFlag)
                      43c1a85e    00000001     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_core.obj (.data.region_mapped)
                      43c1a85f    00000001     --HOLE-- [fill = 0]
                      43c1a860    00000001     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : ddr.obj (.data.gDDRECCRegion.2)
                      43c1a861    00000007     --HOLE-- [fill = 0]
                      43c1a868    00000001                                                    : ddr.obj (.data.gDDRECCRegion.5)
                      43c1a869    00000007     --HOLE-- [fill = 0]
                      43c1a870    00000001                                                    : ddr.obj (.data.gDDRECCRegion.8)
                      43c1a871    00000007     --HOLE-- [fill = 0]
    
    .rodata    0    43c1a880    000041d0     
                      43c1a880    00001040     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clocks.obj (.rodata.soc_clock_data)
                      43c1b8c0    00000394                                                       : devices.obj (.rodata.soc_device_data_arr)
                      43c1bc54    000001b0                                                       : clocks.obj (.rodata.soc_pll_table)
                      43c1be04    00000132     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : lpddr4_am6x.obj (.rodata.CtlIntMap)
                      43c1bf36    0000000a                                                    : bootloader_profile.obj (.rodata.str1.150419499726709475151)
                      43c1bf40    00000101     libc.a : aeabi_ctype.S.obj (.rodata:__aeabi_ctype_table_)
                      43c1c041    000000fe     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : host_idx_mapping.obj (.rodata.soc_host_indexes)
                      43c1c13f    00000001                                                       : host_idx_mapping.obj (.rodata.soc_host_indexes_sz)
                      43c1c140    000000dc     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : sciclient_fmwSecureProxyMap.obj (.rodata.gSciclientMap)
                      43c1c21c    00000090     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_udmap.obj (.rodata.local_rm_udmap_ch_valid_masks)
                      43c1c2ac    00000078                                                       : clocks.obj (.rodata.soc_clock_freq_defaults)
                      43c1c324    0000006c                                                       : udmap_cfg.obj (.rodata.rx_ch_types_DMASS0_PKTDMA_0)
                      43c1c390    00000061     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.rodata.str1.10425021178579678061)
                      43c1c3f1    00000001     --HOLE-- [fill = 0]
                      43c1c3f2    00000060     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : ia_cfg.obj (.rodata.unmapped_events_DMASS0_INTAGGR_0)
                      43c1c452    00000056     main.obj (.rodata.str1.15239470760159260161)
                      43c1c4a8    00000052     BootCtrl.obj (.rodata.str1.133745863601864401061)
                      43c1c4fa    00000002     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : uart_print.obj (.rodata.str1.10699983034688139841)
                      43c1c4fc    00000050     LogServ_Lcfg.obj (.rodata.LogServ_SoftwareComponentLogSwitchConfigParams)
                      43c1c54c    00000004     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clocks.obj (.rodata.clk_CLKOUT0_CTRL_parents)
                      43c1c550    00000050     nortos.am62ax.r5f.ti-arm-clang.release.lib : printf.obj (.rodata._ftoa.pow10)
                      43c1c5a0    00000050     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : ra_cfg.obj (.rodata.ring_types_DMASS0_PKTDMA_0)
                      43c1c5f0    0000004f     main.obj (.rodata.str1.116415589198535163161)
                      43c1c63f    00000001     --HOLE-- [fill = 0]
                      43c1c640    00000048     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.rodata.gSOC_r5fVectors)
                      43c1c688    00000048     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : devices.obj (.rodata.soc_devgroups)
                      43c1c6d0    00000048                                                       : udmap_cfg.obj (.rodata.tx_ch_types_DMASS0_PKTDMA_0)
                      43c1c718    00000046     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_dma.obj (.rodata.str1.18735384423475021611)
                      43c1c75e    00000040     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clocks.obj (.rodata.clk_MAIN_OBSCLK0_MUX_SEL_parents)
                      43c1c79e    0000003d     nortos.am62ax.r5f.ti-arm-clang.release.lib : TimerP.obj (.rodata.str1.155618297627321921901)
                      43c1c7db    00000001     --HOLE-- [fill = 0]
                      43c1c7dc    0000003c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : ia_pe_conf.obj (.rodata.ia_soc_pe_init_list)
                      43c1c818    00000039     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct_wrapper.obj (.rodata.str1.158699774675102163171)
                      43c1c851    00000037     nortos.am62ax.r5f.ti-arm-clang.release.lib : SemaphoreP_nortos.obj (.rodata.str1.77784356401422800491)
                      43c1c888    00000036     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : irq_cfg.obj (.rodata.irq_global_event_types)
                      43c1c8be    00000036     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.rodata.str1.138234439910676349661)
                      43c1c8f4    00000036     ti_drivers_open_close.obj (.rodata.str1.14244426975383555751)
                      43c1c92a    00000036     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : ddr.obj (.rodata.str1.91401382459691330641)
                      43c1c960    00000035     ti_drivers_open_close.obj (.rodata.str1.169554192400750193981)
                      43c1c995    00000034     nortos.am62ax.r5f.ti-arm-clang.release.lib : TimerP.obj (.rodata.str1.164743418995849697991)
                      43c1c9c9    00000034     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_profile.obj (.rodata.str1.83904766851480127371)
                      43c1c9fd    00000033                                                    : bootloader_soc.obj (.rodata.str1.81902703075043643991)
                      43c1ca30    00000033                                                    : bootloader_soc.obj (.rodata.str1.86874262846374397861)
                      43c1ca63    00000032     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_pll_16fft.obj (.rodata.postdiv_mapping)
                      43c1ca95    00000032     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.rodata.str1.49453207730052505781)
                      43c1cac7    00000031                                                    : bootloader_profile.obj (.rodata.str1.10779536709706457681)
                      43c1caf8    00000030                                                    : bootloader_soc.obj (.rodata..L__const.Bootloader_socOpenFirewalls.fwl_set_req)
                      43c1cb28    00000030                                                    : mmcsd_v1.obj (.rodata..Lswitch.table.MMCSD_phyConfigure.4)
                      43c1cb58    00000030                                                    : mmcsd_v1.obj (.rodata..Lswitch.table.MMCSD_phyConfigure.5)
                      43c1cb88    00000030                                                    : mmcsd_v1.obj (.rodata..Lswitch.table.MMCSD_phyConfigure.6)
                      43c1cbb8    00000030                                                    : mmcsd_v1.obj (.rodata..Lswitch.table.MMCSD_phyConfigure)
                      43c1cbe8    00000030                                                    : mmcsd_priv.obj (.rodata.gMonths)
                      43c1cc18    00000030     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_pll_16fft.obj (.rodata.pll_16fft_hsdiv_data)
                      43c1cc48    00000030                                                       : clk_pll_16fft.obj (.rodata.pll_16fft_postdiv_data)
                      43c1cc78    00000030                                                       : clk_pll_16fft.obj (.rodata.pll_16fft_raw_data)
                      43c1cca8    0000002f     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : ddr.obj (.rodata.str1.119917348814012623391)
                      43c1ccd7    0000002e                                                    : bootloader_profile.obj (.rodata.str1.35450365876429540601)
                      43c1cd05    0000002e     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos.obj (.rodata.str1.60552435462749564001)
                      43c1cd33    0000002d     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.rodata.str1.108571543437489060781)
                      43c1cd60    0000002d                                                    : bootloader.obj (.rodata.str1.117201396983213615621)
                      43c1cd8d    0000002d                                                    : bootloader_soc.obj (.rodata.str1.139965176956480184091)
                      43c1cdba    0000002d                                                    : ddr.obj (.rodata.str1.180491127984978559571)
                      43c1cde7    0000002c                                                    : ddr.obj (.rodata.str1.107206345625405992371)
                      43c1ce13    0000002c                                                    : ddr.obj (.rodata.str1.144117384330293641011)
                      43c1ce3f    0000002c                                                    : bootloader_soc.obj (.rodata.str1.173928885224266387911)
                      43c1ce6b    0000002c                                                    : bootloader_soc.obj (.rodata.str1.56546926509345598501)
                      43c1ce97    0000002c                                                    : bootloader_soc.obj (.rodata.str1.80606638266029356381)
                      43c1cec3    0000002b                                                    : bootloader_soc.obj (.rodata.str1.126654147490347782701)
                      43c1ceee    0000002b                                                    : bootloader_soc.obj (.rodata.str1.143586569502236259261)
                      43c1cf19    0000002b                                                    : bootloader_profile.obj (.rodata.str1.154236700963031936241)
                      43c1cf44    0000002b                                                    : bootloader.obj (.rodata.str1.27692862334559552701)
                      43c1cf6f    0000002b                                                    : ddr.obj (.rodata.str1.74819152581638841131)
                      43c1cf9a    0000002a                                                    : ddr.obj (.rodata.str1.167743592905078154631)
                      43c1cfc4    0000002a                                                    : bootloader_soc.obj (.rodata.str1.184181119795560488901)
                      43c1cfee    0000002a                                                    : bootloader_soc.obj (.rodata.str1.23367198832705248821)
                      43c1d018    0000002a     nortos.am62ax.r5f.ti-arm-clang.release.lib : DebugP_log.obj (.rodata.str1.8568035916953519521)
                      43c1d042    00000002     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : trace-uart.obj (.rodata.str1.146269357089097757161)
                      43c1d044    00000028                                                       : clocks.obj (.rodata.soc_clock_ranges)
                      43c1d06c    00000028     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : ddr.obj (.rodata.str1.12348964708742392521)
                      43c1d094    00000027     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos_r5.obj (.rodata.str1.124546920576200709321)
                      43c1d0bb    00000027     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_profile.obj (.rodata.str1.35913918899629823491)
                      43c1d0e2    00000027                                                    : bootloader_profile.obj (.rodata.str1.8367434985930082761)
                      43c1d109    00000003     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct_wrapper.obj (.rodata.str1.100647553650958658711)
                      43c1d10c    00000024     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : soc.obj (.rodata.SOC_getCoreName.coreIdNames)
                      43c1d130    00000024     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_pll_16fft.obj (.rodata.clk_drv_div_pll_16fft_hsdiv)
                      43c1d154    00000024                                                       : clk_pll_16fft.obj (.rodata.clk_drv_div_pll_16fft_postdiv)
                      43c1d178    00000024                                                       : clk_div.obj (.rodata.clk_drv_div_reg)
                      43c1d19c    00000024                                                       : clk_div.obj (.rodata.clk_drv_div_reg_go)
                      43c1d1c0    00000024     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct_wrapper.obj (.rodata.str1.1813724501135460521)
                      43c1d1e4    00000024     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.rodata.str1.28358124289610765961)
                      43c1d208    00000023     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos_r5.obj (.rodata.str1.25776369892830718361)
                      43c1d22b    00000023     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct_wrapper.obj (.rodata.str1.41336017259372466001)
                      43c1d24e    00000021     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.rodata.str1.106573294339508746881)
                      43c1d26f    00000021                                                    : bootloader_soc.obj (.rodata.str1.110934342816748054811)
                      43c1d290    00000021     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos_r5.obj (.rodata.str1.167645692065458388701)
                      43c1d2b1    00000021     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.rodata.str1.85915230830987770821)
                      43c1d2d2    00000020     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clocks.obj (.rodata.clk_MAIN_TIMERCLKn_SEL_out0_parents)
                      43c1d2f2    00000020                                                       : clocks.obj (.rodata.clk_MCU_OBSCLK_MUX_SEL_parents)
                      43c1d312    00000002     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : uart_print.obj (.rodata.str1.82017967049224316961)
                      43c1d314    00000020     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_mux.obj (.rodata.clk_drv_mux_reg)
                      43c1d334    00000020                                                       : clk_pllctrl.obj (.rodata.clk_drv_pllctrl_mux_reg_ro)
                      43c1d354    00000020     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.rodata.cst32)
                      43c1d374    00000004     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clocks.obj (.rodata.clk_MAIN_DSS_DPI1_parents)
                      43c1d378    00000020                                                       : fw_caps.obj (.rodata.soc_fw_caps)
                      43c1d398    00000020     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.rodata.str1.163028399842724032861)
                      43c1d3b8    0000001f                                                    : uart_v0.obj (.rodata.str1.169394063705023262141)
                      43c1d3d7    0000001f     nortos.am62ax.r5f.ti-arm-clang.release.lib : TimerP.obj (.rodata.str1.170816537386891942861)
                      43c1d3f6    0000001f                                                : ClockP_nortos_r5.obj (.rodata.str1.37049961317335892191)
                      43c1d415    0000001f                                                : SemaphoreP_nortos.obj (.rodata.str1.93106250239489445331)
                      43c1d434    0000001e     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct_wrapper.obj (.rodata.str1.128760367625681507501)
                      43c1d452    0000001e     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.rodata.str1.153398541794508870021)
                      43c1d470    0000001e                                                    : mmcsd_v1.obj (.rodata.str1.45407985902584901751)
                      43c1d48e    0000001d     nortos.am62ax.r5f.ti-arm-clang.release.lib : TimerP.obj (.rodata.str1.154036655774719862071)
                      43c1d4ab    0000001c     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_dma.obj (.rodata.str1.109180218251623323801)
                      43c1d4c7    0000001c     main.obj (.rodata.str1.177536778506508716791)
                      43c1d4e3    0000001b     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct_wrapper.obj (.rodata.str1.180737871920193792241)
                      43c1d4fe    0000001b     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos.obj (.rodata.str1.25471646840808198631)
                      43c1d519    0000001a     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.rodata.str1.126263139805186929181)
                      43c1d533    0000001a     nortos.am62ax.r5f.ti-arm-clang.release.lib : TimerP.obj (.rodata.str1.160246686209138365701)
                      43c1d54d    0000001a     main.obj (.rodata.str1.162273046400359430051)
                      43c1d567    0000001a     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos_r5.obj (.rodata.str1.169616377957066558931)
                      43c1d581    0000001a     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_soc.obj (.rodata.str1.51453159056472508761)
                      43c1d59b    0000001a     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct_wrapper.obj (.rodata.str1.80180955447744421961)
                      43c1d5b5    0000001a                                                              : sciclient_direct_wrapper.obj (.rodata.str1.88214662501044208561)
                      43c1d5cf    00000019     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : uart_v0.obj (.rodata.str1.151873246111077803171)
                      43c1d5e8    00000019     nortos.am62ax.r5f.ti-arm-clang.release.lib : TimerP.obj (.rodata.str1.170516325075394100231)
                      43c1d601    00000019     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader.obj (.rodata.str1.31402796831322128521)
                      43c1d61a    00000019                                                    : bootloader_soc.obj (.rodata.str1.50518261022070252191)
                      43c1d633    00000019                                                    : bootloader_soc.obj (.rodata.str1.67805666764079761111)
                      43c1d64c    00000018     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clk_soc_hfosc0.obj (.rodata..L__const.clk_soc_hfosc0_get_freq.freq_table)
                      43c1d664    00000018                                                       : clk_fixed.obj (.rodata.clk_drv_fixed)
                      43c1d67c    00000018                                                       : clk_dev.obj (.rodata.clk_drv_from_device)
                      43c1d694    00000018                                                       : clk_pll_16fft.obj (.rodata.clk_drv_pll_16fft)
                      43c1d6ac    00000018                                                       : clk_soc_hfosc0.obj (.rodata.clk_drv_soc_hfosc0)
                      43c1d6c4    00000018                                                       : clk_soc_lfosc0.obj (.rodata.clk_drv_soc_lfosc0)
                      43c1d6dc    00000018                                                       : ra_cfg.obj (.rodata.ring_types_DMASS0_BCDMA_0)
                      43c1d6f4    00000017     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_dma.obj (.rodata.str1.116932125444684011371)
                      43c1d70b    00000017                                                    : uart_v0.obj (.rodata.str1.118833787404970350941)
                      43c1d722    00000017                                                    : uart_dma.obj (.rodata.str1.1333327264196212521)
                      43c1d739    00000017                                                    : bootloader.obj (.rodata.str1.155678864570694128981)
                      43c1d750    00000017                                                    : uart_dma.obj (.rodata.str1.18451166636706412691)
                      43c1d767    00000017                                                    : bootloader.obj (.rodata.str1.89222897150519810611)
                      43c1d77e    00000016                                                    : uart_v0.obj (.rodata.str1.144905129610797327471)
                      43c1d794    00000016     main.obj (.rodata.str1.171855558179481701221)
                      43c1d7aa    00000016     main.obj (.rodata.str1.173716657552025812881)
                      43c1d7c0    00000016     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.rodata.str1.177141234986783219441)
                      43c1d7d6    00000015                                                    : uart_v0.obj (.rodata.str1.38839981320244304711)
                      43c1d7eb    00000015     nortos.am62ax.r5f.ti-arm-clang.release.lib : SemaphoreP_nortos.obj (.rodata.str1.67625122021398397081)
                      43c1d800    00000015     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_profile.obj (.rodata.str1.72586947241727721351)
                      43c1d815    00000003     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : uart_print.obj (.rodata.str1.60630783811243911631)
                      43c1d818    00000014     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clocks.obj (.rodata.clk_data_pllfracf2_ssmod_16fft_main_0)
                      43c1d82c    00000014                                                       : clocks.obj (.rodata.clk_data_pllfracf2_ssmod_16fft_main_12)
                      43c1d840    00000014                                                       : clocks.obj (.rodata.clk_data_pllfracf2_ssmod_16fft_main_15)
                      43c1d854    00000014                                                       : clocks.obj (.rodata.clk_data_pllfracf2_ssmod_16fft_main_17)
                      43c1d868    00000014                                                       : clocks.obj (.rodata.clk_data_pllfracf2_ssmod_16fft_main_1)
                      43c1d87c    00000014                                                       : clocks.obj (.rodata.clk_data_pllfracf2_ssmod_16fft_main_2)
                      43c1d890    00000014                                                       : clocks.obj (.rodata.clk_data_pllfracf2_ssmod_16fft_main_5)
                      43c1d8a4    00000014                                                       : clocks.obj (.rodata.clk_data_pllfracf2_ssmod_16fft_main_7)
                      43c1d8b8    00000014                                                       : clocks.obj (.rodata.clk_data_pllfracf2_ssmod_16fft_main_8)
                      43c1d8cc    00000014                                                       : clocks.obj (.rodata.clk_data_pllfracf2_ssmod_16fft_mcu_0)
                      43c1d8e0    00000014     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.rodata.str1.122047106383105646091)
                      43c1d8f4    00000014                                                    : uart_v0.obj (.rodata.str1.28909646574304168541)
                      43c1d908    00000014     nortos.am62ax.r5f.ti-arm-clang.release.lib : TimerP.obj (.rodata.str1.88986405623045072391)
                      43c1d91c    00000004     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clocks.obj (.rodata.clk_MAIN_EMMCSD0_IO_CLKLB_SEL_parents)
                      43c1d920    00000013     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_boardcfg.obj (.rodata..L__const.Sciclient_boardCfgPm.request)
                      43c1d933    00000005     main.obj (.rodata.str1.103798902412384256821)
                      43c1d938    00000013     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_boardcfg.obj (.rodata..L__const.Sciclient_boardCfgRm.request)
                      43c1d94b    00000013     main.obj (.rodata.str1.100374302080960100071)
                      43c1d95e    00000012     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : udmap_cfg.obj (.rodata.bc_ch_types_DMASS0_BCDMA_0)
                      43c1d970    00000012                                                       : udmap_cfg.obj (.rodata.rx_ch_types_DMASS0_BCDMA_0)
                      43c1d982    00000012                                                       : udmap_cfg.obj (.rodata.rx_ch_types_DMASS1_BCDMA_0)
                      43c1d994    00000012     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : uart_v0.obj (.rodata.str1.108170205221098943901)
                      43c1d9a6    00000012                                                    : bootloader.obj (.rodata.str1.24728428003093102681)
                      43c1d9b8    00000012     ti_drivers_open_close.obj (.rodata.str1.32381448644552740921)
                      43c1d9ca    00000012     main.obj (.rodata.str1.52486848103693248881)
                      43c1d9dc    00000012     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : udmap_cfg.obj (.rodata.tx_ch_types_DMASS0_BCDMA_0)
                      43c1d9ee    00000012                                                       : ia_cfg.obj (.rodata.unmapped_events_DMASS1_INTAGGR_0)
                      43c1da00    00000011     ti_drivers_open_close.obj (.rodata.str1.105560661407279822051)
                      43c1da11    00000011     libc.a : _printfi.c.obj (.rodata.str1.11645776875810915891)
                      43c1da22    00000011            : _printfi.c.obj (.rodata.str1.44690500295887128011)
                      43c1da33    00000011     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos.obj (.rodata.str1.56392992661620616651)
                      43c1da44    00000011     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : uart_v0.obj (.rodata.str1.60774846955662521161)
                      43c1da55    00000011     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : uart_print.obj (.rodata.str1.89996641962621242781)
                      43c1da66    00000002     --HOLE-- [fill = 0]
                      43c1da68    00000010     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : dmsc.obj (.rodata.am62a_sleep_modes)
                      43c1da78    00000010                                                       : clocks.obj (.rodata.clk_AUDIO_REFCLKn_out0_parents)
                      43c1da88    00000010                                                       : clocks.obj (.rodata.clk_MAIN_CP_GEMAC_CPTS_CLK_SEL_parents)
                      43c1da98    00000010                                                       : clocks.obj (.rodata.clk_MAIN_GTCCLK_SEL_parents)
                      43c1daa8    00000010                                                       : clocks.obj (.rodata.clk_MCU_TIMERCLKn_SEL_out0_parents)
                      43c1dab8    00000010                                                       : clocks.obj (.rodata.clk_WKUP_CLKOUT_SEL_parents)
                      43c1dac8    00000010                                                       : clocks.obj (.rodata.clk_WKUP_TIMERCLKn_SEL_out0_parents)
                      43c1dad8    00000010                                                       : clocks.obj (.rodata.clk_data_AUDIO_REFCLKn_out0)
                      43c1dae8    00000010                                                       : clocks.obj (.rodata.clk_data_AUDIO_REFCLKn_out1)
                      43c1daf8    00000010                                                       : clocks.obj (.rodata.clk_data_CLKOUT0_CTRL_out0)
                      43c1db08    00000010                                                       : clocks.obj (.rodata.clk_data_CLK_32K_RC_SEL_out0)
                      43c1db18    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_CP_GEMAC_CPTS_CLK_SEL_out0)
                      43c1db28    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_DSS_DPI1_out0)
                      43c1db38    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_EMMCSD0_IO_CLKLB_SEL_out0)
                      43c1db48    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_EMMCSD0_REFCLK_SEL_out0)
                      43c1db58    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_EMMCSD1_IO_CLKLB_SEL_out0)
                      43c1db68    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_EMMCSD1_REFCLK_SEL_out0)
                      43c1db78    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_EMMCSD2_IO_CLKLB_SEL_out0)
                      43c1db88    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_EMMCSD2_REFCLK_SEL_out0)
                      43c1db98    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_GPMC_FCLK_SEL_out0)
                      43c1dba8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_GTCCLK_SEL_out0)
                      43c1dbb8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_MCANn_CLK_SEL_out0)
                      43c1dbc8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_OBSCLK0_MUX_SEL_out0)
                      43c1dbd8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_OBSCLK_OUTMUX_SEL_out0)
                      43c1dbe8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_OBSCLK_OUTMUX_SEL_out1)
                      43c1dbf8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_OSPI_LOOPBACK_CLK_SEL_out0)
                      43c1dc08    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_OSPI_REF_CLK_SEL_out0)
                      43c1dc18    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_TIMER1_CASCADE_out0)
                      43c1dc28    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_TIMER3_CASCADE_out0)
                      43c1dc38    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_TIMER5_CASCADE_out0)
                      43c1dc48    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_TIMER7_CASCADE_out0)
                      43c1dc58    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_TIMERCLKn_SEL_out0)
                      43c1dc68    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_TIMERCLKn_SEL_out1)
                      43c1dc78    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_TIMERCLKn_SEL_out2)
                      43c1dc88    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_TIMERCLKn_SEL_out3)
                      43c1dc98    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_TIMERCLKn_SEL_out4)
                      43c1dca8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_TIMERCLKn_SEL_out5)
                      43c1dcb8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_TIMERCLKn_SEL_out6)
                      43c1dcc8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_TIMERCLKn_SEL_out7)
                      43c1dcd8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_USB0_REFCLK_SEL_out0)
                      43c1dce8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_USB1_REFCLK_SEL_out0)
                      43c1dcf8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_WWDTCLKn_SEL_out0)
                      43c1dd08    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_WWDTCLKn_SEL_out1)
                      43c1dd18    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_WWDTCLKn_SEL_out2)
                      43c1dd28    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_WWDTCLKn_SEL_out3)
                      43c1dd38    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_WWDTCLKn_SEL_out4)
                      43c1dd48    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_spi0_mstr_lp_clksel_out0)
                      43c1dd58    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_spi1_mstr_lp_clksel_out0)
                      43c1dd68    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_spi2_mstr_lp_clksel_out0)
                      43c1dd78    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_usart0_fclk_sel_out0)
                      43c1dd88    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_usart1_fclk_sel_out0)
                      43c1dd98    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_usart2_fclk_sel_out0)
                      43c1dda8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_usart3_fclk_sel_out0)
                      43c1ddb8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_usart4_fclk_sel_out0)
                      43c1ddc8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_usart5_fclk_sel_out0)
                      43c1ddd8    00000010                                                       : clocks.obj (.rodata.clk_data_MAIN_usart6_fclk_sel_out0)
                      43c1dde8    00000010                                                       : clocks.obj (.rodata.clk_data_MCASPn_AHCLKSEL_AHCLKR_out0)
                      43c1ddf8    00000010                                                       : clocks.obj (.rodata.clk_data_MCASPn_AHCLKSEL_AHCLKR_out1)
                      43c1de08    00000010                                                       : clocks.obj (.rodata.clk_data_MCASPn_AHCLKSEL_AHCLKR_out2)
                      43c1de18    00000010                                                       : clocks.obj (.rodata.clk_data_MCASPn_AHCLKSEL_AHCLKX_out0)
                      43c1de28    00000010                                                       : clocks.obj (.rodata.clk_data_MCASPn_AHCLKSEL_AHCLKX_out1)
                      43c1de38    00000010                                                       : clocks.obj (.rodata.clk_data_MCASPn_AHCLKSEL_AHCLKX_out2)
                      43c1de48    00000010                                                       : clocks.obj (.rodata.clk_data_MCASPn_CLKSEL_AUXCLK_out0)
                      43c1de58    00000010                                                       : clocks.obj (.rodata.clk_data_MCASPn_CLKSEL_AUXCLK_out1)
                      43c1de68    00000010                                                       : clocks.obj (.rodata.clk_data_MCASPn_CLKSEL_AUXCLK_out2)
                      43c1de78    00000010                                                       : clocks.obj (.rodata.clk_data_MCU_GPIO0_CLKSEL_out0)
                      43c1de88    00000010                                                       : clocks.obj (.rodata.clk_data_MCU_MCANn_CLK_SEL_out0)
                      43c1de98    00000010                                                       : clocks.obj (.rodata.clk_data_MCU_MCANn_CLK_SEL_out1)
                      43c1dea8    00000010                                                       : clocks.obj (.rodata.clk_data_MCU_OBSCLK_MUX_SEL_out0)
                      43c1deb8    00000010                                                       : clocks.obj (.rodata.clk_data_MCU_OBSCLK_OUTMUX_SEL_out0)
                      43c1dec8    00000010                                                       : clocks.obj (.rodata.clk_data_MCU_TIMER1_CASCADE_out0)
                      43c1ded8    00000010                                                       : clocks.obj (.rodata.clk_data_MCU_TIMER3_CASCADE_out0)
                      43c1dee8    00000010                                                       : clocks.obj (.rodata.clk_data_MCU_TIMERCLKn_SEL_out0)
                      43c1def8    00000010                                                       : clocks.obj (.rodata.clk_data_MCU_TIMERCLKn_SEL_out1)
                      43c1df08    00000010                                                       : clocks.obj (.rodata.clk_data_MCU_TIMERCLKn_SEL_out2)
                      43c1df18    00000010                                                       : clocks.obj (.rodata.clk_data_MCU_TIMERCLKn_SEL_out3)
                      43c1df28    00000010                                                       : clocks.obj (.rodata.clk_data_MCU_WWDTCLK_SEL_out0)
                      43c1df38    00000010                                                       : clocks.obj (.rodata.clk_data_MCU_spi0_mstr_lp_clksel_out0)
                      43c1df48    00000010                                                       : clocks.obj (.rodata.clk_data_MCU_spi1_mstr_lp_clksel_out0)
                      43c1df58    00000010                                                       : clocks.obj (.rodata.clk_data_RTC_CLK_SEL_out0)
                      43c1df68    00000010                                                       : clocks.obj (.rodata.clk_data_WKUP_CLKOUT_SEL_IO_out0)
                      43c1df78    00000010                                                       : clocks.obj (.rodata.clk_data_WKUP_CLKOUT_SEL_out0)
                      43c1df88    00000010                                                       : clocks.obj (.rodata.clk_data_WKUP_CLKSEL_R5FSS_out0)
                      43c1df98    00000010                                                       : clocks.obj (.rodata.clk_data_WKUP_CLKSEL_out0)
                      43c1dfa8    00000010                                                       : clocks.obj (.rodata.clk_data_WKUP_TIMER1_CASCADE_out0)
                      43c1dfb8    00000010                                                       : clocks.obj (.rodata.clk_data_WKUP_TIMERCLKn_SEL_out0)
                      43c1dfc8    00000010                                                       : clocks.obj (.rodata.clk_data_WKUP_TIMERCLKn_SEL_out1)
                      43c1dfd8    00000010                                                       : clocks.obj (.rodata.clk_data_WKUP_WWDTCLK_SEL_out0)
                      43c1dfe8    00000010                                                       : clocks.obj (.rodata.clk_data_sam62_pll_ctrl_wrap_main_0_sysclkout_clk)
                      43c1dff8    00000010                                                       : clocks.obj (.rodata.clk_data_sam62_pll_ctrl_wrap_mcu_0_sysclkout_clk)
                      43c1e008    00000010                                                       : psc.obj (.rodata.cst16)
                      43c1e018    00000010                                                       : ir_cfg.obj (.rodata.mmr_CMP_EVENT_INTROUTER0_INTR_ROUTER_CFG)
                      43c1e028    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS0_BCDMA_0_BCDMA_BCHAN)
                      43c1e038    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS0_BCDMA_0_BCDMA_BCHANRT)
                      43c1e048    00000010                                                       : ra_cfg.obj (.rodata.mmr_DMASS0_BCDMA_0_BCDMA_GCFG)
                      43c1e058    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS0_BCDMA_0_BCDMA_GCFG)
                      43c1e068    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS0_BCDMA_0_BCDMA_RCHAN)
                      43c1e078    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS0_BCDMA_0_BCDMA_RCHANRT)
                      43c1e088    00000010                                                       : ra_cfg.obj (.rodata.mmr_DMASS0_BCDMA_0_BCDMA_RING)
                      43c1e098    00000010                                                       : ra_cfg.obj (.rodata.mmr_DMASS0_BCDMA_0_BCDMA_RINGRT)
                      43c1e0a8    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS0_BCDMA_0_BCDMA_TCHAN)
                      43c1e0b8    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS0_BCDMA_0_BCDMA_TCHANRT)
                      43c1e0c8    00000010                                                       : ia_cfg.obj (.rodata.mmr_DMASS0_INTAGGR_0_INTAGGR_GCNTRTI)
                      43c1e0d8    00000010                                                       : ia_cfg.obj (.rodata.mmr_DMASS0_INTAGGR_0_INTAGGR_IMAP)
                      43c1e0e8    00000010                                                       : ia_cfg.obj (.rodata.mmr_DMASS0_INTAGGR_0_INTAGGR_INTR)
                      43c1e0f8    00000010                                                       : ia_cfg.obj (.rodata.mmr_DMASS0_INTAGGR_0_INTAGGR_UNMAP)
                      43c1e108    00000010                                                       : ra_cfg.obj (.rodata.mmr_DMASS0_PKTDMA_0_PKTDMA_GCFG)
                      43c1e118    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS0_PKTDMA_0_PKTDMA_GCFG)
                      43c1e128    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS0_PKTDMA_0_PKTDMA_RCHAN)
                      43c1e138    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS0_PKTDMA_0_PKTDMA_RCHANRT)
                      43c1e148    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS0_PKTDMA_0_PKTDMA_RFLOW)
                      43c1e158    00000010                                                       : ra_cfg.obj (.rodata.mmr_DMASS0_PKTDMA_0_PKTDMA_RING)
                      43c1e168    00000010                                                       : ra_cfg.obj (.rodata.mmr_DMASS0_PKTDMA_0_PKTDMA_RINGRT)
                      43c1e178    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS0_PKTDMA_0_PKTDMA_TCHAN)
                      43c1e188    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS0_PKTDMA_0_PKTDMA_TCHANRT)
                      43c1e198    00000010                                                       : ra_cfg.obj (.rodata.mmr_DMASS0_RINGACC_0_RINGACC_CFG)
                      43c1e1a8    00000010                                                       : ra_cfg.obj (.rodata.mmr_DMASS0_RINGACC_0_RINGACC_GCFG)
                      43c1e1b8    00000010                                                       : ra_cfg.obj (.rodata.mmr_DMASS0_RINGACC_0_RINGACC_RT)
                      43c1e1c8    00000010                                                       : ra_cfg.obj (.rodata.mmr_DMASS1_BCDMA_0_BCDMA_GCFG)
                      43c1e1d8    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS1_BCDMA_0_BCDMA_GCFG)
                      43c1e1e8    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS1_BCDMA_0_BCDMA_RCHAN)
                      43c1e1f8    00000010                                                       : udmap_cfg.obj (.rodata.mmr_DMASS1_BCDMA_0_BCDMA_RCHANRT)
                      43c1e208    00000010                                                       : ra_cfg.obj (.rodata.mmr_DMASS1_BCDMA_0_BCDMA_RING)
                      43c1e218    00000010                                                       : ra_cfg.obj (.rodata.mmr_DMASS1_BCDMA_0_BCDMA_RINGRT)
                      43c1e228    00000010                                                       : ia_cfg.obj (.rodata.mmr_DMASS1_INTAGGR_0_INTAGGR_GCNTRTI)
                      43c1e238    00000010                                                       : ia_cfg.obj (.rodata.mmr_DMASS1_INTAGGR_0_INTAGGR_IMAP)
                      43c1e248    00000010                                                       : ia_cfg.obj (.rodata.mmr_DMASS1_INTAGGR_0_INTAGGR_INTR)
                      43c1e258    00000010                                                       : ia_cfg.obj (.rodata.mmr_DMASS1_INTAGGR_0_INTAGGR_UNMAP)
                      43c1e268    00000010                                                       : ir_cfg.obj (.rodata.mmr_MAIN_GPIOMUX_INTROUTER0_INTR_ROUTER_CFG)
                      43c1e278    00000010                                                       : ir_cfg.obj (.rodata.mmr_TIMESYNC_EVENT_ROUTER0_INTR_ROUTER_CFG)
                      43c1e288    00000010                                                       : ir_cfg.obj (.rodata.mmr_WKUP_MCU_GPIOMUX_INTROUTER0_INTR_ROUTER_CFG)
                      43c1e298    00000010                                                       : psc.obj (.rodata.psc_drv)
                      43c1e2a8    0000000f     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : uart_v0.obj (.rodata.str1.175171363700779445411)
                      43c1e2b7    0000000f                                                    : uart_v0.obj (.rodata.str1.60965199449619900431)
                      43c1e2c6    0000000f                                                    : uart_dma.obj (.rodata.str1.70768452508190077591)
                      43c1e2d5    0000000f                                                    : ddr.obj (.rodata.str1.73060935343465712741)
                      43c1e2e4    0000000e     main.obj (.rodata.str1.106535402979100825021)
                      43c1e2f2    0000000e     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : uart_dma.obj (.rodata.str1.23135773699787735551)
                      43c1e300    0000000e                                                    : uart_v0.obj (.rodata.str1.62999113157451139141)
                      43c1e30e    0000000d     main.obj (.rodata.str1.165187128673534726381)
                      43c1e31b    0000000d     nortos.am62ax.r5f.ti-arm-clang.release.lib : TimerP.obj (.rodata.str1.36936046049119147381)
                      43c1e328    0000000d                                                : TimerP.obj (.rodata.str1.90798414294938570131)
                      43c1e335    00000003     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_profile.obj (.rodata.str1.81203139757535820771)
                      43c1e338    0000000c                                                    : bootloader_profile.obj (.rodata..Lswitch.table.Bootloader_profilePrintProfileLog)
                      43c1e344    0000000c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_ra.obj (.rodata..Lswitch.table.rm_ra_validate_ring_index)
                      43c1e350    0000000c                                                       : clocks.obj (.rodata.clk_data_USART_Programmable_Clock_Divider_out0)
                      43c1e35c    0000000c                                                       : clocks.obj (.rodata.clk_data_USART_Programmable_Clock_Divider_out1)
                      43c1e368    0000000c                                                       : clocks.obj (.rodata.clk_data_USART_Programmable_Clock_Divider_out2)
                      43c1e374    0000000c                                                       : clocks.obj (.rodata.clk_data_USART_Programmable_Clock_Divider_out3)
                      43c1e380    0000000c                                                       : clocks.obj (.rodata.clk_data_USART_Programmable_Clock_Divider_out4)
                      43c1e38c    0000000c                                                       : clocks.obj (.rodata.clk_data_USART_Programmable_Clock_Divider_out5)
                      43c1e398    0000000c                                                       : clocks.obj (.rodata.clk_data_USART_Programmable_Clock_Divider_out6)
                      43c1e3a4    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv0_16fft_main_12_hsdiv0)
                      43c1e3b0    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv0_16fft_main_17_hsdiv0)
                      43c1e3bc    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv0_16fft_main_7_hsdiv0)
                      43c1e3c8    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv0_16fft_main_8_hsdiv0)
                      43c1e3d4    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv2_16fft_main_15_hsdiv0)
                      43c1e3e0    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv2_16fft_main_15_hsdiv1)
                      43c1e3ec    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv2_16fft_main_15_hsdiv2)
                      43c1e3f8    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv2_16fft_main_5_hsdiv0)
                      43c1e404    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv2_16fft_main_5_hsdiv1)
                      43c1e410    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_main_0_hsdiv0)
                      43c1e41c    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_main_0_hsdiv1)
                      43c1e428    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_main_0_hsdiv2)
                      43c1e434    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_main_0_hsdiv3)
                      43c1e440    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_main_0_hsdiv4)
                      43c1e44c    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_main_1_hsdiv0)
                      43c1e458    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_main_1_hsdiv1)
                      43c1e464    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_main_1_hsdiv2)
                      43c1e470    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_main_1_hsdiv3)
                      43c1e47c    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_main_2_hsdiv0)
                      43c1e488    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_main_2_hsdiv1)
                      43c1e494    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_main_2_hsdiv2)
                      43c1e4a0    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_main_2_hsdiv3)
                      43c1e4ac    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_main_2_hsdiv4)
                      43c1e4b8    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_mcu_0_hsdiv0)
                      43c1e4c4    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_mcu_0_hsdiv1)
                      43c1e4d0    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_mcu_0_hsdiv2)
                      43c1e4dc    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_mcu_0_hsdiv3)
                      43c1e4e8    0000000c                                                       : clocks.obj (.rodata.clk_data_hsdiv4_16fft_mcu_0_hsdiv4)
                      43c1e4f4    0000000c                                                       : clocks.obj (.rodata.clk_data_main_obsclk_div_out0)
                      43c1e500    0000000c                                                       : clocks.obj (.rodata.clk_data_mcu_obsclk_div_out0)
                      43c1e50c    0000000c                                                       : clocks.obj (.rodata.clk_data_postdiv1_16fft_main_1_hsdiv5)
                      43c1e518    0000000c                                                       : clocks.obj (.rodata.clk_data_postdiv1_16fft_main_1_hsdiv6)
                      43c1e524    0000000c                                                       : clocks.obj (.rodata.clk_data_postdiv1_16fft_mcu_0_hsdiv5)
                      43c1e530    0000000c                                                       : clocks.obj (.rodata.clk_data_postdiv1_16fft_mcu_0_hsdiv6)
                      43c1e53c    0000000c                                                       : clocks.obj (.rodata.clk_data_postdiv4_16ff_main_0_hsdiv5)
                      43c1e548    0000000c                                                       : clocks.obj (.rodata.clk_data_postdiv4_16ff_main_0_hsdiv6)
                      43c1e554    0000000c                                                       : clocks.obj (.rodata.clk_data_postdiv4_16ff_main_0_hsdiv7)
                      43c1e560    0000000c                                                       : clocks.obj (.rodata.clk_data_postdiv4_16ff_main_0_hsdiv8)
                      43c1e56c    0000000c                                                       : clocks.obj (.rodata.clk_data_postdiv4_16ff_main_2_hsdiv5)
                      43c1e578    0000000c                                                       : clocks.obj (.rodata.clk_data_postdiv4_16ff_main_2_hsdiv6)
                      43c1e584    0000000c                                                       : clocks.obj (.rodata.clk_data_postdiv4_16ff_main_2_hsdiv7)
                      43c1e590    0000000c                                                       : clocks.obj (.rodata.clk_data_postdiv4_16ff_main_2_hsdiv8)
                      43c1e59c    0000000c                                                       : clocks.obj (.rodata.clk_data_postdiv4_16ff_main_2_hsdiv9)
                      43c1e5a8    0000000c                                                       : clocks.obj (.rodata.clk_data_sam62_pll_ctrl_wrap_main_0_chip_div1_clk_clk)
                      43c1e5b4    0000000c                                                       : clocks.obj (.rodata.clk_data_sam62_pll_ctrl_wrap_main_0_chip_div24_clk_clk)
                      43c1e5c0    0000000c                                                       : clocks.obj (.rodata.clk_data_sam62_pll_ctrl_wrap_mcu_0_chip_div1_clk_clk)
                      43c1e5cc    0000000c                                                       : clocks.obj (.rodata.clk_data_sam62_pll_ctrl_wrap_mcu_0_chip_div24_clk_clk)
                      43c1e5d8    0000000c                                                       : rm_udmap.obj (.rodata.local_udmap_gcfg_valid_masks)
                      43c1e5e4    0000000c                                                       : init.obj (.rodata.startups)
                      43c1e5f0    0000000c     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : ddr.obj (.rodata.str1.183176200116343060941)
                      43c1e5fc    0000000c                                                    : ddr.obj (.rodata.str1.2836876802395384281)
                      43c1e608    0000000c     nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos_r5.obj (.rodata.str1.43857604347425843821)
                      43c1e614    0000000c     main.obj (.rodata.str1.812151311734300561)
                      43c1e620    0000000c     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.rodata.str1.81433674248712392601)
                      43c1e62c    0000000b                                                    : bootloader.obj (.rodata..L__const.Bootloader_getMsgLen.boot_seq_oid)
                      43c1e637    0000000b                                                    : uart_v0.obj (.rodata.str1.147565038505633975661)
                      43c1e642    0000000b                                                    : mmcsd_v1.obj (.rodata.str1.147828723087899810491)
                      43c1e64d    0000000b                                                    : uart_v0.obj (.rodata.str1.163246704051681974461)
                      43c1e658    0000000b                                                    : soc.obj (.rodata.str1.164913266593755676851)
                      43c1e663    0000000b     main.obj (.rodata.str1.18229402324117073711)
                      43c1e66e    0000000b     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_v1.obj (.rodata.str1.20164668747242136021)
                      43c1e679    0000000b                                                    : soc.obj (.rodata.str1.43395174823944124631)
                      43c1e684    0000000a                                                    : ddr.obj (.rodata.str1.155664461948441711321)
                      43c1e68e    0000000a                                                    : ddr.obj (.rodata.str1.17393099792175925741)
                      43c1e698    0000000a                                                    : uart_v0.obj (.rodata.str1.181272059988846645511)
                      43c1e6a2    0000000a                                                    : uart_v0.obj (.rodata.str1.27933745631974480251)
                      43c1e6ac    0000000a                                                    : bootloader_profile.obj (.rodata.str1.77606319027626426401)
                      43c1e6b6    00000008     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clocks.obj (.rodata.clk_CLK_32K_RC_SEL_parents)
                      43c1e6be    00000008                                                       : clocks.obj (.rodata.clk_MAIN_MCANn_CLK_SEL_parents)
                      43c1e6c6    00000008                                                       : clocks.obj (.rodata.clk_MAIN_WWDTCLKn_SEL_out0_parents)
                      43c1e6ce    00000008                                                       : clocks.obj (.rodata.clk_MCASPn_AHCLKSEL_AHCLKR_out0_parents)
                      43c1e6d6    00000008                                                       : clocks.obj (.rodata.clk_MCU_GPIO0_CLKSEL_parents)
                      43c1e6de    00000008                                                       : clocks.obj (.rodata.clk_MCU_MCANn_CLK_SEL_out0_parents)
                      43c1e6e6    00000002     --HOLE-- [fill = 0]
                      43c1e6e8    00000008                                                       : rm_ra.obj (.rodata.cst8)
                      43c1e6f0    00000008                                                       : trace.obj (.rodata.cst8)
                      43c1e6f8    00000008     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_direct.obj (.rodata.gcSciclientDirectExtBootX509MagicWord)
                      43c1e700    00000008     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : ra_cfg.obj (.rodata.ring_types_DMASS1_BCDMA_0)
                      43c1e708    00000008     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_profile.obj (.rodata.str1.106778703375402328231)
                      43c1e710    00000008                                                    : soc.obj (.rodata.str1.169100504176848708981)
                      43c1e718    00000007                                                    : soc.obj (.rodata.str1.118172664408282317651)
                      43c1e71f    00000007                                                    : soc.obj (.rodata.str1.118564947264582155781)
                      43c1e726    00000007                                                    : soc.obj (.rodata.str1.152503521881290708571)
                      43c1e72d    00000007                                                    : mmcsd_priv.obj (.rodata.str1.169277816183180658011)
                      43c1e734    00000007                                                    : soc.obj (.rodata.str1.31718221013802453241)
                      43c1e73b    00000007                                                    : soc.obj (.rodata.str1.665822485783847811)
                      43c1e742    00000007                                                    : soc.obj (.rodata.str1.69117626709967446641)
                      43c1e749    00000001     --HOLE-- [fill = 0]
                      43c1e74a    00000006     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : irq_cfg.obj (.rodata.evt_rt_srcs)
                      43c1e750    00000006                                                       : devices.obj (.rodata.sam62a_vpac_wrap_main_0_domains)
                      43c1e756    00000006     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_dma.obj (.rodata.str1.157695265104412620621)
                      43c1e75c    00000006     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : uart_print.obj (.rodata.str1.25744673042473138651)
                      43c1e762    00000006     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_profile.obj (.rodata.str1.73938047475404699101)
                      43c1e768    00000005     nortos.am62ax.r5f.ti-arm-clang.release.lib : printf.obj (.rodata.str1.180255128143303278211)
                      43c1e76d    00000005     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : bootloader_profile.obj (.rodata.str1.49020363832560342711)
                      43c1e772    00000005                                                    : bootloader_profile.obj (.rodata.str1.53977571147357041301)
                      43c1e777    00000005     nortos.am62ax.r5f.ti-arm-clang.release.lib : printf.obj (.rodata.str1.62992066646743021711)
                      43c1e77c    00000004     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clocks.obj (.rodata.clk_MAIN_EMMCSD0_REFCLK_SEL_parents)
                      43c1e780    00000004                                                       : clocks.obj (.rodata.clk_MAIN_EMMCSD1_IO_CLKLB_SEL_parents)
                      43c1e784    00000004                                                       : clocks.obj (.rodata.clk_MAIN_EMMCSD2_IO_CLKLB_SEL_parents)
                      43c1e788    00000004                                                       : clocks.obj (.rodata.clk_MAIN_GPMC_FCLK_SEL_parents)
                      43c1e78c    00000004                                                       : clocks.obj (.rodata.clk_MAIN_OBSCLK_OUTMUX_SEL_out0_parents)
                      43c1e790    00000004                                                       : clocks.obj (.rodata.clk_MAIN_OSPI_LOOPBACK_CLK_SEL_parents)
                      43c1e794    00000004                                                       : clocks.obj (.rodata.clk_MAIN_OSPI_REF_CLK_SEL_parents)
                      43c1e798    00000004                                                       : clocks.obj (.rodata.clk_MAIN_TIMER1_CASCADE_parents)
                      43c1e79c    00000004                                                       : clocks.obj (.rodata.clk_MAIN_TIMER3_CASCADE_parents)
                      43c1e7a0    00000004                                                       : clocks.obj (.rodata.clk_MAIN_TIMER5_CASCADE_parents)
                      43c1e7a4    00000004                                                       : clocks.obj (.rodata.clk_MAIN_TIMER7_CASCADE_parents)
                      43c1e7a8    00000004                                                       : clocks.obj (.rodata.clk_MAIN_USB0_REFCLK_SEL_parents)
                      43c1e7ac    00000004                                                       : clocks.obj (.rodata.clk_MAIN_spi0_mstr_lp_clksel_parents)
                      43c1e7b0    00000004                                                       : clocks.obj (.rodata.clk_MAIN_spi1_mstr_lp_clksel_parents)
                      43c1e7b4    00000004                                                       : clocks.obj (.rodata.clk_MAIN_spi2_mstr_lp_clksel_parents)
                      43c1e7b8    00000004                                                       : clocks.obj (.rodata.clk_MAIN_usart0_fclk_sel_parents)
                      43c1e7bc    00000004                                                       : clocks.obj (.rodata.clk_MAIN_usart1_fclk_sel_parents)
                      43c1e7c0    00000004                                                       : clocks.obj (.rodata.clk_MAIN_usart2_fclk_sel_parents)
                      43c1e7c4    00000004                                                       : clocks.obj (.rodata.clk_MAIN_usart3_fclk_sel_parents)
                      43c1e7c8    00000004                                                       : clocks.obj (.rodata.clk_MAIN_usart4_fclk_sel_parents)
                      43c1e7cc    00000004                                                       : clocks.obj (.rodata.clk_MAIN_usart5_fclk_sel_parents)
                      43c1e7d0    00000004                                                       : clocks.obj (.rodata.clk_MAIN_usart6_fclk_sel_parents)
                      43c1e7d4    00000004                                                       : clocks.obj (.rodata.clk_MCASPn_CLKSEL_AUXCLK_out0_parents)
                      43c1e7d8    00000004                                                       : clocks.obj (.rodata.clk_MCU_OBSCLK_OUTMUX_SEL_parents)
                      43c1e7dc    00000004                                                       : clocks.obj (.rodata.clk_MCU_TIMER1_CASCADE_parents)
                      43c1e7e0    00000004                                                       : clocks.obj (.rodata.clk_MCU_TIMER3_CASCADE_parents)
                      43c1e7e4    00000004                                                       : clocks.obj (.rodata.clk_MCU_spi0_mstr_lp_clksel_parents)
                      43c1e7e8    00000004                                                       : clocks.obj (.rodata.clk_MCU_spi1_mstr_lp_clksel_parents)
                      43c1e7ec    00000004                                                       : clocks.obj (.rodata.clk_RTC_CLK_SEL_parents)
                      43c1e7f0    00000004                                                       : clocks.obj (.rodata.clk_WKUP_CLKOUT_SEL_IO_parents)
                      43c1e7f4    00000004                                                       : clocks.obj (.rodata.clk_WKUP_CLKSEL_R5FSS_parents)
                      43c1e7f8    00000004                                                       : clocks.obj (.rodata.clk_WKUP_CLKSEL_parents)
                      43c1e7fc    00000004                                                       : clocks.obj (.rodata.clk_WKUP_TIMER1_CASCADE_parents)
                      43c1e800    00000004                                                       : clocks.obj (.rodata.clk_data_K3_DPHY_RX_main_0_ppi_rx_byte_clk)
                      43c1e804    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_AUDIO_EXT_REFCLK0_out)
                      43c1e808    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_AUDIO_EXT_REFCLK1_out)
                      43c1e80c    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_CP_GEMAC_CPTS0_RFT_CLK_out)
                      43c1e810    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_CSI0_RXCLKN_out)
                      43c1e814    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_CSI0_RXCLKP_out)
                      43c1e818    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_DDR0_CK0_out)
                      43c1e81c    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_EXT_REFCLK1_out)
                      43c1e820    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_GPMC0_CLKLB_out)
                      43c1e824    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_I2C0_SCL_out)
                      43c1e828    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_I2C1_SCL_out)
                      43c1e82c    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_I2C2_SCL_out)
                      43c1e830    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_I2C3_SCL_out)
                      43c1e834    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MCASP0_ACLKR_out)
                      43c1e838    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MCASP0_ACLKX_out)
                      43c1e83c    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MCASP1_ACLKR_out)
                      43c1e840    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MCASP1_ACLKX_out)
                      43c1e844    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MCASP2_ACLKR_out)
                      43c1e848    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MCASP2_ACLKX_out)
                      43c1e84c    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MCU_EXT_REFCLK0_out)
                      43c1e850    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MCU_I2C0_SCL_out)
                      43c1e854    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MCU_SPI0_CLK_out)
                      43c1e858    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MCU_SPI1_CLK_out)
                      43c1e85c    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MMC0_CLKLB_out)
                      43c1e860    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MMC0_CLK_out)
                      43c1e864    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MMC1_CLKLB_out)
                      43c1e868    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MMC1_CLK_out)
                      43c1e86c    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MMC2_CLKLB_out)
                      43c1e870    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_MMC2_CLK_out)
                      43c1e874    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_OSPI0_DQS_out)
                      43c1e878    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_OSPI0_LBCLKO_out)
                      43c1e87c    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_RGMII1_RXC_out)
                      43c1e880    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_RGMII1_TXC_out)
                      43c1e884    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_RGMII2_RXC_out)
                      43c1e888    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_RGMII2_TXC_out)
                      43c1e88c    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_RMII1_REF_CLK_out)
                      43c1e890    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_RMII2_REF_CLK_out)
                      43c1e894    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_SPI0_CLK_out)
                      43c1e898    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_SPI1_CLK_out)
                      43c1e89c    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_SPI2_CLK_out)
                      43c1e8a0    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_TCK_out)
                      43c1e8a4    00000004                                                       : clocks.obj (.rodata.clk_data_board_0_VOUT0_EXTPCLKIN_out)
                      43c1e8a8    00000004                                                       : clocks.obj (.rodata.clk_data_cpsw_3guss_main_0_cpts_genf0)
                      43c1e8ac    00000004                                                       : clocks.obj (.rodata.clk_data_cpsw_3guss_main_0_cpts_genf1)
                      43c1e8b0    00000004                                                       : clocks.obj (.rodata.clk_data_cpsw_3guss_main_0_mdio_mdclk_o)
                      43c1e8b4    00000004                                                       : clocks.obj (.rodata.clk_data_cpsw_3guss_main_0_rgmii1_txc_o)
                      43c1e8b8    00000004                                                       : clocks.obj (.rodata.clk_data_cpsw_3guss_main_0_rgmii2_txc_o)
                      43c1e8bc    00000004                                                       : clocks.obj (.rodata.clk_data_debugss_k3_wrap_cv0_main_0_cstpiu_traceclk)
                      43c1e8c0    00000004                                                       : clocks.obj (.rodata.clk_data_dmtimer_dmc1ms_main_0_timer_pwm)
                      43c1e8c4    00000004                                                       : clocks.obj (.rodata.clk_data_dmtimer_dmc1ms_main_1_timer_pwm)
                      43c1e8c8    00000004                                                       : clocks.obj (.rodata.clk_data_dmtimer_dmc1ms_main_2_timer_pwm)
                      43c1e8cc    00000004                                                       : clocks.obj (.rodata.clk_data_dmtimer_dmc1ms_main_3_timer_pwm)
                      43c1e8d0    00000004                                                       : clocks.obj (.rodata.clk_data_dmtimer_dmc1ms_main_4_timer_pwm)
                      43c1e8d4    00000004                                                       : clocks.obj (.rodata.clk_data_dmtimer_dmc1ms_main_5_timer_pwm)
                      43c1e8d8    00000004                                                       : clocks.obj (.rodata.clk_data_dmtimer_dmc1ms_main_6_timer_pwm)
                      43c1e8dc    00000004                                                       : clocks.obj (.rodata.clk_data_dmtimer_dmc1ms_main_7_timer_pwm)
                      43c1e8e0    00000004                                                       : clocks.obj (.rodata.clk_data_dmtimer_dmc1ms_mcu_0_timer_pwm)
                      43c1e8e4    00000004                                                       : clocks.obj (.rodata.clk_data_dmtimer_dmc1ms_mcu_1_timer_pwm)
                      43c1e8e8    00000004                                                       : clocks.obj (.rodata.clk_data_dmtimer_dmc1ms_mcu_2_timer_pwm)
                      43c1e8ec    00000004                                                       : clocks.obj (.rodata.clk_data_dmtimer_dmc1ms_mcu_3_timer_pwm)
                      43c1e8f0    00000004                                                       : clocks.obj (.rodata.clk_data_dmtimer_dmc1ms_wkup_0_timer_pwm)
                      43c1e8f4    00000004                                                       : clocks.obj (.rodata.clk_data_emmcsd4ss_main_0_emmcsdss_io_clk_o)
                      43c1e8f8    00000004                                                       : clocks.obj (.rodata.clk_data_emmcsd4ss_main_1_emmcsdss_io_clk_o)
                      43c1e8fc    00000004                                                       : clocks.obj (.rodata.clk_data_emmcsd8ss_main_0_emmcsdss_io_clk_o)
                      43c1e900    00000004                                                       : clocks.obj (.rodata.clk_data_fss_ul_main_0_ospi_0_ospi_oclk_clk)
                      43c1e904    00000004                                                       : clocks.obj (.rodata.clk_data_gpmc_main_0_po_gpmc_dev_clk)
                      43c1e908    00000004                                                       : clocks.obj (.rodata.clk_data_k3_dss_ul_main_0_dpi_1_out_clk)
                      43c1e90c    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_0_mcasp_aclkr_pout)
                      43c1e910    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_0_mcasp_aclkx_pout)
                      43c1e914    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_0_mcasp_afsr_pout)
                      43c1e918    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_0_mcasp_afsx_pout)
                      43c1e91c    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_0_mcasp_ahclkr_pout)
                      43c1e920    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_0_mcasp_ahclkx_pout)
                      43c1e924    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_1_mcasp_aclkr_pout)
                      43c1e928    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_1_mcasp_aclkx_pout)
                      43c1e92c    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_1_mcasp_afsr_pout)
                      43c1e930    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_1_mcasp_afsx_pout)
                      43c1e934    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_1_mcasp_ahclkr_pout)
                      43c1e938    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_1_mcasp_ahclkx_pout)
                      43c1e93c    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_2_mcasp_aclkr_pout)
                      43c1e940    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_2_mcasp_aclkx_pout)
                      43c1e944    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_2_mcasp_afsr_pout)
                      43c1e948    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_2_mcasp_afsx_pout)
                      43c1e94c    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_2_mcasp_ahclkr_pout)
                      43c1e950    00000004                                                       : clocks.obj (.rodata.clk_data_mcasp_main_2_mcasp_ahclkx_pout)
                      43c1e954    00000004                                                       : clocks.obj (.rodata.clk_data_mshsi2c_main_0_porscl)
                      43c1e958    00000004                                                       : clocks.obj (.rodata.clk_data_mshsi2c_main_1_porscl)
                      43c1e95c    00000004                                                       : clocks.obj (.rodata.clk_data_mshsi2c_main_2_porscl)
                      43c1e960    00000004                                                       : clocks.obj (.rodata.clk_data_mshsi2c_main_3_porscl)
                      43c1e964    00000004                                                       : clocks.obj (.rodata.clk_data_mshsi2c_mcu_0_porscl)
                      43c1e968    00000004                                                       : clocks.obj (.rodata.clk_data_mshsi2c_wkup_0_porscl)
                      43c1e96c    00000004                                                       : clocks.obj (.rodata.clk_data_pllfracf2_ssmod_16fft_main_0_postdiv)
                      43c1e970    00000004                                                       : clocks.obj (.rodata.clk_data_pllfracf2_ssmod_16fft_main_1_postdiv)
                      43c1e974    00000004                                                       : clocks.obj (.rodata.clk_data_pllfracf2_ssmod_16fft_main_2_postdiv)
                      43c1e978    00000004                                                       : clocks.obj (.rodata.clk_data_pllfracf2_ssmod_16fft_mcu_0_postdiv)
                      43c1e97c    00000004                                                       : clocks.obj (.rodata.clk_data_sam62a_a53_512kb_wrap_main_0_arm_corepack_0_a53_divh_clk4_obsclk_out_clk)
                      43c1e980    00000004                                                       : clocks.obj (.rodata.clk_data_sam62a_c7xv_wrap_main_0_clock_control_0_c7xv_divh_clk4_obsclk_out_clk)
                      43c1e984    00000004                                                       : clocks.obj (.rodata.clk_data_sam62a_c7xv_wrap_main_0_clock_control_0_divh_clk2_soc_gclk)
                      43c1e988    00000004                                                       : clocks.obj (.rodata.clk_data_sam62a_c7xv_wrap_main_0_clock_control_0_divh_clk4_gclk)
                      43c1e98c    00000004                                                       : clocks.obj (.rodata.clk_data_sam62a_c7xv_wrap_main_0_clock_control_0_divh_clk4_soc_gclk)
                      43c1e990    00000004                                                       : clocks.obj (.rodata.clk_data_sam62a_c7xv_wrap_main_0_clock_control_0_divp_clk1_gclk)
                      43c1e994    00000004                                                       : clocks.obj (.rodata.clk_data_sam62a_c7xv_wrap_main_0_clock_control_0_divp_clk1_soc_gclk)
                      43c1e998    00000004                                                       : clocks.obj (.rodata.clk_data_sam62a_ddr_wrap_main_0_ddr_pll_divh_clk4_obsclk_out_clk)
                      43c1e99c    00000004                                                       : clocks.obj (.rodata.clk_data_spi_main_0_io_clkspio_clk)
                      43c1e9a0    00000004                                                       : clocks.obj (.rodata.clk_data_spi_main_1_io_clkspio_clk)
                      43c1e9a4    00000004                                                       : clocks.obj (.rodata.clk_data_spi_main_2_io_clkspio_clk)
                      43c1e9a8    00000004                                                       : clocks.obj (.rodata.clk_data_spi_mcu_0_io_clkspio_clk)
                      43c1e9ac    00000004                                                       : clocks.obj (.rodata.clk_data_spi_mcu_1_io_clkspio_clk)
                      43c1e9b0    00000004                                                       : clocks.obj (.rodata.clk_sam62_pll_ctrl_wrap_main_0_parents)
                      43c1e9b4    00000004                                                       : clocks.obj (.rodata.clk_sam62_pll_ctrl_wrap_mcu_0_parents)
                      43c1e9b8    00000004                                                       : resource.obj (.rodata.cst4)
                      43c1e9bc    00000004                                                       : irq_cfg.obj (.rodata.evt_rt_srcs_count)
                      43c1e9c0    00000004     nortos.am62ax.r5f.ti-arm-clang.release.lib : CacheP_armv7r.obj (.rodata.gCacheL1dCacheLineSize)
                      43c1e9c4    00000004                                                : CacheP_armv7r.obj (.rodata.gCacheL1pCacheLineSize)
                      43c1e9c8    00000004     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : clocks.obj (.rodata.pllfracf2_ssmod_16fft_main_0_entries)
                      43c1e9cc    00000004                                                       : clocks.obj (.rodata.pllfracf2_ssmod_16fft_main_12_entries)
                      43c1e9d0    00000004                                                       : clocks.obj (.rodata.pllfracf2_ssmod_16fft_main_15_entries)
                      43c1e9d4    00000004                                                       : clocks.obj (.rodata.pllfracf2_ssmod_16fft_main_17_entries)
                      43c1e9d8    00000004                                                       : clocks.obj (.rodata.pllfracf2_ssmod_16fft_main_1_entries)
                      43c1e9dc    00000004                                                       : clocks.obj (.rodata.pllfracf2_ssmod_16fft_main_5_entries)
                      43c1e9e0    00000004                                                       : clocks.obj (.rodata.pllfracf2_ssmod_16fft_main_7_entries)
                      43c1e9e4    00000004                                                       : clocks.obj (.rodata.pllfracf2_ssmod_16fft_main_8_entries)
                      43c1e9e8    00000004                                                       : clocks.obj (.rodata.pllfracf2_ssmod_16fft_mcu_0_entries)
                      43c1e9ec    00000004                                                       : ra_cfg.obj (.rodata.ra_inst_count)
                      43c1e9f0    00000004                                                       : clocks.obj (.rodata.soc_clock_count)
                      43c1e9f4    00000004                                                       : devices.obj (.rodata.soc_devgroup_count)
                      43c1e9f8    00000004                                                       : devices.obj (.rodata.soc_device_count)
                      43c1e9fc    00000004                                                       : devices.obj (.rodata.soc_psc_multiple_domains)
                      43c1ea00    00000004     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_priv.obj (.rodata.str1.106127270655768860481)
                      43c1ea04    00000004                                                    : mmcsd_priv.obj (.rodata.str1.112023889018067728831)
                      43c1ea08    00000004                                                    : mmcsd_priv.obj (.rodata.str1.130890479526057010671)
                      43c1ea0c    00000004                                                    : mmcsd_priv.obj (.rodata.str1.144381654125539955341)
                      43c1ea10    00000004                                                    : mmcsd_priv.obj (.rodata.str1.151193337020903864861)
                      43c1ea14    00000004                                                    : mmcsd_priv.obj (.rodata.str1.153330375160902015931)
                      43c1ea18    00000004                                                    : mmcsd_priv.obj (.rodata.str1.175445365315066401531)
                      43c1ea1c    00000004                                                    : mmcsd_priv.obj (.rodata.str1.26044318937228883231)
                      43c1ea20    00000004     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : dmsc.obj (.rodata.str1.30012492119171543001)
                      43c1ea24    00000004     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_priv.obj (.rodata.str1.74688631718242580351)
                      43c1ea28    00000004                                                    : mmcsd_priv.obj (.rodata.str1.76538627638512658771)
                      43c1ea2c    00000004                                                    : mmcsd_priv.obj (.rodata.str1.82396488594776987111)
                      43c1ea30    00000004     nortos.am62ax.r5f.ti-arm-clang.release.lib : printf.obj (.rodata.str1.83442741595977738081)
                      43c1ea34    00000004                                                : printf.obj (.rodata.str1.92767893489218153371)
                      43c1ea38    00000004     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : mmcsd_priv.obj (.rodata.str1.97864509616496036981)
                      43c1ea3c    00000004     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : udmap_cfg.obj (.rodata.udmap_inst_count)
                      43c1ea40    00000003                                                       : trace-uart.obj (.rodata.str1.9957289042408205471)
                      43c1ea43    0000000d     --HOLE-- [fill = 0]
    
    .boardcfg_data 
    *          0    43c1ea80    00000f80     
                      43c1ea80    00000f02     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient_boardcfg.obj (.boardcfg_data)
                      43c1f982    0000007e     --HOLE-- [fill = 0]
    
    .sysmem    0    43c1fa00    00008000     UNINITIALIZED
                      43c1fa00    00000010     libc.a : memory.c.obj (.sysmem)
                      43c1fa10    00007ff0     --HOLE--
    
    .stack     0    43c27a00    00004000     UNINITIALIZED
                      43c27a00    00000004     nortos.am62ax.r5f.ti-arm-clang.release.lib : boot_armv7r_asm.obj (.stack)
                      43c27a04    00003ffc     --HOLE--
    
    .bss       0    43c2ba00    00003c80     UNINITIALIZED
                      43c2ba00    00001008     (.common:gHwiCtrl)
                      43c2ca08    00000c00     (.common:BootCtrl_UBMStateInfo)
                      43c2d608    00000680     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : devices.obj (.bss.devgroup.MAIN)
                      43c2dc88    00000428     sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib : sciclient.obj (.bss.gSciclient_semObjects)
                      43c2e0b0    00000410     (.common:soc_clocks)
                      43c2e4c0    000003c0     ti_drivers_config.obj (.bss.gMmcsdObjects)
                      43c2e880    00000394     (.common:soc_devices)
                      43c2ec14    00000280     ti_drivers_config.obj (.bss.gUartObjects)
                      43c2ee94    00000040     (.common:_freertosresetvectors)
                      43c2eed4    0000002c     (.common:gEmmcData0)
                      43c2ef00    00000200     (.common:gMmcsdDataBuf0)
                      43c2f100    000001c8     (.common:soc_clock_values)
                      43c2f2c8    0000013c     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : devices.obj (.bss.devgroup.MCU_WAKEUP)
                      43c2f404    0000011c     (.common:gProfileObj)
                      43c2f520    000000b8                                                       : ia_cfg.obj (.bss.vint_usage_count_DMASS0_INTAGGR_0)
                      43c2f5d8    00000038     (.common:gClockCtrl)
                      43c2f610    00000014     drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : ddr.obj (.bss.gLpddrPd)
                      43c2f624    00000010                                                    : ddr.obj (.bss.gLpddrCfg)
                      43c2f634    0000000c     (.common:gADMA2Desc)
                      43c2f640    00000008     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : ia_cfg.obj (.bss.vint_usage_count_DMASS1_INTAGGR_0)
                      43c2f648    00000004     nortos.am62ax.r5f.ti-arm-clang.release.lib : HwiP_armv7r_vim.obj (.bss.gdummy)
                      43c2f64c    00000004     rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : rm_irq.obj (.bss.oes_src_map)
                      43c2f650    00000004                                                       : psc.obj (.bss.psc_devs)
                      43c2f654    00000004                                                       : sleep.obj (.bss.sleep_modes)
                      43c2f658    00000004                                                       : sys-reset.obj (.bss.sys_reset_handler)
                      43c2f65c    00000004     (.common:gMmcsdHandle)
                      43c2f660    00000004     (.common:gUartHandle)
                      43c2f664    00000001                                                       : dmsc.obj (.bss.am62a_sleep_block)
                      43c2f665    00000001                                                       : devices.obj (.bss.devgroup.TIFS_INTERNAL)
                      43c2f666    00000001     (.common:BootCtrl_RunningStateInfo)
                      43c2f667    00000019     --HOLE--
    
    .irqstack 
    *          0    43c2f680    00001000     UNINITIALIZED
                      43c2f680    00001000     --HOLE--
    
    .fiqstack 
    *          0    43c30680    00000100     UNINITIALIZED
                      43c30680    00000100     --HOLE--
    
    .svcstack 
    *          0    43c30780    00000100     UNINITIALIZED
                      43c30780    00000100     --HOLE--
    
    .abortstack 
    *          0    43c30880    00000100     UNINITIALIZED
                      43c30880    00000100     --HOLE--
    
    .undefinedstack 
    *          0    43c30980    00000100     UNINITIALIZED
                      43c30980    00000100     --HOLE--
    
    __llvm_prf_cnts 
    *          0    43c00100    00000000     UNINITIALIZED
    
    __llvm_prf_bits 
    *          0    43c00100    00000000     UNINITIALIZED
    
    .app       0    84000000    00800000     UNINITIALIZED
                      84000000    00800000     main.obj (.app)
    
    MODULE SUMMARY
    
           Module                                   code    ro data   rw data
           ------                                   ----    -------   -------
        obj\release\
           main.obj                                 602     355       8388608
           ti_drivers_config.obj                    92      0         12048  
           BootCtrl.obj                             280     82        3073   
           ti_drivers_open_close.obj                250     142       656    
           ti_dpl_config.obj                        96      0         192    
           ti_power_clock_config.obj                164     0         56     
           ti_pinmux_config.obj                     34      0         112    
           LogServ_Lcfg.obj                         0       80        0      
           LogServ.obj                              40      0         0      
           ti_board_config.obj                      4       0         0      
           ti_board_open_close.obj                  4       0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   1566    659       8404745
                                                                             
        C:\ti\ccs1250\ccs\tools\compiler\ti-cgt-armllvm_3.2.0.LTS\lib\armv7r-ti-none-eabihf/c/libc.a
           _printfi.c.obj                           3576    34        0      
           aeabi_ctype.S.obj                        0       257       0      
           snprintf.c.obj                           256     0         0      
           atoi.c.obj                               108     0         0      
           autoinit.c.obj                           88      0         0      
           memccpy.c.obj                            72      0         0      
           wcslen.c.obj                             32      0         0      
           memcpy32.S.obj                           28      0         0      
           memset32.S.obj                           24      0         0      
           aeabi_portable.c.obj                     12      0         4      
           exit.c.obj                               8       0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   4204    291       4      
                                                                             
        C:\ti\ccs1250\ccs\tools\compiler\ti-cgt-armllvm_3.2.0.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      
           ashldi3.S.obj                            40      0         0      
           lshrdi3.S.obj                            40      0         0      
           aeabi_uldivmod.S.obj                     36      0         0      
           aeabi_memset.S.obj                       28      0         0      
           aeabi_memcpy.S.obj                       12      0         0      
           aeabi_div0.c.obj                         8       0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   908     0         0      
                                                                             
        D:/Project/DM/Code/asr_r5f_all_in_one/asr_mcal_sdk/ThirdParty/Mcal_Am62xx/Supply/mcu_plus_sdk_am62ax_09_01_00_39/source/drivers/device_manager/rm_pm_hal/sbl/lib/rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib
           devices.obj                              0       7260      2897   
           clocks.obj                               0       7824      1496   
           rm_udmap.obj                             6458    156       0      
           psc.obj                                  4384    32        4      
           clk_pll_16fft.obj                        3550    290       0      
           boardcfg-user.obj                        346     0         3212   
           rm_ra.obj                                2768    20        0      
           pll.obj                                  2602    0         0      
           device_clk.obj                           2294    0         0      
           clk_div.obj                              1810    72        0      
           rm_irq.obj                               1750    0         4      
           rm_ia.obj                                1720    0         0      
           clk.obj                                  1620    0         0      
           rm_core.obj                              974     0         573    
           device_psc.obj                           1330    0         0      
           clock.obj                                1224    0         0      
           rm_ir.obj                                1020    0         0      
           udmap_cfg.obj                            0       512       384    
           ra_cfg.obj                               0       308       416    
           ia_cfg.obj                               0       242       388    
           device_process.obj                       624     0         0      
           device.obj                               596     0         8      
           clk_mux.obj                              554     32        0      
           device_pm.obj                            306     0         8      
           host_idx_mapping.obj                     0       255       0      
           map.obj                                  250     0         0      
           device_prepare.obj                       208     0         0      
           init.obj                                 180     12        0      
           div64.obj                                182     0         0      
           ir_cfg.obj                               0       64        112    
           mmr_lock.obj                             160     0         0      
           clk_dev.obj                              124     24        0      
           dmsc.obj                                 114     20        1      
           clk_pllctrl.obj                          102     32        0      
           resource.obj                             130     4         0      
           trace.obj                                80      8         16     
           clk_soc_hfosc0.obj                       40      48        0      
           itoa.obj                                 88      0         0      
           clk_fixed.obj                            52      24        0      
           fw_caps.obj                              44      32        0      
           irq_cfg.obj                              0       64        0      
           ia_pe_conf.obj                           0       60        0      
           trace-uart.obj                           48      5         0      
           clk_soc_lfosc0.obj                       28      24        0      
           rm.obj                                   52      0         0      
           sys-reset.obj                            32      0         4      
           osal_glue.obj                            34      0         0      
           sleep.obj                                28      0         4      
           core.obj                                 30      0         0      
           notifier.obj                             28      0         0      
           ioremap.obj                              2       0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   37966   17424     9527   
                                                                             
        D:/Project/DM/Code/asr_r5f_all_in_one/asr_mcal_sdk/ThirdParty/Mcal_Am62xx/Supply/mcu_plus_sdk_am62ax_09_01_00_39/source/drivers/device_manager/sciclient_direct/sbl/lib/sciclient_direct_sbl.am62ax.r5f.ti-arm-clang.release.lib
           sciclient_boardcfg.obj                   340     3880      0      
           sciclient.obj                            2122    0         1232   
           sciclient_pm.obj                         1452    0         0      
           sciclient_direct.obj                     1440    8         0      
           sciclient_direct_wrapper.obj             348     240       96     
           uart_print.obj                           524     30        0      
           sciclient_procboot.obj                   534     0         0      
           sciclient_secureproxy.obj                292     0         0      
           sciclient_firewall.obj                   80      0         0      
           sciclient_secureProxyCfg.obj             0       0         36     
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   7132    4158      1364   
                                                                             
        D:/Project/DM/Code/asr_r5f_all_in_one/asr_mcal_sdk/ThirdParty/Mcal_Am62xx/Supply/mcu_plus_sdk_am62ax_09_01_00_39/source/drivers/lib/drivers.am62ax.dm-r5f.ti-arm-clang.release.lib
           mmcsd_v1.obj                             7952    298       168    
           bootloader_soc.obj                       2614    967       440    
           uart_v0.obj                              3566    263       156    
           bootloader.obj                           1952    367       0      
           ddr.obj                                  1764    418       89     
           bootloader_profile.obj                   476     348       284    
           lpddr4_am6x.obj                          614     306       0      
           mmcsd_priv.obj                           668     103       0      
           soc.obj                                  648     108       0      
           bootloader_dma.obj                       526     127       0      
           lpddr4.obj                               566     0         0      
           ddr_soc.obj                              542     0         0      
           bootloader_mmcsd_raw.obj                 334     0         24     
           uart_dma.obj                             254     75        0      
           sciclient_fmwSecureProxyMap.obj          0       220       0      
           udma_ring_common.obj                     188     0         0      
           pinmux.obj                               144     0         0      
           csl_emif.obj                             136     0         0      
           bootloader_mem.obj                       104     0         24     
           utils.obj                                98      0         0      
           udma_ch.obj                              80      0         0      
           gtc_soc.obj                              50      0         0      
           gtc.obj                                  18      0         0      
           csl_sec_proxy.obj                        10      0         0      
           udma_utils.obj                           4       0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   23308   3600      1185   
                                                                             
        D:/Project/DM/Code/asr_r5f_all_in_one/asr_mcal_sdk/ThirdParty/Mcal_Am62xx/Supply/mcu_plus_sdk_am62ax_09_01_00_39/source/kernel/nortos/lib/nortos.am62ax.r5f.ti-arm-clang.release.lib
           HwiP_armv7r_vim.obj                      1032    0         4108   
           printf.obj                               4002    98        0      
           CacheP_armv7r_asm.obj                    848     0         0      
           ClockP_nortos.obj                        680     90        56     
           TimerP.obj                               526     270       0      
           HwiP_armv7r_handlers_nortos.obj          544     0         0      
           MpuP_armv7r.obj                          440     0         0      
           ClockP_nortos_r5.obj                     260     176       0      
           SemaphoreP_nortos.obj                    328     107       0      
           boot_armv7r_asm.obj                      252     0         0      
           CacheP_armv7r.obj                        216     8         0      
           DebugP_log.obj                           154     42        4      
           HwiP_armv7r_asm.obj                      160     0         0      
           MpuP_armv7r_asm.obj                      136     0         0      
           HwiP_armv7r_handlers_nortos_asm.obj      120     0         0      
           AddrTranslateP.obj                       104     0         12     
           DebugP_uartLogWriter.obj                 70      0         4      
           HwiP_armv7r_vectors_nortos_asm.obj       64      0         0      
           HwiP_armv7r_vectors_nortos_sbl_asm.obj   64      0         0      
           DebugP_nortos.obj                        56      0         0      
           PmuP_armv7r_asm.obj                      56      0         0      
           PmuP_armv7r.obj                          36      0         0      
           boot_armv7r.obj                          28      0         0      
           TaskP_nortos.obj                         2       0         0      
        +--+----------------------------------------+-------+---------+---------+
           Total:                                   10178   791       4184   
                                                                             
           Heap:                                    0       0         32768  
           Stack:                                   0       0         16384  
        +--+----------------------------------------+-------+---------+---------+
           Grand Total:                             85262   26923     8470161
    
    VENEERS
    
    callee name               veneer name
       callee addr  veneer addr  call addr  call info
    --------------  -----------  ---------  ----------------
    HwiP_disable              $Ven$TA$L$PI$$HwiP_disable
       43c15e20     43c13ee4     43c13cbe   ti_dpl_config.obj (.text.Dpl_deinit)
    PmuP_enableCounters       $Ven$TA$L$PI$$PmuP_enableCounters
       43c12a80     43c13eec     43c13408   nortos.am62ax.r5f.ti-arm-clang.release.lib : PmuP_armv7r.obj (.text.pmu)
    HwiP_enable               $Ven$TA$L$PI$$HwiP_enable
       43c15e40     43c13ef4     43c11e4a   ti_dpl_config.obj (.text.Dpl_init)
    HwiP_restore              $Ven$TA$L$PI$$HwiP_restore
       43c15e60     43c13efc     43c10b2c   rm_pm_hal_sbl.am62ax.r5f.ti-arm-clang.release.lib : mmr_lock.obj (.text.mmr_unlock_all)
                                 43c11dca   nortos.am62ax.r5f.ti-arm-clang.release.lib : ClockP_nortos.obj (.text.ClockP_stop)
                                 43c12390                                              : ClockP_nortos.obj (.text.ClockP_destruct)
                                 43c12742                                              : ClockP_nortos.obj (.text.ClockP_start)
                                 43c12948                                              : SemaphoreP_nortos.obj (.text.SemaphoreP_post)
    __aeabi_memcpy            $Ven$TA$L$PI$$__aeabi_memcpy
       43c13eac     43c13f04     43c10182   drivers.am62ax.dm-r5f.ti-arm-clang.release.lib : utils.obj (.text.Utils_memcpyWord)
    HwiP_enableFIQ            $Ven$TA$L$PI$$HwiP_enableFIQ
       43c15e50     43c15e90     43c15b72   nortos.am62ax.r5f.ti-arm-clang.release.lib : HwiP_armv7r_vim.obj (.text.hwi)
    CacheP_invL1d             $Ven$TA$L$PI$$CacheP_invL1d
       43c15f08     43c162b0     43c162ac   nortos.am62ax.r5f.ti-arm-clang.release.lib : CacheP_armv7r.obj (.text.cache)
    CacheP_enableL1p          $Ven$TA$L$PI$$CacheP_enableL1p
       43c15ef0     43c162b8     43c16286   nortos.am62ax.r5f.ti-arm-clang.release.lib : CacheP_armv7r.obj (.text.cache)
    HwiP_restore              $Ven$TA$L$PI$$HwiP_restore
       43c15e60     43c162c0     43c16266   nortos.am62ax.r5f.ti-arm-clang.release.lib : CacheP_armv7r.obj (.text.cache)
    MpuP_setRegionAsm         $Ven$TA$L$PI$$MpuP_setRegionAsm
       43c164e4     43c164f8     43c163fe   nortos.am62ax.r5f.ti-arm-clang.release.lib : MpuP_armv7r.obj (.text.mpu)
    HwiP_restore              $Ven$TA$L$PI$$HwiP_restore
       43c15e60     43c16500     43c163b4   nortos.am62ax.r5f.ti-arm-clang.release.lib : MpuP_armv7r.obj (.text.mpu)
                                 43c163f4                                              : MpuP_armv7r.obj (.text.mpu)
    MpuP_isEnableAsm          $Ven$TA$L$PI$$MpuP_isEnableAsm
       43c164d0     43c16508     43c16384   nortos.am62ax.r5f.ti-arm-clang.release.lib : MpuP_armv7r.obj (.text.mpu)
    
    [12 trampolines]
    [17 trampoline calls]
    
    
    GLOBAL SYMBOLS: SORTED ALPHABETICALLY BY Name 
    
    address   name                                             
    -------   ----                                             
    43c0fa01  AddrTranslateP_getLocalAddr                      
    43c02493  Board_deinit                                     
    43c0468d  Board_driversOpen                                
    43c06c7b  Board_init                                       
    43c135f5  BootCtrl_InitFunction                            
    43c2f666  BootCtrl_RunningStateInfo                        
    43c2ca08  BootCtrl_UBMStateInfo                            
    43c0dc1b  BootCtrl_eMMCMiscReadAll                         
    43c050cd  BootCtrl_readBootPartitionNum                    
    43c12ecb  BootCtrl_readeMMCMiscData_BootPartitionNum       
    43c12e4d  BootCtrl_updateeMMCMiscData_gSystemAttemptBootNum
    43c13c7d  BootCtrl_writeeMMCMiscData_BootPartitionNum      
    43c126ab  Bootloader_BootImageInfo_init                    
    43c137ad  Bootloader_JumpSelfCpu                           
    43c0b7fd  Bootloader_MmcsdRaw_readFromOffset               
    43c13ced  Bootloader_Params_init                           
    43c0b0c3  Bootloader_dmaCopy                               
    43c113a5  Bootloader_findSeq                               
    43c0dcaf  Bootloader_getMsgLen                             
    43c13d71  Bootloader_getMulticoreImageSize                 
    43c11033  Bootloader_loadCpu                               
    43c0de6d  Bootloader_loadSelfCpu                           
    43c12321  Bootloader_open                                  
    43c09497  Bootloader_parseMultiCoreAppImage                
    43c13919  Bootloader_profileAddCore                        
    43c13175  Bootloader_profileAddProfilePoint                
    43c090e1  Bootloader_profilePrintProfileLog                
    43c11d4f  Bootloader_profileReset                          
    43c13c8b  Bootloader_profileUpdateAppimageSize             
    43c13c99  Bootloader_profileUpdateMediaAndClk              
    43c0a4af  Bootloader_rprcImageLoad                         
    43c11083  Bootloader_rprcImageParseEntryPoint              
    43c103c9  Bootloader_runCpu                                
    43c1399b  Bootloader_socAuthImage                          
    43c137c9  Bootloader_socCpuGetClkDefault                   
    43c0fa69  Bootloader_socCpuGetClock                        
    43c1247d  Bootloader_socCpuPowerOnReset                    
    43c0f4e1  Bootloader_socCpuPowerOnResetA53                 
    43c0e483  Bootloader_socCpuPowerOnResetC7x                 
    43c0a399  Bootloader_socCpuPowerOnResetHSMM4f              
    43c0769d  Bootloader_socCpuPowerOnResetR5f                 
    43c0fad1  Bootloader_socCpuRelease                         
    43c0fcd9  Bootloader_socCpuRequest                         
    43c056c9  Bootloader_socCpuResetRelease                    
    43c0e61d  Bootloader_socCpuSetClock                        
    43c13ca7  Bootloader_socCpuSetEntryPoint                   
    43c13615  Bootloader_socGetCoreName                        
    43c13d7b  Bootloader_socGetSBLMem                          
    43c137e5  Bootloader_socIsAuthRequired                     
    43c1319b  Bootloader_socIsMCUResetIsoEnabled               
    43c13d85  Bootloader_socIsSmpEnable                        
    43c0f92d  Bootloader_socMemInitCpu                         
    43c126df  Bootloader_socOpenFirewalls                      
    43c12ef3  Bootloader_socRprcToCslCoreId                    
    43c13cf9  Bootloader_socSelfCPUjump                        
    43c120c9  Bootloader_socTranslateSectionAddr               
    43c13e77  Bootloader_socWaitForFWBoot                      
    43c065a3  Bootloader_verifyMulticoreImage                  
    43c13e68  C$$EXIT                                          
    43c13e7b  CPS_UncachedRead32                               
    43c13e7f  CPS_UncachedWrite32                              
    43c13b95  CSL_emifClearECCInterruptStatus                  
    43c0fd3f  CSL_emifConfig                                   
    43c13ba7  CSL_emifEnableECCInterrupts                      
    43c13d8f  CSL_secProxyGetDataAddr                          
    43c161a8  CacheP_configForceWrThru                         
    43c16231  CacheP_disable                                   
    43c15e98  CacheP_disableL1d                                
    43c15ec0  CacheP_disableL1p                                
    43c1626b  CacheP_enable                                    
    43c15ed8  CacheP_enableL1d                                 
    43c15ef0  CacheP_enableL1p                                 
    43c1619c  CacheP_getCacheLevelInfo                         
    43c16164  CacheP_getEnabled                                
    43c161d9  CacheP_init                                      
    43c1628b  CacheP_inv                                       
    43c15f08  CacheP_invL1d                                    
    43c15f7c  CacheP_invL1dAll                                 
    43c15f40  CacheP_invL1p                                    
    43c15f84  CacheP_invL1pAll                                 
    43c161c8  CacheP_setDLFO                                   
    43c15f8c  CacheP_wb                                        
    43c16004  CacheP_wbAll                                     
    43c15fc8  CacheP_wbInv                                     
    43c160ac  CacheP_wbInvAll                                  
    43c160c4  CacheP_wbInvAllAsm                               
    43c13d99  ClockP_Params_init                               
    43c11123  ClockP_construct                                 
    43c134e5  ClockP_deinit                                    
    43c1235b  ClockP_destruct                                  
    43c13d05  ClockP_getTicks                                  
    43c119d1  ClockP_getTimeUsec                               
    43c13e83  ClockP_getTimerCount                             
    43c0abf3  ClockP_init                                      
    43c13da3  ClockP_isActive                                  
    43c12713  ClockP_start                                     
    43c11d8f  ClockP_stop                                      
    43c13bdd  ClockP_ticksToUsec                               
    43c13e87  ClockP_timerClearOverflowInt                     
    43c10427  ClockP_timerTickIsr                              
    43c12105  ClockP_usleep                                    
    43c12a70  CycleCounterP_getCount32                         
    43c133e9  CycleCounterP_reset                              
    43c17fb0  DDRSS_ctlReg                                     
    43c19392  DDRSS_ctlRegNum                                  
    43c1867c  DDRSS_phyIndepReg                                
    43c196f8  DDRSS_phyIndepRegNum                             
    43c16638  DDRSS_phyReg                                     
    43c18d1c  DDRSS_phyRegNum                                  
    43c13d11  DDR_ResetDDR_PLL                                 
    43c03d5d  DDR_init                                         
    43c0f5c5  DDR_programHSDIV                                 
    43c08321  DDR_programPLL                                   
    43c07873  DDR_socEnableVttRegulator                        
    43c13635  DebugP_logZoneEnable                             
    43c12395  DebugP_uartLogWriterPutChar                      
    43c13d1d  DebugP_uartSetDrvIndex                           
    43c13cb5  Dpl_deinit                                       
    43c11e0f  Dpl_init                                         
    43c128e9  Drivers_close                                    
    43c139b3  Drivers_mmcsdClose                               
    43c1148f  Drivers_mmcsdOpen                                
    43c13cc3  Drivers_open                                     
    43c10c41  Drivers_uartOpen                                 
    43c13cd1  GTC_enable                                       
    43c13bb9  GTC_init                                         
    43c1327f  GTC_setFID                                       
    43c15879  HwiP_Params_init                                 
    43c15831  HwiP_clearInt                                    
    43c1588b  HwiP_construct                                   
    43c15d7b  HwiP_data_abort_handler                          
    43c159d5  HwiP_destruct                                    
    43c15e20  HwiP_disable                                     
    43c15e30  HwiP_disableFIQ                                  
    43c157a9  HwiP_disableInt                                  
    43c15e78  HwiP_disableVIC                                  
    43c15e40  HwiP_enable                                      
    43c15e50  HwiP_enableFIQ                                   
    43c15781  HwiP_enableInt                                   
    43c15e68  HwiP_enableVIC                                   
    43c15c0f  HwiP_fiq_handler                                 
    43c15e88  HwiP_getCPSR                                     
    43c15b77  HwiP_inISR                                       
    43c15aa7  HwiP_init                                        
    43c15da8  HwiP_irq_handler                                 
    43c15b89  HwiP_irq_handler_c                               
    43c15851  HwiP_post                                        
    43c15d4d  HwiP_prefetch_abort_handler                      
    43c15cc3  HwiP_reserved_handler                            
    43c15e60  HwiP_restore                                     
    43c157db  HwiP_restoreInt                                  
    43c15d1f  HwiP_svc_handler                                 
    43c15cf1  HwiP_undefined_handler                           
    43c0a5c1  LPDDR4_AckCtlInterrupt                           
    43c09e03  LPDDR4_CheckCtlInterrupt                         
    43c12747  LPDDR4_EnablePIInitiator                         
    43c139cb  LPDDR4_Init                                      
    43c1277b  LPDDR4_PollCtlIrq                                
    43c13bed  LPDDR4_Probe                                     
    43c113f3  LPDDR4_ReadReg                                   
    43c0f633  LPDDR4_Start                                     
    43c11e4f  LPDDR4_WriteCtlConfig                            
    43c11a17  LPDDR4_WritePhyConfig                            
    43c11789  LPDDR4_WritePhyIndepConfig                       
    43c11a5d  LPDDR4_WriteReg                                  
    43c12f43  LogServ_SearchIndexBaseModuleId                  
    43c1c4fc  LogServ_SoftwareComponentLogSwitchConfigParams   
    43c07de9  MMCSD_close                                      
    43c13933  MMCSD_deinit                                     
    43c0cdfd  MMCSD_enableBootPartition                        
    43c13ab7  MMCSD_getBlockSize                               
    43c12ad1  MMCSD_getHandle                                  
    43c13d29  MMCSD_getInputClk                                
    43c0e9c1  MMCSD_init                                       
    43c00edd  MMCSD_open                                       
    43c0e13d  MMCSD_parseCIDEmmc                               
    43c0f30d  MMCSD_parseCIDSd                                 
    43c117d3  MMCSD_parseCSDEmmc                               
    43c0da55  MMCSD_parseCSDSd                                 
    43c0defd  MMCSD_parseECSDEmmc                              
    43c12f6b  MMCSD_parseSCRSd                                 
    43c0ade9  MMCSD_read                                       
    43c101e7  MMCSD_readBootPartition                          
    43c12b5b  Module_clockDisable                              
    43c12b89  Module_clockEnable                               
    43c12675  Module_clockSetFrequency                         
    43c162c9  MpuP_RegionAttrs_init                            
    43c16389  MpuP_disable                                     
    43c16480  MpuP_disableAsm                                  
    43c16498  MpuP_disableBRAsm                                
    43c163bb  MpuP_enable                                      
    43c164a8  MpuP_enableAsm                                   
    43c164c0  MpuP_enableBRAsm                                 
    43c16403  MpuP_init                                        
    43c16385  MpuP_isEnable                                    
    43c164d0  MpuP_isEnableAsm                                 
    43c163f9  MpuP_resetRegion                                 
    43c162d7  MpuP_setRegion                                   
    43c164e4  MpuP_setRegionAsm                                
    43c11aa3  Pinmux_config                                    
    43c13507  Pinmux_init                                      
    43c1181d  Pinmux_unlockMMR                                 
    43c12a98  PmuP_clearOverflowStatus                         
    43c12a88  PmuP_disableCounters                             
    43c12a80  PmuP_enableCounters                              
    43c12a90  PmuP_getOverflowStatus                           
    43c12a78  PmuP_setup                                       
    43c13e97  PowerClock_deinit                                
    43c13cdf  PowerClock_init                                  
    43c107c5  SOC_controlModuleLockMMR                         
    43c11867  SOC_controlModuleUnlockMMR                       
    43c1381d  SOC_getCoreName                                  
    43c13655  SOC_getSelfCpuClk                                
    43c0f6a1  SOC_moduleClockEnable                            
    43c13e19  SOC_moduleGetClockFrequency                      
    43c09835  SOC_moduleSetClockFrequency                      
    43c08e55  Sciclient_ProcessPmMessage                       
    43c0aaf3  Sciclient_ProcessRmMessage                       
    43c111c3  Sciclient_abiCheck                               
    43c0c795  Sciclient_boardCfgParseHeader                    
    43c0e7b1  Sciclient_boardCfgPm                             
    43c0e835  Sciclient_boardCfgRm                             
    43c0f555  Sciclient_configPrmsInit                         
    43c114dd  Sciclient_deinit                                 
    43c10249  Sciclient_direct_init                            
    43c11213  Sciclient_firewallSetRegion                      
    43c12c11  Sciclient_flush                                  
    43c11265  Sciclient_getCurrentContext                      
    43c11529  Sciclient_getDefaultBoardCfgInfo                 
    43c13e9b  Sciclient_getSelfDevIdCore                       
    43c0cbe1  Sciclient_getVersionCheck                        
    43c07a49  Sciclient_init                                   
    43c0e8b9  Sciclient_pmGetModuleClkFreq                     
    43c0e6a3  Sciclient_pmGetModuleClkNumParent                
    43c0e729  Sciclient_pmGetModuleClkParent                   
    43c0ea43  Sciclient_pmGetModuleState                       
    43c0ed45  Sciclient_pmModuleClkRequest                     
    43c0e93d  Sciclient_pmModuleGetClkStatus                   
    43c0c4a3  Sciclient_pmQueryModuleClkFreq                   
    43c0d219  Sciclient_pmSetModuleClkFreq                     
    43c0edc3  Sciclient_pmSetModuleClkParent                   
    43c10d41  Sciclient_pmSetModuleRst                         
    43c102a9  Sciclient_pmSetModuleState                       
    43c10485  Sciclient_procBootAuthAndStart                   
    43c108d1  Sciclient_procBootGetProcessorState              
    43c104e3  Sciclient_procBootReleaseProcessor               
    43c10d95  Sciclient_procBootRequestProcessor               
    43c11575  Sciclient_procBootSetProcessorCfg                
    43c0fe07  Sciclient_procBootSetSequenceCtrl                
    43c13675  Sciclient_query_fw_caps_handler                  
    43c13839  Sciclient_readThread32                           
    43c13acd  Sciclient_readThreadCount                        
    43c0eb45  Sciclient_sendMessage                            
    43c07875  Sciclient_service                                
    43c0daed  Sciclient_serviceGetThreadIds                    
    43c0f1a5  Sciclient_servicePrepareHeader                   
    43c04db1  Sciclient_serviceSecureProxy                     
    43c10061  Sciclient_setDebugConfig                         
    43c13bfd  Sciclient_threadStatusReg                        
    43c13ae1  Sciclient_verifyThread                           
    43c11bbd  Sciclient_waitForBootNotification                
    43c132a5  Sciclient_waitThread                             
    43c11e8f  SemaphoreP_constructBinary                       
    43c11fd1  SemaphoreP_constructMutex                        
    43c09967  SemaphoreP_destruct                              
    43c0db85  SemaphoreP_pend                                  
    43c1291b  SemaphoreP_post                                  
    43c132c9  System_deinit                                    
    43c124b5  System_init                                      
    43c138fc  TI_memcpy_small                                  
    43c13a5c  TI_memset_small                                  
    43c09f23  TaskP_yield                                      
    43c13695  TimerP_Params_init                               
    43c13bcb  TimerP_clearOverflowInt                          
    43c13e9f  TimerP_getCount                                  
    43c13ea3  TimerP_getReloadCount                            
    43c07faf  TimerP_setup                                     
    43c13db7  TimerP_start                                     
    43c13dc1  TimerP_stop                                      
    43c08f9b  UART_close                                       
    43c1394d  UART_deinit                                      
    43c10de9  UART_dmaClose                                    
    43c10c97  UART_dmaDisableChannel                           
    43c12409  UART_dmaOpen                                     
    43c0c905  UART_flushTxFifo                                 
    43c1294d  UART_getHandle                                   
    43c0dd43  UART_init                                        
    43c06a35  UART_open                                        
    43c08bc1  UART_printf                                      
    43c09361  UART_write                                       
    43c13967  UART_writeInterruptDma                           
    43c12f93  Udma_chGetCqRingHandle                           
    43c12fbb  Udma_chGetFqRingHandle                           
    43c13ea7  Udma_defaultVirtToPhyFxn                         
    43c1081f  Udma_ringDequeueRaw                              
    43c100c3  Udma_ringQueueRaw                                
    43c10125  Utils_memcpyWord                                 
    43c1053f  _DebugP_assert                                   
    43c1660d  _DebugP_assertNoLog                              
    43c124ed  _DebugP_logZone                                  
    43c30980  __ABORT_STACK_END                                
    00000100  __ABORT_STACK_SIZE                               
    43c30880  __ABORT_STACK_START                              
    43c2f680  __BSS_END                                        
    43c2ba00  __BSS_START                                      
    43c30780  __FIQ_STACK_END                                  
    00000100  __FIQ_STACK_SIZE                                 
    43c30680  __FIQ_STACK_START                                
    43c30680  __IRQ_STACK_END                                  
    00001000  __IRQ_STACK_SIZE                                 
    43c2f680  __IRQ_STACK_START                                
    43c2ba00  __STACK_END                                      
    00004000  __STACK_SIZE                                     
    43c30880  __SVC_STACK_END                                  
    00000100  __SVC_STACK_SIZE                                 
    43c30780  __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                          
    UNDEFED   __TI_CINIT_Base                                  
    UNDEFED   __TI_CINIT_Limit                                 
    UNDEFED   __TI_Handler_Table_Base                          
    UNDEFED   __TI_Handler_Table_Limit                         
    43c10be8  __TI_auto_init_nobinit_nopinit                   
    ffffffff  __TI_pprof_out_hndl                              
    43c00100  __TI_printfi_nofloat                             
    ffffffff  __TI_prof_data_size                              
    ffffffff  __TI_prof_data_start                             
    43c00000  __TI_static_base__                               
    43c30a80  __UNDEFINED_STACK_END                            
    00000100  __UNDEFINED_STACK_SIZE                           
    43c30980  __UNDEFINED_STACK_START                          
    43c1bf40  __aeabi_ctype_table_                             
    43c1bf40  __aeabi_ctype_table_C                            
    43c1a5ec  __aeabi_errno                                    
    43c13d34  __aeabi_errno_addr                               
    43c13eb0  __aeabi_idiv0                                    
    43c13ec0  __aeabi_ldiv0                                    
    43c12fe4  __aeabi_llsl                                     
    43c1300c  __aeabi_llsr                                     
    43c13d40  __aeabi_memclr                                   
    43c13d40  __aeabi_memclr4                                  
    43c13d40  __aeabi_memclr8                                  
    43c13eac  __aeabi_memcpy                                   
    43c13eac  __aeabi_memcpy4                                  
    43c13eac  __aeabi_memcpy8                                  
    43c13c1c  __aeabi_memset                                   
    43c13c1c  __aeabi_memset4                                  
    43c13c1c  __aeabi_memset8                                  
    43c07c18  __aeabi_uidiv                                    
    43c132ec  __aeabi_uldivmod                                 
    43c12fe4  __ashldi3                                        
    ffffffff  __binit__                                        
    43c1300c  __lshrdi3                                        
    43c1662b  __mpu_init                                       
    43c27a00  __stack                                          
    43c00100  __start___llvm_prf_bits                          
    43c00100  __start___llvm_prf_cnts                          
    43c00100  __stop___llvm_prf_bits                           
    43c00100  __stop___llvm_prf_cnts                           
    43c0a280  __udivmoddi4                                     
    43c07c18  __udivsi3                                        
    43c16534  _c_int00                                         
    43c16510  _c_int00_sbl                                     
    43c2ee94  _freertosresetvectors                            
    43c1fa00  _sys_memory                                      
    UNDEFED   _system_post_cinit                               
    43c13855  _system_pre_init                                 
    43c00000  _vectors                                         
    43c00040  _vectors_sbl                                     
    43c13e68  abort                                            
    43c0f77c  atoi                                             
    ffffffff  binit                                            
    43c13311  boardcfg_get_rm_devgrp                           
    43c13af5  boardcfg_get_rm_resasg                           
    43c139e5  boardcfg_get_rm_resasg_size                      
    43c12c3d  boardcfg_memcpy_rm                               
    43c12443  boardcfg_pm_receive_and_validate                 
    43c0d4bd  boardcfg_rm_receive_and_validate                 
    43c13a75  clk_div_get_freq                                 
    43c10e3d  clk_div_init                                     
    43c0b1b5  clk_div_notify_freq                              
    43c0fe6d  clk_div_reg_get_div                              
    43c1059d  clk_div_reg_go_get_div                           
    43c0cc95  clk_div_reg_go_set_div                           
    43c0ebc5  clk_div_reg_set_div                              
    43c05bed  clk_div_set_freq                                 
    43c0be9d  clk_div_set_freq_static_parent                   
    43c12525  clk_drop_pwr_up_en                               
    43c1d130  clk_drv_div_pll_16fft_hsdiv                      
    43c1d154  clk_drv_div_pll_16fft_postdiv                    
    43c1d178  clk_drv_div_reg                                  
    43c1d19c  clk_drv_div_reg_go                               
    43c1d664  clk_drv_fixed                                    
    43c1d67c  clk_drv_from_device                              
    43c1d314  clk_drv_mux_reg                                  
    43c1d694  clk_drv_pll_16fft                                
    43c1d334  clk_drv_pllctrl_mux_reg_ro                       
    43c1d6ac  clk_drv_soc_hfosc0                               
    43c1d6c4  clk_drv_soc_lfosc0                               
    43c13e29  clk_freq_change_allow                            
    43c13e31  clk_freq_change_block                            
    43c0d87f  clk_generic_set_freq_parent                      
    43c0f3f9  clk_get                                          
    43c12c69  clk_get_div                                      
    43c12a11  clk_get_freq                                     
    43c11ed1  clk_get_parent                                   
    43c12a41  clk_get_parent_freq                              
    43c11c45  clk_get_state                                    
    43c08d0d  clk_init                                         
    43c13dcb  clk_notify_children_freq                         
    43c10309  clk_notify_freq                                  
    43c0eebd  clk_notify_sibling_freq                          
    43c118f9  clk_put                                          
    43c0b55d  clk_set_freq                                     
    43c0c0e5  clk_set_parent                                   
    43c127e5  clk_set_state                                    
    43c13529  clk_ssc_allow                                    
    43c136b5  clk_ssc_block                                    
    43c13035  clk_value_get_freq                               
    43c12595  clk_value_set_freq                               
    43c13a2d  dev_get_clk                                      
    43c11ccb  device_clk_disable                               
    43c11d0d  device_clk_enable                                
    43c125cd  device_clk_get_freq                              
    43c13b1d  device_clk_get_freq_change                       
    43c10655  device_clk_get_hw_ready                          
    43c13ecd  device_clk_get_hw_ssc                            
    43c13b31  device_clk_get_input_term                        
    43c1200f  device_clk_get_num_parents                       
    43c0a8ed  device_clk_get_parent                            
    43c13b45  device_clk_get_ssc                               
    43c13b59  device_clk_get_sw_gated                          
    43c0f7e9  device_clk_init                                  
    43c13c2d  device_clk_query_freq                            
    43c13aa1  device_clk_set_freq                              
    43c10981  device_clk_set_freq_change                       
    43c0b63d  device_clk_set_gated                             
    43c1354b  device_clk_set_input_term                        
    43c0bf61  device_clk_set_parent                            
    43c109d9  device_clk_set_ssc                               
    43c1217d  device_disable                                   
    43c1337d  device_prepare_exclusive                         
    43c13d4d  device_prepare_nonexclusive                      
    43c13735  device_resource_mem                              
    43c1297f  device_set_retention                             
    43c0df8d  device_set_state                                 
    43c133a1  device_suspend                                   
    43c070c1  devices_init                                     
    43c12819  devices_init_rw                                  
    43c133c5  dmsc_init                                        
    43c1e74a  evt_rt_srcs                                      
    43c1e9bc  evt_rt_srcs_count                                
    43c2f634  gADMA2Desc                                       
    43c1a790  gAddrTranslateConfig                             
    43c19f8c  gAddrTranslateInfo                               
    84000000  gAppimage                                        
    43c1a79c  gBootloader0Args                                 
    43c1a7a8  gBootloader1Args                                 
    43c1a570  gBootloaderConfig                                
    43c1a68c  gBootloaderConfigNum                             
    43c1a6d0  gBootloaderMemFxns                               
    43c1a6e8  gBootloaderMmcsdFxns                             
    43c1a64c  gBootloaderUdmaArgs                              
    43c1a7dc  gCacheConfig                                     
    43c1e9c0  gCacheL1dCacheLineSize                           
    43c1e9c4  gCacheL1pCacheLineSize                           
    43c1a700  gClockConfig                                     
    43c2f5d8  gClockCtrl                                       
    43c1a06c  gCoreBootInfo                                    
    43c1a7e4  gDebugLogZone                                    
    43c1a830  gDebugP_uartDrvIndex                             
    43c2eed4  gEmmcData0                                       
    43c1a834  gHwiConfig                                       
    43c2ba00  gHwiCtrl                                         
    43c1a780  gMemBootloaderArgs                               
    43c1a66c  gMemBootloaderConfig                             
    43c1a5b0  gMmcsdAttrs                                      
    43c1a818  gMmcsdConfig                                     
    43c1a838  gMmcsdConfigNum                                  
    43c2ef00  gMmcsdDataBuf0                                   
    43c2f65c  gMmcsdHandle                                     
    43c1a820  gMmcsdParams                                     
    43c1a7b4  gMpuConfig                                       
    43c1a31c  gMpuRegionConfig                                 
    43c2f404  gProfileObj                                      
    43c1a748  gResMemSection                                   
    43c1c640  gSOC_r5fVectors                                  
    43c1a420  gSciclientHandle                                 
    43c1c140  gSciclientMap                                    
    43c1a690  gSciclientRomSecProxyCfg                         
    43c1ea80  gSciclient_boardCfgLow                           
    43c1f980  gSciclient_boardCfgLow_pm                        
    43c1eb00  gSciclient_boardCfgLow_rm                        
    43c1f800  gSciclient_boardCfgLow_sec                       
    43c1a6b0  gSciclient_secProxyCfg                           
    43c1a75c  gSocModules                                      
    43c1a628  gSocModulesClockFrequency                        
    43c1a7c0  gUartConfig                                      
    43c1a83c  gUartConfigNum                                   
    43c16638  gUartDmaConfig                                   
    43c1a840  gUartDmaConfigNum                                
    43c2f660  gUartHandle                                      
    43c1a4d4  gUartParams                                      
    43c1e6f8  gcSciclientDirectExtBootX509MagicWord            
    43c0c1a5  get_clock_handler                                
    43c0efb5  get_clock_parent_handler                         
    43c0f855  get_dev_clk                                      
    43c11941  get_dev_clk_data                                 
    43c0d601  get_device_handler                               
    43c106b1  get_freq_handler                                 
    43c0f031  get_num_clock_parents_handler                    
    43c1a12c  ia_inst                                          
    43c1c7dc  ia_soc_pe_init_list                              
    43c0a6d3  ioremap_internal                                 
    43c1a3ac  ir_inst                                          
    43c1c888  irq_global_event_types                           
    43c10a89  lib_itoa                                         
    43c13e39  lpsc_module_get                                  
    43c10e91  lpsc_module_get_local_reset                      
    43c13e41  lpsc_module_get_module_reset                     
    43c1160d  lpsc_module_get_reset_iso                        
    43c12df5  lpsc_module_get_state                            
    43c1305d  lpsc_module_idx                                  
    43c13e49  lpsc_module_put                                  
    43c13e51  lpsc_module_ret_get                              
    43c13e59  lpsc_module_ret_put                              
    43c0e0ad  lpsc_module_set_local_reset                      
    43c0e595  lpsc_module_set_module_reset                     
    43c0f8c1  lpsc_module_set_reset_iso                        
    43c0b71d  lpsc_module_wait                                 
    43c06349  main                                             
    43c0ca75  map_add                                          
    43c11988  memccpy                                          
    43c0acef  mmr_lock_all                                     
    43c1226d  mmr_unlock                                       
    43c10ae1  mmr_unlock_all                                   
    43c1388d  notifier_call                                    
    43c1a844  operatingMode                                    
    43c1358f  osal_delay                                       
    43c1a848  pSciclient_secProxyCfg                           
    43c02495  pll_calc                                         
    43c10b39  pll_init                                         
    43c13c4d  pm_devgroup_is_enabled                           
    43c13c5d  pm_devgroup_set_enabled                          
    43c0cb2b  pm_div64                                         
    43c0cd49  pm_init                                          
    43c0f21d  psc_drop_pwr_up_ref                              
    43c1e298  psc_drv                                          
    43c1284d  psc_lookup                                       
    43c11f11  psc_lookup_lpsc                                  
    43c12881  psc_lookup_pd                                    
    43c0b2a1  psc_pd_get                                       
    43c1340d  psc_pd_idx                                       
    43c0bc31  psc_pd_put                                       
    43c0e36d  psc_pd_wait                                      
    43c13ed5  putchar_                                         
    43c0c9bd  query_freq_handler                               
    43c12e21  query_fw_caps_handler                            
    43c19c84  ra_inst                                          
    43c1e9ec  ra_inst_count                                    
    43c19a48  resasg_indexer                                   
    43c0a6d5  rm_core_get_resource_range                       
    43c0d6a1  rm_core_init                                     
    43c13c6d  rm_core_map_region                               
    43c13e61  rm_core_param_is_valid                           
    43c0fffd  rm_core_resasg_get_utype_index                   
    43c0c561  rm_core_resasg_validate_resource                 
    43c13b6d  rm_core_unmap_region                             
    43c0fc09  rm_core_validate_devgrp                          
    43c0aedd  rm_ia_init                                       
    43c10ee5  rm_ia_is_managed_resasg_utype                    
    43c130ad  rm_ia_validate_vint                              
    43c13431  rm_ia_vint_get_info                              
    43c0a7e1  rm_ia_vint_map                                   
    43c0afd1  rm_ia_vint_unmap                                 
    43c128b5  rm_init                                          
    43c0d9b9  rm_ir_clear                                      
    43c08915  rm_ir_configure                                  
    43c0fc71  rm_ir_get_outp                                   
    43c12605  rm_ir_init                                       
    43c130d5  rm_ir_is_managed_resasg_utype                    
    43c130fd  rm_ir_validate_output                            
    43c13455  rm_irq_init                                      
    43c1263d  rm_irq_is_managed_resasg_utype                   
    43c10f39  rm_irq_oes_src_register                          
    43c06c7d  rm_irq_release                                   
    43c072c1  rm_irq_set                                       
    43c04251  rm_ra_cfg                                        
    43c0cf61  rm_ra_init                                       
    43c0f0ad  rm_ra_is_managed_resasg_utype                    
    43c0b8dd  rm_ra_mon_cfg                                    
    43c0d741  rm_ra_validate_ring_index                        
    43c053e1  rm_udmap_flow_cfg                                
    43c0bd01  rm_udmap_flow_delegate                           
    43c13ed9  rm_udmap_flow_size_thresh_cfg                    
    43c08655  rm_udmap_gcfg_cfg                                
    43c0d16d  rm_udmap_init                                    
    43c0b38d  rm_udmap_is_managed_resasg_utype                 
    43c03201  rm_udmap_rx_ch_cfg                               
    43c02bd5  rm_udmap_tx_ch_cfg                               
    43c1a858  selfcoreEntry                                    
    43c0c325  set_clock_handler                                
    43c0ecc5  set_clock_parent_handler                         
    43c087b9  set_device_handler                               
    43c0f46d  set_device_resets_handler                        
    43c0c61d  set_freq_handler                                 
    43c138c5  sleep_modes_register                             
    43c0f294  snprintf                                         
    43c1e9f0  soc_clock_count                                  
    43c1a880  soc_clock_data                                   
    43c1c2ac  soc_clock_freq_defaults                          
    43c1d044  soc_clock_ranges                                 
    43c2f100  soc_clock_values                                 
    43c2e0b0  soc_clocks                                       
    43c1e9f4  soc_devgroup_count                               
    43c1c688  soc_devgroups                                    
    43c1e9f8  soc_device_count                                 
    43c1b8c0  soc_device_data_arr                              
    43c10769  soc_device_disable                               
    43c10f8d  soc_device_enable                                
    43c11305  soc_device_get_context_loss_count                
    43c122a9  soc_device_get_reset_iso                         
    43c116a5  soc_device_get_resets                            
    43c10369  soc_device_get_state                             
    43c0c6d9  soc_device_init                                  
    43c13edd  soc_device_init_complete                         
    43c116f1  soc_device_ret_disable                           
    43c1173d  soc_device_ret_enable                            
    43c11f51  soc_device_set_reset_iso                         
    43c11355  soc_device_set_resets                            
    43c2e880  soc_devices                                      
    43c1d378  soc_fw_caps                                      
    43c1c041  soc_host_indexes                                 
    43c1c13f  soc_host_indexes_sz                              
    43c1bc54  soc_pll_table                                    
    43c1e9fc  soc_psc_multiple_domains                         
    43c13771  sys_reset_handler                                
    43c13d59  sys_reset_handler_register                       
    43c13b81  system_reset                                     
    43c13ee1  trace_debug                                      
    43c12aa1  trace_debug_uart                                 
    43c13d65  trace_reconfigure                                
    43c0b1b3  u32_get_bytes                                    
    43c1378f  u32map_get                                       
    43c19e24  udmap_inst                                       
    43c1ea3c  udmap_inst_count                                 
    43c134c1  vprintf_                                         
    43c13714  wcslen                                           
    
    
    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                          
    00000100  __ABORT_STACK_SIZE                               
    00000100  __FIQ_STACK_SIZE                                 
    00000100  __SVC_STACK_SIZE                                 
    00000100  __UNDEFINED_STACK_SIZE                           
    00001000  __IRQ_STACK_SIZE                                 
    00004000  __STACK_SIZE                                     
    00008000  __SYSMEM_SIZE                                    
    43c00000  __TI_static_base__                               
    43c00000  _vectors                                         
    43c00040  _vectors_sbl                                     
    43c00100  __TI_printfi_nofloat                             
    43c00100  __start___llvm_prf_bits                          
    43c00100  __start___llvm_prf_cnts                          
    43c00100  __stop___llvm_prf_bits                           
    43c00100  __stop___llvm_prf_cnts                           
    43c00edd  MMCSD_open                                       
    43c02493  Board_deinit                                     
    43c02495  pll_calc                                         
    43c02bd5  rm_udmap_tx_ch_cfg                               
    43c03201  rm_udmap_rx_ch_cfg                               
    43c03d5d  DDR_init                                         
    43c04251  rm_ra_cfg                                        
    43c0468d  Board_driversOpen                                
    43c04db1  Sciclient_serviceSecureProxy                     
    43c050cd  BootCtrl_readBootPartitionNum                    
    43c053e1  rm_udmap_flow_cfg                                
    43c056c9  Bootloader_socCpuResetRelease                    
    43c05bed  clk_div_set_freq                                 
    43c06349  main                                             
    43c065a3  Bootloader_verifyMulticoreImage                  
    43c06a35  UART_open                                        
    43c06c7b  Board_init                                       
    43c06c7d  rm_irq_release                                   
    43c070c1  devices_init                                     
    43c072c1  rm_irq_set                                       
    43c0769d  Bootloader_socCpuPowerOnResetR5f                 
    43c07873  DDR_socEnableVttRegulator                        
    43c07875  Sciclient_service                                
    43c07a49  Sciclient_init                                   
    43c07c18  __aeabi_uidiv                                    
    43c07c18  __udivsi3                                        
    43c07de9  MMCSD_close                                      
    43c07faf  TimerP_setup                                     
    43c08321  DDR_programPLL                                   
    43c08655  rm_udmap_gcfg_cfg                                
    43c087b9  set_device_handler                               
    43c08915  rm_ir_configure                                  
    43c08bc1  UART_printf                                      
    43c08d0d  clk_init                                         
    43c08e55  Sciclient_ProcessPmMessage                       
    43c08f9b  UART_close                                       
    43c090e1  Bootloader_profilePrintProfileLog                
    43c09361  UART_write                                       
    43c09497  Bootloader_parseMultiCoreAppImage                
    43c09835  SOC_moduleSetClockFrequency                      
    43c09967  SemaphoreP_destruct                              
    43c09e03  LPDDR4_CheckCtlInterrupt                         
    43c09f23  TaskP_yield                                      
    43c0a280  __udivmoddi4                                     
    43c0a399  Bootloader_socCpuPowerOnResetHSMM4f              
    43c0a4af  Bootloader_rprcImageLoad                         
    43c0a5c1  LPDDR4_AckCtlInterrupt                           
    43c0a6d3  ioremap_internal                                 
    43c0a6d5  rm_core_get_resource_range                       
    43c0a7e1  rm_ia_vint_map                                   
    43c0a8ed  device_clk_get_parent                            
    43c0aaf3  Sciclient_ProcessRmMessage                       
    43c0abf3  ClockP_init                                      
    43c0acef  mmr_lock_all                                     
    43c0ade9  MMCSD_read                                       
    43c0aedd  rm_ia_init                                       
    43c0afd1  rm_ia_vint_unmap                                 
    43c0b0c3  Bootloader_dmaCopy                               
    43c0b1b3  u32_get_bytes                                    
    43c0b1b5  clk_div_notify_freq                              
    43c0b2a1  psc_pd_get                                       
    43c0b38d  rm_udmap_is_managed_resasg_utype                 
    43c0b55d  clk_set_freq                                     
    43c0b63d  device_clk_set_gated                             
    43c0b71d  lpsc_module_wait                                 
    43c0b7fd  Bootloader_MmcsdRaw_readFromOffset               
    43c0b8dd  rm_ra_mon_cfg                                    
    43c0bc31  psc_pd_put                                       
    43c0bd01  rm_udmap_flow_delegate                           
    43c0be9d  clk_div_set_freq_static_parent                   
    43c0bf61  device_clk_set_parent                            
    43c0c0e5  clk_set_parent                                   
    43c0c1a5  get_clock_handler                                
    43c0c325  set_clock_handler                                
    43c0c4a3  Sciclient_pmQueryModuleClkFreq                   
    43c0c561  rm_core_resasg_validate_resource                 
    43c0c61d  set_freq_handler                                 
    43c0c6d9  soc_device_init                                  
    43c0c795  Sciclient_boardCfgParseHeader                    
    43c0c905  UART_flushTxFifo                                 
    43c0c9bd  query_freq_handler                               
    43c0ca75  map_add                                          
    43c0cb2b  pm_div64                                         
    43c0cbe1  Sciclient_getVersionCheck                        
    43c0cc95  clk_div_reg_go_set_div                           
    43c0cd49  pm_init                                          
    43c0cdfd  MMCSD_enableBootPartition                        
    43c0cf61  rm_ra_init                                       
    43c0d16d  rm_udmap_init                                    
    43c0d219  Sciclient_pmSetModuleClkFreq                     
    43c0d4bd  boardcfg_rm_receive_and_validate                 
    43c0d601  get_device_handler                               
    43c0d6a1  rm_core_init                                     
    43c0d741  rm_ra_validate_ring_index                        
    43c0d87f  clk_generic_set_freq_parent                      
    43c0d9b9  rm_ir_clear                                      
    43c0da55  MMCSD_parseCSDSd                                 
    43c0daed  Sciclient_serviceGetThreadIds                    
    43c0db85  SemaphoreP_pend                                  
    43c0dc1b  BootCtrl_eMMCMiscReadAll                         
    43c0dcaf  Bootloader_getMsgLen                             
    43c0dd43  UART_init                                        
    43c0de6d  Bootloader_loadSelfCpu                           
    43c0defd  MMCSD_parseECSDEmmc                              
    43c0df8d  device_set_state                                 
    43c0e0ad  lpsc_module_set_local_reset                      
    43c0e13d  MMCSD_parseCIDEmmc                               
    43c0e36d  psc_pd_wait                                      
    43c0e483  Bootloader_socCpuPowerOnResetC7x                 
    43c0e595  lpsc_module_set_module_reset                     
    43c0e61d  Bootloader_socCpuSetClock                        
    43c0e6a3  Sciclient_pmGetModuleClkNumParent                
    43c0e729  Sciclient_pmGetModuleClkParent                   
    43c0e7b1  Sciclient_boardCfgPm                             
    43c0e835  Sciclient_boardCfgRm                             
    43c0e8b9  Sciclient_pmGetModuleClkFreq                     
    43c0e93d  Sciclient_pmModuleGetClkStatus                   
    43c0e9c1  MMCSD_init                                       
    43c0ea43  Sciclient_pmGetModuleState                       
    43c0eb45  Sciclient_sendMessage                            
    43c0ebc5  clk_div_reg_set_div                              
    43c0ecc5  set_clock_parent_handler                         
    43c0ed45  Sciclient_pmModuleClkRequest                     
    43c0edc3  Sciclient_pmSetModuleClkParent                   
    43c0eebd  clk_notify_sibling_freq                          
    43c0efb5  get_clock_parent_handler                         
    43c0f031  get_num_clock_parents_handler                    
    43c0f0ad  rm_ra_is_managed_resasg_utype                    
    43c0f1a5  Sciclient_servicePrepareHeader                   
    43c0f21d  psc_drop_pwr_up_ref                              
    43c0f294  snprintf                                         
    43c0f30d  MMCSD_parseCIDSd                                 
    43c0f3f9  clk_get                                          
    43c0f46d  set_device_resets_handler                        
    43c0f4e1  Bootloader_socCpuPowerOnResetA53                 
    43c0f555  Sciclient_configPrmsInit                         
    43c0f5c5  DDR_programHSDIV                                 
    43c0f633  LPDDR4_Start                                     
    43c0f6a1  SOC_moduleClockEnable                            
    43c0f77c  atoi                                             
    43c0f7e9  device_clk_init                                  
    43c0f855  get_dev_clk                                      
    43c0f8c1  lpsc_module_set_reset_iso                        
    43c0f92d  Bootloader_socMemInitCpu                         
    43c0fa01  AddrTranslateP_getLocalAddr                      
    43c0fa69  Bootloader_socCpuGetClock                        
    43c0fad1  Bootloader_socCpuRelease                         
    43c0fc09  rm_core_validate_devgrp                          
    43c0fc71  rm_ir_get_outp                                   
    43c0fcd9  Bootloader_socCpuRequest                         
    43c0fd3f  CSL_emifConfig                                   
    43c0fe07  Sciclient_procBootSetSequenceCtrl                
    43c0fe6d  clk_div_reg_get_div                              
    43c0fffd  rm_core_resasg_get_utype_index                   
    43c10061  Sciclient_setDebugConfig                         
    43c100c3  Udma_ringQueueRaw                                
    43c10125  Utils_memcpyWord                                 
    43c101e7  MMCSD_readBootPartition                          
    43c10249  Sciclient_direct_init                            
    43c102a9  Sciclient_pmSetModuleState                       
    43c10309  clk_notify_freq                                  
    43c10369  soc_device_get_state                             
    43c103c9  Bootloader_runCpu                                
    43c10427  ClockP_timerTickIsr                              
    43c10485  Sciclient_procBootAuthAndStart                   
    43c104e3  Sciclient_procBootReleaseProcessor               
    43c1053f  _DebugP_assert                                   
    43c1059d  clk_div_reg_go_get_div                           
    43c10655  device_clk_get_hw_ready                          
    43c106b1  get_freq_handler                                 
    43c10769  soc_device_disable                               
    43c107c5  SOC_controlModuleLockMMR                         
    43c1081f  Udma_ringDequeueRaw                              
    43c108d1  Sciclient_procBootGetProcessorState              
    43c10981  device_clk_set_freq_change                       
    43c109d9  device_clk_set_ssc                               
    43c10a89  lib_itoa                                         
    43c10ae1  mmr_unlock_all                                   
    43c10b39  pll_init                                         
    43c10be8  __TI_auto_init_nobinit_nopinit                   
    43c10c41  Drivers_uartOpen                                 
    43c10c97  UART_dmaDisableChannel                           
    43c10d41  Sciclient_pmSetModuleRst                         
    43c10d95  Sciclient_procBootRequestProcessor               
    43c10de9  UART_dmaClose                                    
    43c10e3d  clk_div_init                                     
    43c10e91  lpsc_module_get_local_reset                      
    43c10ee5  rm_ia_is_managed_resasg_utype                    
    43c10f39  rm_irq_oes_src_register                          
    43c10f8d  soc_device_enable                                
    43c11033  Bootloader_loadCpu                               
    43c11083  Bootloader_rprcImageParseEntryPoint              
    43c11123  ClockP_construct                                 
    43c111c3  Sciclient_abiCheck                               
    43c11213  Sciclient_firewallSetRegion                      
    43c11265  Sciclient_getCurrentContext                      
    43c11305  soc_device_get_context_loss_count                
    43c11355  soc_device_set_resets                            
    43c113a5  Bootloader_findSeq                               
    43c113f3  LPDDR4_ReadReg                                   
    43c1148f  Drivers_mmcsdOpen                                
    43c114dd  Sciclient_deinit                                 
    43c11529  Sciclient_getDefaultBoardCfgInfo                 
    43c11575  Sciclient_procBootSetProcessorCfg                
    43c1160d  lpsc_module_get_reset_iso                        
    43c116a5  soc_device_get_resets                            
    43c116f1  soc_device_ret_disable                           
    43c1173d  soc_device_ret_enable                            
    43c11789  LPDDR4_WritePhyIndepConfig                       
    43c117d3  MMCSD_parseCSDEmmc                               
    43c1181d  Pinmux_unlockMMR                                 
    43c11867  SOC_controlModuleUnlockMMR                       
    43c118f9  clk_put                                          
    43c11941  get_dev_clk_data                                 
    43c11988  memccpy                                          
    43c119d1  ClockP_getTimeUsec                               
    43c11a17  LPDDR4_WritePhyConfig                            
    43c11a5d  LPDDR4_WriteReg                                  
    43c11aa3  Pinmux_config                                    
    43c11bbd  Sciclient_waitForBootNotification                
    43c11c45  clk_get_state                                    
    43c11ccb  device_clk_disable                               
    43c11d0d  device_clk_enable                                
    43c11d4f  Bootloader_profileReset                          
    43c11d8f  ClockP_stop                                      
    43c11e0f  Dpl_init                                         
    43c11e4f  LPDDR4_WriteCtlConfig                            
    43c11e8f  SemaphoreP_constructBinary                       
    43c11ed1  clk_get_parent                                   
    43c11f11  psc_lookup_lpsc                                  
    43c11f51  soc_device_set_reset_iso                         
    43c11fd1  SemaphoreP_constructMutex                        
    43c1200f  device_clk_get_num_parents                       
    43c120c9  Bootloader_socTranslateSectionAddr               
    43c12105  ClockP_usleep                                    
    43c1217d  device_disable                                   
    43c1226d  mmr_unlock                                       
    43c122a9  soc_device_get_reset_iso                         
    43c12321  Bootloader_open                                  
    43c1235b  ClockP_destruct                                  
    43c12395  DebugP_uartLogWriterPutChar                      
    43c12409  UART_dmaOpen                                     
    43c12443  boardcfg_pm_receive_and_validate                 
    43c1247d  Bootloader_socCpuPowerOnReset                    
    43c124b5  System_init                                      
    43c124ed  _DebugP_logZone                                  
    43c12525  clk_drop_pwr_up_en                               
    43c12595  clk_value_set_freq                               
    43c125cd  device_clk_get_freq                              
    43c12605  rm_ir_init                                       
    43c1263d  rm_irq_is_managed_resasg_utype                   
    43c12675  Module_clockSetFrequency                         
    43c126ab  Bootloader_BootImageInfo_init                    
    43c126df  Bootloader_socOpenFirewalls                      
    43c12713  ClockP_start                                     
    43c12747  LPDDR4_EnablePIInitiator                         
    43c1277b  LPDDR4_PollCtlIrq                                
    43c127e5  clk_set_state                                    
    43c12819  devices_init_rw                                  
    43c1284d  psc_lookup                                       
    43c12881  psc_lookup_pd                                    
    43c128b5  rm_init                                          
    43c128e9  Drivers_close                                    
    43c1291b  SemaphoreP_post                                  
    43c1294d  UART_getHandle                                   
    43c1297f  device_set_retention                             
    43c12a11  clk_get_freq                                     
    43c12a41  clk_get_parent_freq                              
    43c12a70  CycleCounterP_getCount32                         
    43c12a78  PmuP_setup                                       
    43c12a80  PmuP_enableCounters                              
    43c12a88  PmuP_disableCounters                             
    43c12a90  PmuP_getOverflowStatus                           
    43c12a98  PmuP_clearOverflowStatus                         
    43c12aa1  trace_debug_uart                                 
    43c12ad1  MMCSD_getHandle                                  
    43c12b5b  Module_clockDisable                              
    43c12b89  Module_clockEnable                               
    43c12c11  Sciclient_flush                                  
    43c12c3d  boardcfg_memcpy_rm                               
    43c12c69  clk_get_div                                      
    43c12df5  lpsc_module_get_state                            
    43c12e21  query_fw_caps_handler                            
    43c12e4d  BootCtrl_updateeMMCMiscData_gSystemAttemptBootNum
    43c12ecb  BootCtrl_readeMMCMiscData_BootPartitionNum       
    43c12ef3  Bootloader_socRprcToCslCoreId                    
    43c12f43  LogServ_SearchIndexBaseModuleId                  
    43c12f6b  MMCSD_parseSCRSd                                 
    43c12f93  Udma_chGetCqRingHandle                           
    43c12fbb  Udma_chGetFqRingHandle                           
    43c12fe4  __aeabi_llsl                                     
    43c12fe4  __ashldi3                                        
    43c1300c  __aeabi_llsr                                     
    43c1300c  __lshrdi3                                        
    43c13035  clk_value_get_freq                               
    43c1305d  lpsc_module_idx                                  
    43c130ad  rm_ia_validate_vint                              
    43c130d5  rm_ir_is_managed_resasg_utype                    
    43c130fd  rm_ir_validate_output                            
    43c13175  Bootloader_profileAddProfilePoint                
    43c1319b  Bootloader_socIsMCUResetIsoEnabled               
    43c1327f  GTC_setFID                                       
    43c132a5  Sciclient_waitThread                             
    43c132c9  System_deinit                                    
    43c132ec  __aeabi_uldivmod                                 
    43c13311  boardcfg_get_rm_devgrp                           
    43c1337d  device_prepare_exclusive                         
    43c133a1  device_suspend                                   
    43c133c5  dmsc_init                                        
    43c133e9  CycleCounterP_reset                              
    43c1340d  psc_pd_idx                                       
    43c13431  rm_ia_vint_get_info                              
    43c13455  rm_irq_init                                      
    43c134c1  vprintf_                                         
    43c134e5  ClockP_deinit                                    
    43c13507  Pinmux_init                                      
    43c13529  clk_ssc_allow                                    
    43c1354b  device_clk_set_input_term                        
    43c1358f  osal_delay                                       
    43c135f5  BootCtrl_InitFunction                            
    43c13615  Bootloader_socGetCoreName                        
    43c13635  DebugP_logZoneEnable                             
    43c13655  SOC_getSelfCpuClk                                
    43c13675  Sciclient_query_fw_caps_handler                  
    43c13695  TimerP_Params_init                               
    43c136b5  clk_ssc_block                                    
    43c13714  wcslen                                           
    43c13735  device_resource_mem                              
    43c13771  sys_reset_handler                                
    43c1378f  u32map_get                                       
    43c137ad  Bootloader_JumpSelfCpu                           
    43c137c9  Bootloader_socCpuGetClkDefault                   
    43c137e5  Bootloader_socIsAuthRequired                     
    43c1381d  SOC_getCoreName                                  
    43c13839  Sciclient_readThread32                           
    43c13855  _system_pre_init                                 
    43c1388d  notifier_call                                    
    43c138c5  sleep_modes_register                             
    43c138fc  TI_memcpy_small                                  
    43c13919  Bootloader_profileAddCore                        
    43c13933  MMCSD_deinit                                     
    43c1394d  UART_deinit                                      
    43c13967  UART_writeInterruptDma                           
    43c1399b  Bootloader_socAuthImage                          
    43c139b3  Drivers_mmcsdClose                               
    43c139cb  LPDDR4_Init                                      
    43c139e5  boardcfg_get_rm_resasg_size                      
    43c13a2d  dev_get_clk                                      
    43c13a5c  TI_memset_small                                  
    43c13a75  clk_div_get_freq                                 
    43c13aa1  device_clk_set_freq                              
    43c13ab7  MMCSD_getBlockSize                               
    43c13acd  Sciclient_readThreadCount                        
    43c13ae1  Sciclient_verifyThread                           
    43c13af5  boardcfg_get_rm_resasg                           
    43c13b1d  device_clk_get_freq_change                       
    43c13b31  device_clk_get_input_term                        
    43c13b45  device_clk_get_ssc                               
    43c13b59  device_clk_get_sw_gated                          
    43c13b6d  rm_core_unmap_region                             
    43c13b81  system_reset                                     
    43c13b95  CSL_emifClearECCInterruptStatus                  
    43c13ba7  CSL_emifEnableECCInterrupts                      
    43c13bb9  GTC_init                                         
    43c13bcb  TimerP_clearOverflowInt                          
    43c13bdd  ClockP_ticksToUsec                               
    43c13bed  LPDDR4_Probe                                     
    43c13bfd  Sciclient_threadStatusReg                        
    43c13c1c  __aeabi_memset                                   
    43c13c1c  __aeabi_memset4                                  
    43c13c1c  __aeabi_memset8                                  
    43c13c2d  device_clk_query_freq                            
    43c13c4d  pm_devgroup_is_enabled                           
    43c13c5d  pm_devgroup_set_enabled                          
    43c13c6d  rm_core_map_region                               
    43c13c7d  BootCtrl_writeeMMCMiscData_BootPartitionNum      
    43c13c8b  Bootloader_profileUpdateAppimageSize             
    43c13c99  Bootloader_profileUpdateMediaAndClk              
    43c13ca7  Bootloader_socCpuSetEntryPoint                   
    43c13cb5  Dpl_deinit                                       
    43c13cc3  Drivers_open                                     
    43c13cd1  GTC_enable                                       
    43c13cdf  PowerClock_init                                  
    43c13ced  Bootloader_Params_init                           
    43c13cf9  Bootloader_socSelfCPUjump                        
    43c13d05  ClockP_getTicks                                  
    43c13d11  DDR_ResetDDR_PLL                                 
    43c13d1d  DebugP_uartSetDrvIndex                           
    43c13d29  MMCSD_getInputClk                                
    43c13d34  __aeabi_errno_addr                               
    43c13d40  __aeabi_memclr                                   
    43c13d40  __aeabi_memclr4                                  
    43c13d40  __aeabi_memclr8                                  
    43c13d4d  device_prepare_nonexclusive                      
    43c13d59  sys_reset_handler_register                       
    43c13d65  trace_reconfigure                                
    43c13d71  Bootloader_getMulticoreImageSize                 
    43c13d7b  Bootloader_socGetSBLMem                          
    43c13d85  Bootloader_socIsSmpEnable                        
    43c13d8f  CSL_secProxyGetDataAddr                          
    43c13d99  ClockP_Params_init                               
    43c13da3  ClockP_isActive                                  
    43c13db7  TimerP_start                                     
    43c13dc1  TimerP_stop                                      
    43c13dcb  clk_notify_children_freq                         
    43c13e19  SOC_moduleGetClockFrequency                      
    43c13e29  clk_freq_change_allow                            
    43c13e31  clk_freq_change_block                            
    43c13e39  lpsc_module_get                                  
    43c13e41  lpsc_module_get_module_reset                     
    43c13e49  lpsc_module_put                                  
    43c13e51  lpsc_module_ret_get                              
    43c13e59  lpsc_module_ret_put                              
    43c13e61  rm_core_param_is_valid                           
    43c13e68  C$$EXIT                                          
    43c13e68  abort                                            
    43c13e77  Bootloader_socWaitForFWBoot                      
    43c13e7b  CPS_UncachedRead32                               
    43c13e7f  CPS_UncachedWrite32                              
    43c13e83  ClockP_getTimerCount                             
    43c13e87  ClockP_timerClearOverflowInt                     
    43c13e97  PowerClock_deinit                                
    43c13e9b  Sciclient_getSelfDevIdCore                       
    43c13e9f  TimerP_getCount                                  
    43c13ea3  TimerP_getReloadCount                            
    43c13ea7  Udma_defaultVirtToPhyFxn                         
    43c13eac  __aeabi_memcpy                                   
    43c13eac  __aeabi_memcpy4                                  
    43c13eac  __aeabi_memcpy8                                  
    43c13eb0  __aeabi_idiv0                                    
    43c13ec0  __aeabi_ldiv0                                    
    43c13ecd  device_clk_get_hw_ssc                            
    43c13ed5  putchar_                                         
    43c13ed9  rm_udmap_flow_size_thresh_cfg                    
    43c13edd  soc_device_init_complete                         
    43c13ee1  trace_debug                                      
    43c15781  HwiP_enableInt                                   
    43c157a9  HwiP_disableInt                                  
    43c157db  HwiP_restoreInt                                  
    43c15831  HwiP_clearInt                                    
    43c15851  HwiP_post                                        
    43c15879  HwiP_Params_init                                 
    43c1588b  HwiP_construct                                   
    43c159d5  HwiP_destruct                                    
    43c15aa7  HwiP_init                                        
    43c15b77  HwiP_inISR                                       
    43c15b89  HwiP_irq_handler_c                               
    43c15c0f  HwiP_fiq_handler                                 
    43c15cc3  HwiP_reserved_handler                            
    43c15cf1  HwiP_undefined_handler                           
    43c15d1f  HwiP_svc_handler                                 
    43c15d4d  HwiP_prefetch_abort_handler                      
    43c15d7b  HwiP_data_abort_handler                          
    43c15da8  HwiP_irq_handler                                 
    43c15e20  HwiP_disable                                     
    43c15e30  HwiP_disableFIQ                                  
    43c15e40  HwiP_enable                                      
    43c15e50  HwiP_enableFIQ                                   
    43c15e60  HwiP_restore                                     
    43c15e68  HwiP_enableVIC                                   
    43c15e78  HwiP_disableVIC                                  
    43c15e88  HwiP_getCPSR                                     
    43c15e98  CacheP_disableL1d                                
    43c15ec0  CacheP_disableL1p                                
    43c15ed8  CacheP_enableL1d                                 
    43c15ef0  CacheP_enableL1p                                 
    43c15f08  CacheP_invL1d                                    
    43c15f40  CacheP_invL1p                                    
    43c15f7c  CacheP_invL1dAll                                 
    43c15f84  CacheP_invL1pAll                                 
    43c15f8c  CacheP_wb                                        
    43c15fc8  CacheP_wbInv                                     
    43c16004  CacheP_wbAll                                     
    43c160ac  CacheP_wbInvAll                                  
    43c160c4  CacheP_wbInvAllAsm                               
    43c16164  CacheP_getEnabled                                
    43c1619c  CacheP_getCacheLevelInfo                         
    43c161a8  CacheP_configForceWrThru                         
    43c161c8  CacheP_setDLFO                                   
    43c161d9  CacheP_init                                      
    43c16231  CacheP_disable                                   
    43c1626b  CacheP_enable                                    
    43c1628b  CacheP_inv                                       
    43c162c9  MpuP_RegionAttrs_init                            
    43c162d7  MpuP_setRegion                                   
    43c16385  MpuP_isEnable                                    
    43c16389  MpuP_disable                                     
    43c163bb  MpuP_enable                                      
    43c163f9  MpuP_resetRegion                                 
    43c16403  MpuP_init                                        
    43c16480  MpuP_disableAsm                                  
    43c16498  MpuP_disableBRAsm                                
    43c164a8  MpuP_enableAsm                                   
    43c164c0  MpuP_enableBRAsm                                 
    43c164d0  MpuP_isEnableAsm                                 
    43c164e4  MpuP_setRegionAsm                                
    43c16510  _c_int00_sbl                                     
    43c16534  _c_int00                                         
    43c1660d  _DebugP_assertNoLog                              
    43c1662b  __mpu_init                                       
    43c16638  DDRSS_phyReg                                     
    43c16638  gUartDmaConfig                                   
    43c17fb0  DDRSS_ctlReg                                     
    43c1867c  DDRSS_phyIndepReg                                
    43c18d1c  DDRSS_phyRegNum                                  
    43c19392  DDRSS_ctlRegNum                                  
    43c196f8  DDRSS_phyIndepRegNum                             
    43c19a48  resasg_indexer                                   
    43c19c84  ra_inst                                          
    43c19e24  udmap_inst                                       
    43c19f8c  gAddrTranslateInfo                               
    43c1a06c  gCoreBootInfo                                    
    43c1a12c  ia_inst                                          
    43c1a31c  gMpuRegionConfig                                 
    43c1a3ac  ir_inst                                          
    43c1a420  gSciclientHandle                                 
    43c1a4d4  gUartParams                                      
    43c1a570  gBootloaderConfig                                
    43c1a5b0  gMmcsdAttrs                                      
    43c1a5ec  __aeabi_errno                                    
    43c1a628  gSocModulesClockFrequency                        
    43c1a64c  gBootloaderUdmaArgs                              
    43c1a66c  gMemBootloaderConfig                             
    43c1a68c  gBootloaderConfigNum                             
    43c1a690  gSciclientRomSecProxyCfg                         
    43c1a6b0  gSciclient_secProxyCfg                           
    43c1a6d0  gBootloaderMemFxns                               
    43c1a6e8  gBootloaderMmcsdFxns                             
    43c1a700  gClockConfig                                     
    43c1a748  gResMemSection                                   
    43c1a75c  gSocModules                                      
    43c1a780  gMemBootloaderArgs                               
    43c1a790  gAddrTranslateConfig                             
    43c1a79c  gBootloader0Args                                 
    43c1a7a8  gBootloader1Args                                 
    43c1a7b4  gMpuConfig                                       
    43c1a7c0  gUartConfig                                      
    43c1a7dc  gCacheConfig                                     
    43c1a7e4  gDebugLogZone                                    
    43c1a818  gMmcsdConfig                                     
    43c1a820  gMmcsdParams                                     
    43c1a830  gDebugP_uartDrvIndex                             
    43c1a834  gHwiConfig                                       
    43c1a838  gMmcsdConfigNum                                  
    43c1a83c  gUartConfigNum                                   
    43c1a840  gUartDmaConfigNum                                
    43c1a844  operatingMode                                    
    43c1a848  pSciclient_secProxyCfg                           
    43c1a858  selfcoreEntry                                    
    43c1a880  soc_clock_data                                   
    43c1b8c0  soc_device_data_arr                              
    43c1bc54  soc_pll_table                                    
    43c1bf40  __aeabi_ctype_table_                             
    43c1bf40  __aeabi_ctype_table_C                            
    43c1c041  soc_host_indexes                                 
    43c1c13f  soc_host_indexes_sz                              
    43c1c140  gSciclientMap                                    
    43c1c2ac  soc_clock_freq_defaults                          
    43c1c4fc  LogServ_SoftwareComponentLogSwitchConfigParams   
    43c1c640  gSOC_r5fVectors                                  
    43c1c688  soc_devgroups                                    
    43c1c7dc  ia_soc_pe_init_list                              
    43c1c888  irq_global_event_types                           
    43c1d044  soc_clock_ranges                                 
    43c1d130  clk_drv_div_pll_16fft_hsdiv                      
    43c1d154  clk_drv_div_pll_16fft_postdiv                    
    43c1d178  clk_drv_div_reg                                  
    43c1d19c  clk_drv_div_reg_go                               
    43c1d314  clk_drv_mux_reg                                  
    43c1d334  clk_drv_pllctrl_mux_reg_ro                       
    43c1d378  soc_fw_caps                                      
    43c1d664  clk_drv_fixed                                    
    43c1d67c  clk_drv_from_device                              
    43c1d694  clk_drv_pll_16fft                                
    43c1d6ac  clk_drv_soc_hfosc0                               
    43c1d6c4  clk_drv_soc_lfosc0                               
    43c1e298  psc_drv                                          
    43c1e6f8  gcSciclientDirectExtBootX509MagicWord            
    43c1e74a  evt_rt_srcs                                      
    43c1e9bc  evt_rt_srcs_count                                
    43c1e9c0  gCacheL1dCacheLineSize                           
    43c1e9c4  gCacheL1pCacheLineSize                           
    43c1e9ec  ra_inst_count                                    
    43c1e9f0  soc_clock_count                                  
    43c1e9f4  soc_devgroup_count                               
    43c1e9f8  soc_device_count                                 
    43c1e9fc  soc_psc_multiple_domains                         
    43c1ea3c  udmap_inst_count                                 
    43c1ea80  gSciclient_boardCfgLow                           
    43c1eb00  gSciclient_boardCfgLow_rm                        
    43c1f800  gSciclient_boardCfgLow_sec                       
    43c1f980  gSciclient_boardCfgLow_pm                        
    43c1fa00  _sys_memory                                      
    43c27a00  __stack                                          
    43c2ba00  __BSS_START                                      
    43c2ba00  __STACK_END                                      
    43c2ba00  gHwiCtrl                                         
    43c2ca08  BootCtrl_UBMStateInfo                            
    43c2e0b0  soc_clocks                                       
    43c2e880  soc_devices                                      
    43c2ee94  _freertosresetvectors                            
    43c2eed4  gEmmcData0                                       
    43c2ef00  gMmcsdDataBuf0                                   
    43c2f100  soc_clock_values                                 
    43c2f404  gProfileObj                                      
    43c2f5d8  gClockCtrl                                       
    43c2f634  gADMA2Desc                                       
    43c2f65c  gMmcsdHandle                                     
    43c2f660  gUartHandle                                      
    43c2f666  BootCtrl_RunningStateInfo                        
    43c2f680  __BSS_END                                        
    43c2f680  __IRQ_STACK_START                                
    43c30680  __FIQ_STACK_START                                
    43c30680  __IRQ_STACK_END                                  
    43c30780  __FIQ_STACK_END                                  
    43c30780  __SVC_STACK_START                                
    43c30880  __ABORT_STACK_START                              
    43c30880  __SVC_STACK_END                                  
    43c30980  __ABORT_STACK_END                                
    43c30980  __UNDEFINED_STACK_START                          
    43c30a80  __UNDEFINED_STACK_END                            
    84000000  gAppimage                                        
    ffffffff  __TI_pprof_out_hndl                              
    ffffffff  __TI_prof_data_size                              
    ffffffff  __TI_prof_data_start                             
    ffffffff  __binit__                                        
    ffffffff  binit                                            
    UNDEFED   __TI_CINIT_Base                                  
    UNDEFED   __TI_CINIT_Limit                                 
    UNDEFED   __TI_Handler_Table_Base                          
    UNDEFED   __TI_Handler_Table_Limit                         
    UNDEFED   _system_post_cinit                               
    
    [656 symbols]
    

  • Hi Prashant,

    Customer has analyzed that this stuck is due to that the WKUP core is waiting the response from the TIFS.

    Previously, customer did not add the emmc write in the main, and there is no such problem. Now after customer adds the emmc write in the main, it will meet this problem. Customer does not understand why adding emmc write in the main will affect the TIFS response.

    May I know if you have any clue for that please?

    Thanks,

    Kevin

  • The address following and the map files

    That address means the ROM did not boot the SBL.

    - use the USB-DFU tools flash image

    Can you explain what exact commands you are using at this step?

  • // cmd files
    
    @echo off
    set MODE=%1
    
    if "%MODE%"=="sbl" (
        py.exe .\dfu_flash.py -d am62axx-hw-a -t hsfs -c bin\am62axx-hw-a\hsfs\emmc-flash\dm-linux-rt-am62a7-single-emmc-sbl.cfg
    ) else if "%MODE%"=="spl" (
        py.exe .\dfu_flash.py -d am62axx-hw-a -t hsfs -c bin\am62axx-hw-a\hsfs\emmc-flash\dm-linux-rt-am62a7-single-emmc-spl.cfg
    ) else (
        echo Invalid parameter. Please use 'sbl' or 'spl'.
        exit /b 1
    )
    
    pause
    
    
    // dfu_flash.py
    # Standard modules
    import argparse
    import os
    import logging
    
    # Custom modules
    import src.logger
    from src.flash import dfu_main
    from src.parse import parse_cfg_file, get_command
    from src.helper import dump_dfu_flash_conf, dump_dfu_boot_conf
    from src.constants import BIN_DIR_PATH, FLASH_CFG_FILE_NAME, UENV_TEMPLATE, UENV_GPT_MMC
    
    def main():
        # Define the argument parser
        args_parser = argparse.ArgumentParser()
    
        # Argument to identify the device
        args_parser.add_argument("-d",
                                 "--device",
                                 required=True,
                                 help="Specify the device",)
    
        # Argument to identify the type of the device
        args_parser.add_argument("-t",
                                 "--type",
                                 required=True,
                                 choices=["gp", "hsfs", "hs"],
                                 help="Type of the device",)
    
        # Argument to get the path of the custom configuration file
        args_parser.add_argument("-c",
                                 "--cfg",
                                 help="Path to the flashing configuration file",)
    
        # Argument to reset the board after flashing
        args_parser.add_argument("-r",
                                 "--reset",
                                 action="store_true",
                                 help="Reset the board to the flashed media",)
    
        # Parse the CLI arguments
        args = args_parser.parse_args()
        cli_args = {
            "device": args.device,
            "type"  : args.type,
            "cfg"   : args.cfg,
            "reset" : args.reset
        }
    
        # Validate the CLI arguments
        logging.info("Starting the flashing tool")
        logging.info("Validating the requirements before flashing...")
    
        # Path to the device directory
        DEVICE_PATH = BIN_DIR_PATH / cli_args["device"] / cli_args["type"]
    
        # Check if device path exists
        if not os.path.exists(DEVICE_PATH):
            logging.error(f"The device path {{{DEVICE_PATH}}} does not exist!!!")
            exit(1)
    
        # Path to the flash configuration file
        cfg_file = cli_args["cfg"]
    
        # If custom flash configuration file not given, use the default one
        if not cfg_file:
            cfg_file = DEVICE_PATH / FLASH_CFG_FILE_NAME
    
        if not os.path.exists(cfg_file):
            logging.error(f"The flash configuration file {{{cfg_file}}} does not exist!!!")
            exit(1)
    
        # Path to the DFU boot images
        dfu_tiboot3 = DEVICE_PATH / "tiboot3.bin"
        dfu_tispl   = DEVICE_PATH / "tispl.bin"
        dfu_uboot   = DEVICE_PATH / "u-boot.img"
    
        for path in [dfu_tiboot3, dfu_tispl, dfu_uboot]:
            if not os.path.exists(path):
                logging.error(f"The DFU boot binary {{{path}}} does not exist!!!")
                exit(1)
    
        logging.info("Validated the CLI arguments and the paths to the DFU boot binaries")
        logging.info(f"Parsing the flash configuration file {{{cfg_file}}}...")
            
        # Parse the flash configuration file
        dfu_flash_conf = parse_cfg_file(cfg_file)
    
        if not dfu_flash_conf:
            logging.error("Could not found any images to flash...")
            exit(1)
    
        # Get the DFU command
        command = get_command(dfu_flash_conf, cli_args["reset"])
    
        # Print the DFU flash configuration
        dump_dfu_flash_conf(dfu_flash_conf)
    
        # Path to the U-Boot environment file
        uEnv_path = DEVICE_PATH / "uEnv.txt"
    
        # Write the DFU command to U-Boot Environment file
        with open(uEnv_path, 'w') as f:
            # f.write(UENV_GPT_MMC)
            f.write(UENV_TEMPLATE.format(command))
    
        dfu_boot_conf = {
            "bootloader" : dfu_tiboot3,
            "tispl.bin"  : dfu_tispl,
            "u-boot.img" : dfu_uboot,
            "uEnv.txt"   : uEnv_path,
        }
    
        # Print the DFU boot configuration
        dump_dfu_boot_conf(dfu_boot_conf)
    
        # Start the DFU main function
        dfu_main(dfu_flash_conf, cli_args)
    
    if __name__ == '__main__':
        main()
    
    
    
    

  • This looks correct.

    Instead of flashing, can you try booting the image directly over USB DFU bootmode with the following command.

    dfu-util -a bootloader -D <path to .hs_fs.tiimage>

    If you still do not see any logs, please check the address at which the wkup core is suspended at to confirm if the SBL is at least booting or not.

  • Hi Prashant

    I use USB DFY boot the SBL,it can see the logs and can perform the MMCSD_write operation.

    How do I make sure that SBL is enabled when using eMMC boot?

    In the above answer,the CPU supend address it not found in SBL map, it means the SBL not running?

  • I use USB DFY boot the SBL,it can see the logs and can perform the MMCSD_write operation.

    If it is booting & executing correctly over USB DFU bootmode then there is something wrong with the eMMC flashing or its configurations.

    Can you once try the UART_UNIFLASH from the MCU+ SDK to flash the image & see if it boots?

  • I think we're off topic, not because we can't boot after flashing with USB FDU, but because we can't boot because we flashed the image that adds MMCSD_write functionality.

    Because when I delete the MMCSD_write function, it starts fine using the same flashing method

    I used UART_UNIFLASH to flash before, and it can be started normally, but the image I flashed before did not add MMCSD_write function

  • Hi Prashant,

    Thanks for your support, customer could boot using UART_UNIFLASH, they have tried it before, and also they could boot for the examples you provided.

    This problem is related to the MMCSD_write functionality as Tom mentioned, could you help check why MMCSD_write could affect the booting?

    Many Thanks,

    Kevin

  • Hi Prashant,

    May I know your suggestion what we could try next?

    We have no idea how to do it now, may need your help.

    Thanks,

    Kevin

  • Because when I delete the MMCSD_write function, it starts fine using the same flashing method

    Can you please share the images with this function (supposedly not booting) & without this function (supposedly booting)?

  • Hi Prashant,

    Thanks for your reply.

    For the booting situation (not using MMCSD_write)

    The Uart boot image is shown below.

    The current measured is 0.235A shown below.

    The sbl emmc stage1 tiimage is shown below for booting case.

    https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/791/dm_2D00_am62ax_2D00_sbl_5F00_emmc_5F00_stage1.release.hs_5F00_fs.tiimage_5F00_boot

    For the not booting situation (using MMCSD_write)

    The Uart not boot image is shown below.

    The current measured is only 0.131A shown below.

    The sbl emmc stage1 tiimage is shown below for not booting case.

    https://e2e.ti.com/cfs-file/__key/communityserver-discussions-components-files/791/dm_2D00_am62ax_2D00_sbl_5F00_emmc_5F00_stage1.release.hs_5F00_fs.tiimage_5F00_not_5F00_boot

    And the only difference customer made in their coding between booting case & not booting case is below.

    Thanks for you help, please help provide us with some clue to debug further.

    Many Thanks,

    Kevin

  • For the not booting situation (using MMCSD_write)

    Hi, is the customer modifying the EXT_CSD register in any way before booting this image?

    For booting from eMMC boot0 partition, the BOOT_PARTITION & BOOT_BUS_WIDTH field in the EXT_CSD must be set correctly.

  • Hi Prashant

    Before call the function of MMCSD_write,not modified the EXT_CSD register.

    So when i call the function of MMCSD_write,shall setting BOOT_PARTITION and BOOT_BUS_WIDTH? which function implement setting BOOT_PARTITION and BOOT_BUS_WIDTH in the MMCSD driver?

  • Hi Prashant,

    Thanks for your reply.

    Customer did not modify the EXT_CSD register before calling MMCSD_write.

    Could you help suggest how to set the BOOT_PARTITION and BOOT_BUS_WIDTH in the MMCSD driver correctly?

    Many Thanks,

    Kevin

  • Dear customer,

         Could you please change gMpuRegionConfig  as below to check.  Thanks. 

    - #define CONFIG_MPU_NUM_REGIONS  (9u)

    -#define CONFIG_MPU_NUM_REGIONS  (10u)

    +{
    +.baseAddr = 0xfa00000u,
    +.size = MpuP_RegionSize_2M,
    +.attrs = {
    +.isEnable = 1,
    +.isCacheable = 1,
    +.isBufferable = 1,
    +.isSharable = 0,
    +.isExecuteNever = 0,
    +.tex = 1,
    +.accessPerm = MpuP_AP_ALL_RW,
    +.subregionDisableMask = 0x0u
    +},

    Linjun

  • Hi,

    Closing the thread, as there is no response for long. Feel free to ping back, if you want to continue discussion.

    Regards

    Ashwani