【问题标题】:Give the priority of the IRAM to a specific source file in C将 IRAM 的优先级赋予 C 中的特定源文件
【发布时间】:2018-12-24 09:15:21
【问题描述】:

我正在寻找一种将 IRAM 的优先级赋予特定源文件并默认让其他源文件使用的方法。

从 Keil uVision 我可以通过进入文件选项来做到这一点:


我将我的项目迁移到 Atollic TrueSTUDIO(使用 CubeMx 生成)并且没有类似的选项。我在链接描述文件 STM32F765NG_FLASH.id 中找到了有关如何设置 RAM 的启动位置及其大小的信息。

/* Specify the memory areas */
MEMORY
{
RAM (xrw)      : ORIGIN = 0x20000000, LENGTH = 512K
FLASH (rx)      : ORIGIN = 0x08000000, LENGTH = 1024K
}

我想可能有一种方法可以修改此文件以指定哪个 .c 文件需要 IRAM 上的优先级,但我不知道在哪里以及如何做到这一点。

我还发现了可以在变量声明中使用的__attribute__。当我使用它时,它会编译,但会破坏代码的某些功能(它可能会覆盖其他数据)。

uint8_t __attribute__((section(".ARM.__at_0x20000000"))) RxSerialDMABuffer[RX_DMA_BUFFER_SIZE] = {0};
uint8_t __attribute__((section(".ARM.__at_0x20001000"))) TxDMABuffer[TX_DMA_BUFFER_SIZE] = {0};

所以我的问题是,在没有 Keil uVision 选项的情况下,如何将特定源文件设置为在所有其他文件之前优先使用 IRAM?


编辑:这是完整的链接描述文件

/*
*****************************************************************************
**

**  File        : stm32_flash.ld
**
**  Abstract    : Linker script for STM32F765NG Device with
**                1024KByte FLASH, 512KByte RAM
**
**                Set heap size, stack size and stack location according
**                to application requirements.
**
**                Set memory bank area and size if external memory is used.
**
**  Target      : STMicroelectronics STM32
**
**  Environment : Atollic TrueSTUDIO(R)
**
**  Distribution: The file is distributed as is, without any warranty
**                of any kind.
**
**  (c)Copyright Atollic AB.
**  You may use this file as-is or modify it according to the needs of your
**  project. This file may only be built (assembled or compiled and linked)
**  using the Atollic TrueSTUDIO(R) product. The use of this file together
**  with other tools than Atollic TrueSTUDIO(R) is not permitted.
**
*****************************************************************************
*/

/* Entry Point */
ENTRY(Reset_Handler)

/* Highest address of the user mode stack */
_estack = 0x20080000;    /* end of RAM */
/* Generate a link error if heap and stack don't fit into RAM */
_Min_Heap_Size = 0x00002200;      /* required amount of heap  */
_Min_Stack_Size = 0x00001200; /* required amount of stack */

/* Specify the memory areas */
MEMORY
{
RAM (xrw)      : ORIGIN = 0x20000000, LENGTH = 512K
FLASH (rx)      : ORIGIN = 0x08000000, LENGTH = 1024K
}

