rt-thread-official/bsp/k210/link.lds

191 lines
4.3 KiB
Plaintext
Raw Normal View History

2018-12-18 21:01:03 +08:00
/*
2023-01-09 10:16:47 +08:00
* Copyright (c) 2006-2023, RT-Thread Development Team
2018-12-18 21:01:03 +08:00
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
*/
INCLUDE "link_stacksize.lds"
/*
* The OUTPUT_ARCH command specifies the machine architecture where the
* argument is one of the names used in the Kendryte library.
*/
OUTPUT_ARCH( "riscv" )
MEMORY
{
/* 6M SRAM */
SRAM : ORIGIN = 0x80000000, LENGTH = 0x600000
}
ENTRY(_start)
SECTIONS
{
. = 0x80000000 ;
/* __STACKSIZE__ = 4096; */
.start :
{
*(.start);
} > SRAM
2019-03-22 09:52:02 +08:00
. = ALIGN(8);
2018-12-18 21:01:03 +08:00
2023-01-09 10:16:47 +08:00
.text :
2018-12-18 21:01:03 +08:00
{
*(.text) /* remaining code */
*(.text.*) /* remaining code */
*(.rodata) /* read-only data (constants) */
*(.rodata*)
*(.glue_7)
*(.glue_7t)
*(.gnu.linkonce.t*)
2021-08-23 16:02:29 +08:00
. = ALIGN(8);
PROVIDE(__ctors_start__ = .);
/* old GCC version uses .ctors */
KEEP(*(SORT(.ctors.*)))
KEEP(*(.ctors))
/* new GCC version uses .init_array */
KEEP (*(SORT(.init_array.*)))
KEEP (*(.init_array))
PROVIDE(__ctors_end__ = .);
2023-01-09 10:16:47 +08:00
2018-12-18 21:01:03 +08:00
/* section information for finsh shell */
2019-03-22 09:52:02 +08:00
. = ALIGN(8);
2018-12-18 21:01:03 +08:00
__fsymtab_start = .;
KEEP(*(FSymTab))
__fsymtab_end = .;
2019-03-22 09:52:02 +08:00
. = ALIGN(8);
2018-12-18 21:01:03 +08:00
__vsymtab_start = .;
KEEP(*(VSymTab))
__vsymtab_end = .;
2019-03-22 09:52:02 +08:00
. = ALIGN(8);
2018-12-18 21:01:03 +08:00
/* section information for initial. */
2019-03-22 09:52:02 +08:00
. = ALIGN(8);
2018-12-18 21:01:03 +08:00
__rt_init_start = .;
KEEP(*(SORT(.rti_fn*)))
__rt_init_end = .;
2019-03-22 09:52:02 +08:00
. = ALIGN(8);
2018-12-18 21:01:03 +08:00
2021-08-23 16:02:29 +08:00
__spi_func_start = .;
KEEP(*(.spi_call))
__spi_func_end = .;
. = ALIGN(8);
2023-01-09 10:16:47 +08:00
2019-03-22 09:52:02 +08:00
__rt_utest_tc_tab_start = .;
KEEP(*(UtestTcTab))
__rt_utest_tc_tab_end = .;
. = ALIGN(8);
2018-12-18 21:01:03 +08:00
_etext = .;
} > SRAM
2023-01-09 10:16:47 +08:00
.eh_frame_hdr :
{
*(.eh_frame_hdr)
2018-12-18 21:01:03 +08:00
*(.eh_frame_entry)
} > SRAM
.eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) } > SRAM
2019-03-22 09:52:02 +08:00
. = ALIGN(8);
2018-12-18 21:01:03 +08:00
2023-01-09 10:16:47 +08:00
.data :
2018-12-18 21:01:03 +08:00
{
*(.data)
*(.data.*)
2023-01-09 10:16:47 +08:00
2018-12-18 21:01:03 +08:00
*(.data1)
*(.data1.*)
. = ALIGN(8);
PROVIDE( __global_pointer$ = . + 0x800 );
*(.sdata)
*(.sdata.*)
2021-08-23 16:02:29 +08:00
PROVIDE(__dtors_start__ = .);
KEEP(*(SORT(.dtors.*)))
KEEP(*(.dtors))
PROVIDE(__dtors_end__ = .);
2023-01-09 10:16:47 +08:00
2018-12-18 21:01:03 +08:00
} > SRAM
/* stack for dual core */
.stack :
{
. = ALIGN(64);
__stack_start__ = .;
. += __STACKSIZE__;
__stack_cpu0 = .;
[libcpu][riscv]整合libcpu/riscv中的移植文件 提供一份公共代码于common (#6941) 整合libcpu/riscv中的移植文件 提供一份公共代码于common 在提交本pr时,除hpmicro的内核,rv32内核bsp已完成去除大部分的冗余,大部分代码采用common中的实现。本pr的作用是进一步统一common中的文件,从而提供一份公用代码,新移植的RV32内核的BSP可以全部使用common代码。 - 在common中提供一份公用文件:interrupt_gcc.S - 修改原有的文件,将原有的中断中上下文切换代码替换为interrupt_gcc.S - 基于上述修改,修改仓库中risc-v内核的BSP与移植相关的部分 (主要包含中断入口函数 中断栈等) - 在common中提供一份公用文件:trap_common.c;提供统一中断入口函数,中断入口函数初始化,中断入口注册等函数,并完善异常时的信息输出 - 在common中提供一份公用文件:rt_hw_stack_frame.h;将栈帧结构体剥离,供用户使用 - 在上述工作完成后,在上述工作的基础上测试仓库中risc-v内核的BSP - 完善函数中的命名,完善中断栈的获取 - 提供一份详细的基于现有common文件的移植指南 #### 在什么测试环境下测试通过 - 1.CH32V307V-R1-R0 - 2.CH32V208W-R0-1V4 - 3.HPM6750EVKMINI - 4.GD32VF103V-EVAL - 5.qemu(CORE-V-MCU ) > 与上述开发板使用同样芯片的BSP均测试通过 在CH32V307V-R1-R0与HPM6750EVKMINI上基于现有移植文件进行多线程复杂场景下的长时间测试,测试过程系统运行正常。
2023-03-01 14:32:43 +08:00
PROVIDE( __rt_rvstack = .);
2018-12-18 21:01:03 +08:00
. += __STACKSIZE__;
__stack_cpu1 = .;
} > SRAM
2023-01-09 10:16:47 +08:00
.sbss :
2018-12-18 21:01:03 +08:00
{
__bss_start = .;
*(.sbss)
*(.sbss.*)
*(.dynsbss)
*(.scommon)
} > SRAM
.bss :
{
*(.bss)
*(.bss.*)
*(.dynbss)
*(COMMON)
__bss_end = .;
} > SRAM
_end = .;
/* Stabs debugging sections. */
.stab 0 : { *(.stab) }
.stabstr 0 : { *(.stabstr) }
.stab.excl 0 : { *(.stab.excl) }
.stab.exclstr 0 : { *(.stab.exclstr) }
.stab.index 0 : { *(.stab.index) }
.stab.indexstr 0 : { *(.stab.indexstr) }
.comment 0 : { *(.comment) }
/* DWARF debug sections.
* Symbols in the DWARF debugging sections are relative to the beginning
* of the section so we begin them at 0. */
/* DWARF 1 */
.debug 0 : { *(.debug) }
.line 0 : { *(.line) }
/* GNU DWARF 1 extensions */
.debug_srcinfo 0 : { *(.debug_srcinfo) }
.debug_sfnames 0 : { *(.debug_sfnames) }
/* DWARF 1.1 and DWARF 2 */
.debug_aranges 0 : { *(.debug_aranges) }
.debug_pubnames 0 : { *(.debug_pubnames) }
/* DWARF 2 */
.debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
.debug_abbrev 0 : { *(.debug_abbrev) }
.debug_line 0 : { *(.debug_line) }
.debug_frame 0 : { *(.debug_frame) }
.debug_str 0 : { *(.debug_str) }
.debug_loc 0 : { *(.debug_loc) }
.debug_macinfo 0 : { *(.debug_macinfo) }
/* SGI/MIPS DWARF 2 extensions */
.debug_weaknames 0 : { *(.debug_weaknames) }
.debug_funcnames 0 : { *(.debug_funcnames) }
.debug_typenames 0 : { *(.debug_typenames) }
.debug_varnames 0 : { *(.debug_varnames) }
}