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.

AM263P4-Q1: SYSCONFIG Feature Request : Put Linker Script Memory Regions in ORIGIN Order

Part Number: AM263P4-Q1

Hello,

Please ouput the memory regions in address order.

In the following simple example, I've added region IDENTIFICATION but it's produced after MSRAM_HSMRT:

    R5F_VECS   : ORIGIN = 0x0 , LENGTH = 0x100 
    R5F_TCMA   : ORIGIN = 0x100 , LENGTH = 0x7F00 
    R5F_TCMB0   : ORIGIN = 0x80000 , LENGTH = 0x8000 
    MSRAM_VECS   : ORIGIN = 0x70002000 , LENGTH = 0x100 
    MSRAM_0   : ORIGIN = 0x70002100 , LENGTH = 0x3DE80 
    MSRAM_HSMRT   : ORIGIN = 0x70040000 , LENGTH = 0x40000 
    IDENTIFICATION  (IR) : ORIGIN = 0x7003FF80 , LENGTH = 0x80 
    MAILBOX_HSM   : ORIGIN = 0x44000000 , LENGTH = 0x3CE 
    MAILBOX_R5F   : ORIGIN = 0x44000400 , LENGTH = 0x3CE 
    BOOT_SECTOR_INFO   : ORIGIN = 0x80080000 , LENGTH = 0x1000 LAST (__TI_SBL_FLASH_BOOTINFO_SECTOR_START)
    FLASH_BOOTINFO_SECTOR   : ORIGIN = 0x60080000 , LENGTH = 0x1000 

 

 It would be easier to follow if it was...

    R5F_VECS   : ORIGIN = 0x0 , LENGTH = 0x100 
    R5F_TCMA   : ORIGIN = 0x100 , LENGTH = 0x7F00 
    R5F_TCMB0   : ORIGIN = 0x80000 , LENGTH = 0x8000 
MAILBOX_HSM : ORIGIN = 0x44000000 , LENGTH = 0x3CE
MAILBOX_R5F : ORIGIN = 0x44000400 , LENGTH = 0x3CE FLASH_BOOTINFO_SECTOR : ORIGIN = 0x60080000 , LENGTH = 0x1000
MSRAM_VECS : ORIGIN = 0x70002000 , LENGTH = 0x100 MSRAM_0 : ORIGIN = 0x70002100 , LENGTH = 0x3DE80 IDENTIFICATION (IR) : ORIGIN = 0x7003FF80 , LENGTH = 0x80 MSRAM_HSMRT : ORIGIN = 0x70040000 , LENGTH = 0x40000 BOOT_SECTOR_INFO : ORIGIN = 0x80080000 , LENGTH = 0x1000 LAST (__TI_SBL_FLASH_BOOTINFO_SECTOR_START)

Thank you.