/* Define output sections */
SECTIONS
{
  /* The startup code goes first into FLASH */
  .isr_vector :
  {
    . = ALIGN(4);
    KEEP(*(.isr_vector)) /* Startup code */
    . = ALIGN(4);
  } >FLASH

  /* The program code and other data goes into FLASH */
  .text :
  {
    . = ALIGN(4);
    *(.text)           /* .text sections (code) */
    *(.text*)          /* .text* sections (code) */
    *(.glue_7)         /* glue arm to thumb code */
    *(.glue_7t)        /* glue thumb to arm code */
    *(.eh_frame)

    KEEP (*(.init))
    KEEP (*(.fini))

    . = ALIGN(4);
    _etext = .;        /* define a global symbols at end of code */
  } >FLASH

  /* Constant data goes into FLASH */
  .rodata :
  {
    . = ALIGN(4);
    *(.rodata)         /* .rodata sections (constants, strings, etc.) */
    *(.rodata*)        /* .rodata* sections (constants, strings, etc.) */
    . = ALIGN(4);
  } >FLASH

  .ARM.extab   : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH
  .ARM : {
    __exidx_start = .;
    *(.ARM.exidx*)
    __exidx_end = .;
  } >FLASH

  .preinit_array     :
  {
    PROVIDE_HIDDEN (__preinit_array_start = .);
    KEEP (*(.preinit_array*))
    PROVIDE_HIDDEN (__preinit_array_end = .);
  } >FLASH
  .init_array :
  {
    PROVIDE_HIDDEN (__init_array_start = .);
    KEEP (*(SORT(.init_array.*)))
    KEEP (*(.init_array*))
    PROVIDE_HIDDEN (__init_array_end = .);
  } >FLASH
  .fini_array :
  {
    PROVIDE_HIDDEN (__fini_array_start = .);
    KEEP (*(SORT(.fini_array.*)))
    KEEP (*(.fini_array*))
    PROVIDE_HIDDEN (__fini_array_end = .);
  } >FLASH

  /* used by the startup to initialize data */
  _sidata = LOADADDR(.data);

  /* Initialized data sections goes into RAM, load LMA copy after code */
  .data : 
  {
    . = ALIGN(4);
    _sdata = .;        /* create a global symbol at data start */
    *(.data)           /* .data sections */
    *(.data*)          /* .data* sections */

    . = ALIGN(4);
    _edata = .;        /* define a global symbol at data end */
  } >RAM AT> FLASH


  /* Uninitialized data section */
  . = ALIGN(4);
  .bss :
  {
    /* This is used by the startup in order to initialize the .bss secion */
    _sbss = .;         /* define a global symbol at bss start */
    __bss_start__ = _sbss;
    *(.bss)
    *(.bss*)
    *(COMMON)

    . = ALIGN(4);
    _ebss = .;         /* define a global symbol at bss end */
    __bss_end__ = _ebss;
  } >RAM

  /* User_heap_stack section, used to check that there is enough RAM left */
  ._user_heap_stack :
  {
    . = ALIGN(4);
    PROVIDE ( end = . );
    PROVIDE ( _end = . );
    . = . + _Min_Heap_Size;
    . = . + _Min_Stack_Size;
    . = ALIGN(4);
  } >RAM



  /* Remove information from the standard libraries */
  /DISCARD/ :
  {
    libc.a ( * )
    libm.a ( * )
    libgcc.a ( * )
  }

  .ARM.attributes 0 : { *(.ARM.attributes) }
}

【问题讨论】:

  • 你需要学习链接脚本文件
  • 从根本上说,您创建额外的部分 > RAM / > RAM AT>FLASH 并将 Buffers.o 放入其中 - 就像我的回答一样,除了您的链接器脚本的现有样式更多的是 GNU 而不像 Keil。您的选择,我的回答可以适应这种风格 - 如果不清楚如何做到这一点,请评论我的回答 - 尽管我可能没有时间更新它。
  • 这听起来像是一个愚蠢的问题,但为什么要在编译时优先考虑 RAM?让我很感兴趣。
  • @EdKing 这些缓冲区是 DMA,每秒从捕获者那里接收大量信息。我想确保它们在内部 RAM 中,而不是在外部 RAM 中,以便我可以更快地访问它们。

标签: c memory embedded ram truestudio


【解决方案1】:

为了将 RAM 的优先级分配给我的缓冲区,我首先将它们加载到 RAM 中。

通过使用文件名,链接器报告了多个定义的错误。因此,我像在我的问题中所做的那样,在缓冲区中添加了一个部分属性,但是给出了一个部分名称而不是地址。

