forked from xuos/xiuos
244 lines
5.9 KiB
Plaintext
244 lines
5.9 KiB
Plaintext
/******************************************************************************
|
|
* Copyright (C) 2022, Xiaohua Semiconductor Co., Ltd. All rights reserved.
|
|
*
|
|
* This software component is licensed by XHSC under BSD 3-Clause license
|
|
* (the "License"); You may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at:
|
|
* opensource.org/licenses/BSD-3-Clause
|
|
*
|
|
*/
|
|
/*****************************************************************************/
|
|
/* File HC32F4A0xI.ld */
|
|
/* Abstract Linker script for HC32F4A0 Device with */
|
|
/* 2MByte FLASH, 516KByte RAM */
|
|
/* Version V1.0 */
|
|
/* Date 2022-04-28 */
|
|
/*****************************************************************************/
|
|
|
|
/**
|
|
* @file link.lds
|
|
* @brief hc32f4a0 Linker script
|
|
* @version 2.0
|
|
* @author AIIT XUOS Lab
|
|
* @date 2022-09-08
|
|
*/
|
|
|
|
/*************************************************
|
|
File name: link.lds
|
|
Description: hc32f4a0 Linker script
|
|
Others: take HC32F4A0xI.ld for references
|
|
History:
|
|
1. Date: 2022-09-08
|
|
Author: AIIT XUOS Lab
|
|
Modification:
|
|
1. add shell cmd table and g_service_table
|
|
*************************************************/
|
|
|
|
/* Custom defines, according to section 7.7 of the user manual.
|
|
Take OTP sector 16 for example. */
|
|
__OTP_DATA_START = 0x03000000;
|
|
__OTP_DATA_SIZE = 2048;
|
|
__OTP_LOCK_START = 0x03001840;
|
|
__OTP_LOCK_SIZE = 4;
|
|
|
|
/* Use contiguous memory regions for simple. */
|
|
MEMORY
|
|
{
|
|
FLASH (rx): ORIGIN = 0x00000000, LENGTH = 2M
|
|
OTP_DATA (rx): ORIGIN = __OTP_DATA_START, LENGTH = __OTP_DATA_SIZE
|
|
OTP_LOCK (rx): ORIGIN = __OTP_LOCK_START, LENGTH = __OTP_LOCK_SIZE
|
|
RAM (rwx): ORIGIN = 0x1FFE0000, LENGTH = 512K
|
|
RAMB (rwx): ORIGIN = 0x200F0000, LENGTH = 4K
|
|
}
|
|
|
|
ENTRY(Reset_Handler)
|
|
|
|
SECTIONS
|
|
{
|
|
.interrupts :
|
|
{
|
|
. = ALIGN(4);
|
|
KEEP(*(.isr_vector))
|
|
. = ALIGN(4);
|
|
} >FLASH
|
|
|
|
.icg_sec 0x00000400 :
|
|
{
|
|
KEEP(*(.icg_sec))
|
|
} >FLASH
|
|
|
|
.text :
|
|
{
|
|
. = ALIGN(4);
|
|
_stext = .;
|
|
KEEP(*(.isr_vector)) /* Startup code */
|
|
. = ALIGN(4);
|
|
*(.text) /* remaining code */
|
|
*(.text.*) /* remaining code */
|
|
*(.rodata) /* read-only data (constants) */
|
|
*(.rodata*)
|
|
*(.glue_7)
|
|
*(.glue_7t)
|
|
|
|
/* section information for shell */
|
|
. = ALIGN(4);
|
|
_shell_command_start = .;
|
|
KEEP (*(shellCommand))
|
|
_shell_command_end = .;
|
|
. = ALIGN(4);
|
|
|
|
PROVIDE(__ctors_start__ = .);
|
|
KEEP (*(SORT(.init_array.*)))
|
|
KEEP (*(.init_array))
|
|
PROVIDE(__ctors_end__ = .);
|
|
|
|
. = ALIGN(4);
|
|
|
|
__isrtbl_idx_start = .;
|
|
KEEP(*(.isrtbl.idx))
|
|
__isrtbl_start = .;
|
|
KEEP(*(.isrtbl))
|
|
__isrtbl_end = .;
|
|
. = ALIGN(4);
|
|
|
|
PROVIDE(g_service_table_start = ABSOLUTE(.));
|
|
KEEP(*(.g_service_table))
|
|
PROVIDE(g_service_table_end = ABSOLUTE(.));
|
|
|
|
. = ALIGN(4);
|
|
_etext = .;
|
|
_exit = .;
|
|
} >FLASH
|
|
|
|
.rodata :
|
|
{
|
|
. = ALIGN(4);
|
|
*(.rodata)
|
|
*(.rodata*)
|
|
. = ALIGN(4);
|
|
} >FLASH
|
|
|
|
__exidx_start = .;
|
|
.ARM.exidx :
|
|
{
|
|
*(.ARM.exidx* .gnu.linkonce.armexidx.*)
|
|
} >FLASH
|
|
__exidx_end = .;
|
|
|
|
.preinit_array :
|
|
{
|
|
. = ALIGN(4);
|
|
/* preinit data */
|
|
PROVIDE_HIDDEN (__preinit_array_start = .);
|
|
KEEP(*(.preinit_array))
|
|
PROVIDE_HIDDEN (__preinit_array_end = .);
|
|
. = ALIGN(4);
|
|
} >FLASH
|
|
|
|
.init_array :
|
|
{
|
|
. = ALIGN(4);
|
|
/* init data */
|
|
PROVIDE_HIDDEN (__init_array_start = .);
|
|
KEEP(*(SORT(.init_array.*)))
|
|
KEEP(*(.init_array))
|
|
PROVIDE_HIDDEN (__init_array_end = .);
|
|
. = ALIGN(4);
|
|
} >FLASH
|
|
|
|
.fini_array :
|
|
{
|
|
. = ALIGN(4);
|
|
/* finit data */
|
|
PROVIDE_HIDDEN (__fini_array_start = .);
|
|
KEEP(*(SORT(.fini_array.*)))
|
|
KEEP(*(.fini_array))
|
|
PROVIDE_HIDDEN (__fini_array_end = .);
|
|
. = ALIGN(4);
|
|
} >FLASH
|
|
|
|
__etext = ALIGN(4);
|
|
|
|
.otp_data_sec :
|
|
{
|
|
KEEP(*(.otp_data_sec))
|
|
} >OTP_DATA
|
|
|
|
.otp_lock_sec :
|
|
{
|
|
KEEP(*(.otp_lock_sec))
|
|
} >OTP_LOCK
|
|
|
|
.data : AT (__etext)
|
|
{
|
|
. = ALIGN(4);
|
|
__data_start__ = .;
|
|
*(.data)
|
|
*(.data*)
|
|
. = ALIGN(4);
|
|
*(.ramfunc)
|
|
*(.ramfunc*)
|
|
. = ALIGN(4);
|
|
__data_end__ = .;
|
|
} >RAM
|
|
|
|
__etext_ramb = __etext + ALIGN (SIZEOF(.data), 4);
|
|
.ramb_data : AT (__etext_ramb)
|
|
{
|
|
. = ALIGN(4);
|
|
__data_start_ramb__ = .;
|
|
*(.ramb_data)
|
|
*(.ramb_data*)
|
|
. = ALIGN(4);
|
|
__data_end_ramb__ = .;
|
|
} >RAMB
|
|
|
|
__bss_start = .;
|
|
.bss :
|
|
{
|
|
. = ALIGN(4);
|
|
_sbss = .;
|
|
__bss_start__ = _sbss;
|
|
*(.bss)
|
|
*(.bss*)
|
|
*(COMMON)
|
|
. = ALIGN(4);
|
|
_ebss = .;
|
|
__bss_end__ = _ebss;
|
|
} >RAM
|
|
__bss_end = .;
|
|
|
|
.ramb_bss :
|
|
{
|
|
. = ALIGN(4);
|
|
__bss_start_ramb__ = .;
|
|
*(.ramb_bss)
|
|
*(.ramb_bss*)
|
|
. = ALIGN(4);
|
|
__bss_end_ramb__ = .;
|
|
} >RAMB
|
|
|
|
.heap_stack (COPY) :
|
|
{
|
|
. = ALIGN(8);
|
|
__end__ = .;
|
|
PROVIDE(end = .);
|
|
PROVIDE(_end = .);
|
|
|
|
__StackLimit = .;
|
|
*(.stack*)
|
|
. = ALIGN(8);
|
|
__StackTop = .;
|
|
|
|
__heap_start = .;
|
|
} >RAM
|
|
|
|
.ARM.attributes 0 : { *(.ARM.attributes) }
|
|
|
|
PROVIDE(_stack = __StackTop);
|
|
PROVIDE(_Min_Stack_Size = __StackTop - __StackLimit);
|
|
|
|
__RamEnd = ORIGIN(RAM) + LENGTH(RAM);
|
|
ASSERT(__StackTop <= __RamEnd, "region RAM overflowed with stack")
|
|
}
|