source: rtems/c/src/lib/libbsp/arm/altera-cyclone-v/startup/linkcmds.altcycv_devkit @ ff13e0b

4.115
Last change on this file since ff13e0b was ff13e0b, checked in by Ralf Kirchner <ralf.kirchner@…>, on 04/30/14 at 08:06:10

bsp/altera-cyclone-v: Increase size of nocache region and nocache heap

Increase size of nocache heap in order to be able to move mbufs and clusters of the network driver to uncached RAM

  • Property mode set to 100644
File size: 575 bytes
Line 
1MEMORY {
2   RAM_MMU : ORIGIN = 0x00100000, LENGTH = 16k
3   NOCACHE : ORIGIN = 0x00200000, LENGTH = 3M
4   RAM     : ORIGIN = 0x00500000, LENGTH = 1024M - 1M - 1M - 3M
5}
6
7SECTIONS {
8  .nocache : {
9    bsp_section_nocache_begin = .;
10    *(SORT(.bsp_nocache*))
11    bsp_section_nocache_end = .;
12  } > NOCACHE AT > NOCACHE
13  bsp_section_nocache_size = bsp_section_nocache_end - bsp_section_nocache_begin;
14  bsp_section_nocache_load_begin = LOADADDR (.nocache);
15  bsp_section_nocache_load_end = bsp_section_nocache_load_begin + bsp_section_nocache_size;
16}
17
18INCLUDE linkcmds.altcycv
Note: See TracBrowser for help on using the repository browser.