uint8_t RxSerialDMABuffer[RX_DMA_BUFFER_SIZE] __attribute__ ((section ("BUFFERS"))) = {0};
uint8_t TxDMABuffer[TX_DMA_BUFFER_SIZE] __attribute__ ((section ("BUFFERS"))) = {0};

在此之后,我在 RAM 中添加了新部分,位于其他未初始化数据之前。

  /* Uninitialized buffers section */
  .BUFFERS :
  {
    * (.BUFFERS)
  } >RAM

  /* Uninitialized data section */
  . = ALIGN(4);
  .bss :
  {
    /* This is used by the startup in order to initialize the .bss secion */
    _sbss = .;         /* define a global symbol at bss start */
    __bss_start__ = _sbss;
    *(.bss)
    *(.bss*)
    *(COMMON)

    . = ALIGN(4);
    _ebss = .;         /* define a global symbol at bss end */
    __bss_end__ = _ebss;
  } >RAM

然后我进入链接器地址映射文件,我看到所有缓冲区的地址对应于我的 IRAM2 地址范围,以及所有其他未初始化数据的下一个地址在 IRAM2 中,然后是 IRAM1。

【讨论】:

    【解决方案2】:

    TrueSTUDIO 使用 GNU 工具链,所以 GNU linker documentation 适用。特别是在处理section placement的部分的情况下。

    类似的东西(注意以下是一个片段;您真正的链接器脚本将包含更多内容或可能以不同的方式组织):

    MEMORY
    {
        ...
    
        IRAM1 (xrw)       : ORIGIN = 0x20020000, LENGTH = 384K
        IRAM2 (xrw)       : ORIGIN = 0x20000000, LENGTH = 128K
    }
    
    SECTIONS
    {
       DATA_IRAM1 :
       {
          * (.data)
    
       } > IRAM1 AT > FLASH
    
       BSS_IRAM1 :
       {
          * (.bss)
    
       } > IRAM1
    
       DATA_IRAM2 :
       {
          Buffers.o (.data) /* locate Buffers initialised data here */ 
          * (.data)
    
       } > IRAM2 AT > FLASH
    
       BSS_IRAM2 :
       {
          Buffers.o (.bss) /* locate Buffers zero-int data here */ 
          * (.bss)  
    
       } > IRAM2
    }
    

    通配符* (.bss) 允许任何对象模块的BSS 位于指定的部分,而Buffers.o (.bss) 使Buffers.o BSS 的位置显式。 .data 也是如此。

    如果您查看 Keil 生成的链接器脚本,您会发现它直接受到 GUI 对话框中的设置的影响,并且会看到类似的指令 - 但是 ARM 链接器使用的语法与我认为的 GNU 略有不同,但它仍然可能会有所帮助,看看它如何组织您的特定部分的内存和位置 - 您发布的片段似乎有些通用,并且没有将 IRAM 分成其专业部分,例如 TCM。

    【讨论】:

    • 编译代码时出现错误:找不到Buffers.o。为了确定,我复制/粘贴了文件名。链接描述文件位于根目录,文件位于 /Debug/Src
    • @MasterRem ;您可能需要添加路径(相对);如果您的目标代码不是在单独的目录中生成的。
    • 我在 C 链接器的库搜索路径中添加了 Buffers.o 的路径,它找到了该文件。谢谢。
    • 它不对问题的第二部分进行排序。如果该区域已满,如何确定它的优先级添加如何将数据放置在其他区域中。
    • @P__J__ :这是真的 - 链接会失败。链接描述文件保留在应该设置的位置。我确信有一个答案,我不确定我是那个可以给出答案的人。我对 Keil 链接器比对 GNU 链接器更熟悉,希望 OP 将指向正确的方向 - 我只是在阅读文档,OP 也可以这样做。
    猜你喜欢
    • 2018-09-12
    • 1970-01-01
    • 1970-01-01
    • 2022-07-12
    • 2020-04-09
    • 2012-08-28
    • 1970-01-01
    • 1970-01-01
    • 2020-03-22
    相关资源
    最近更新 更多