Changeset bc820946 in rtems
- Timestamp:
- 10/08/15 11:29:56 (7 years ago)
- Branches:
- 5, master
- Children:
- cf8e033
- Parents:
- 707ecbe
- git-author:
- Sebastian Huber <sebastian.huber@…> (10/08/15 11:29:56)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (10/08/15 11:34:40)
- Location:
- c/src/lib/libbsp
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/arm/altera-cyclone-v/startup/bspstart.c
r707ecbe rbc820946 1 1 /* 2 * Copyright (c) 2013-201 4embedded brains GmbH. All rights reserved.2 * Copyright (c) 2013-2015 embedded brains GmbH. All rights reserved. 3 3 * 4 4 * embedded brains GmbH … … 23 23 bsp_interrupt_initialize(); 24 24 rtems_cache_coherent_add_area( 25 bsp_ nocache_heap_begin,26 (uintptr_t) bsp_ nocache_heap_size25 bsp_section_nocacheheap_begin, 26 (uintptr_t) bsp_section_nocacheheap_size 27 27 ); 28 28 } -
c/src/lib/libbsp/arm/shared/include/linker-symbols.h
r707ecbe rbc820946 8 8 9 9 /* 10 * Copyright (c) 2008-201 4embedded brains GmbH. All rights reserved.10 * Copyright (c) 2008-2015 embedded brains GmbH. All rights reserved. 11 11 * 12 12 * embedded brains GmbH … … 120 120 LINKER_SYMBOL(bsp_section_nocache_load_end) 121 121 122 LINKER_SYMBOL(bsp_section_nocacheheap_begin) 123 LINKER_SYMBOL(bsp_section_nocacheheap_end) 124 LINKER_SYMBOL(bsp_section_nocacheheap_size) 125 122 126 LINKER_SYMBOL(bsp_vector_table_begin) 123 127 LINKER_SYMBOL(bsp_vector_table_end) … … 130 134 LINKER_SYMBOL(bsp_translation_table_base) 131 135 LINKER_SYMBOL(bsp_translation_table_end) 132 133 LINKER_SYMBOL(bsp_nocache_heap_begin)134 LINKER_SYMBOL(bsp_nocache_heap_end)135 LINKER_SYMBOL(bsp_nocache_heap_size)136 136 137 137 #define BSP_FAST_TEXT_SECTION __attribute__((section(".bsp_fast_text"))) -
c/src/lib/libbsp/arm/shared/startup/linkcmds.base
r707ecbe rbc820946 8 8 9 9 /* 10 * Copyright (c) 2008-201 4embedded brains GmbH. All rights reserved.10 * Copyright (c) 2008-2015 embedded brains GmbH. All rights reserved. 11 11 * 12 12 * embedded brains GmbH 13 * Obere Lagerstr. 3013 * Dornierstr. 4 14 14 * 82178 Puchheim 15 15 * Germany … … 401 401 bsp_section_nocache_begin = .; 402 402 *(SORT(.bsp_nocache*)) 403 bsp_nocache_heap_begin = .;404 . += ORIGIN (REGION_NOCACHE) + LENGTH (REGION_NOCACHE) - ABSOLUTE (.);405 bsp_nocache_heap_end = .;406 403 bsp_section_nocache_end = .; 407 404 } > REGION_NOCACHE AT > REGION_NOCACHE_LOAD 408 bsp_nocache_heap_size = bsp_nocache_heap_end - bsp_nocache_heap_begin;409 405 bsp_section_nocache_size = bsp_section_nocache_end - bsp_section_nocache_begin; 410 406 bsp_section_nocache_load_begin = LOADADDR (.nocache); 411 407 bsp_section_nocache_load_end = bsp_section_nocache_load_begin + bsp_section_nocache_size; 408 409 .nocacheheap (NOLOAD) : ALIGN_WITH_INPUT { 410 bsp_section_nocacheheap_begin = .; 411 . += ORIGIN (REGION_NOCACHE) + LENGTH (REGION_NOCACHE) - ABSOLUTE (.); 412 bsp_section_nocacheheap_end = .; 413 } > REGION_NOCACHE AT > REGION_NOCACHE 414 bsp_section_nocacheheap_size = bsp_section_nocacheheap_end - bsp_section_nocacheheap_begin; 412 415 413 416 /* FIXME */ -
c/src/lib/libbsp/arm/xilinx-zynq/startup/bspstart.c
r707ecbe rbc820946 1 1 /* 2 * Copyright (c) 2013-201 4embedded brains GmbH. All rights reserved.2 * Copyright (c) 2013-2015 embedded brains GmbH. All rights reserved. 3 3 * 4 4 * embedded brains GmbH … … 29 29 bsp_interrupt_initialize(); 30 30 rtems_cache_coherent_add_area( 31 bsp_ nocache_heap_begin,32 (uintptr_t) bsp_ nocache_heap_size31 bsp_section_nocacheheap_begin, 32 (uintptr_t) bsp_section_nocacheheap_size 33 33 ); 34 34 } -
c/src/lib/libbsp/powerpc/shared/include/linker-symbols.h
r707ecbe rbc820946 8 8 9 9 /* 10 * Copyright (c) 2010-201 3embedded brains GmbH. All rights reserved.10 * Copyright (c) 2010-2015 embedded brains GmbH. All rights reserved. 11 11 * 12 12 * embedded brains GmbH 13 * Do nrierstr. 413 * Dornierstr. 4 14 14 * 82178 Puchheim 15 15 * Germany … … 100 100 LINKER_SYMBOL(bsp_section_nocache_load_end) 101 101 102 LINKER_SYMBOL(bsp_section_nocacheheap_begin) 103 LINKER_SYMBOL(bsp_section_nocacheheap_end) 104 LINKER_SYMBOL(bsp_section_nocacheheap_size) 105 102 106 LINKER_SYMBOL(bsp_section_nvram_begin) 103 107 LINKER_SYMBOL(bsp_section_nvram_end) -
c/src/lib/libbsp/powerpc/shared/startup/linkcmds.base
r707ecbe rbc820946 8 8 9 9 /* 10 * Copyright (c) 2011-201 3embedded brains GmbH. All rights reserved.10 * Copyright (c) 2011-2015 embedded brains GmbH. All rights reserved. 11 11 * 12 12 * embedded brains GmbH 13 * Obere Lagerstr. 3013 * Dornierstr. 4 14 14 * 82178 Puchheim 15 15 * Germany … … 343 343 bsp_section_nocache_load_end = bsp_section_nocache_load_begin + bsp_section_nocache_size; 344 344 345 .nocacheheap (NOLOAD) : ALIGN_WITH_INPUT { 346 bsp_section_nocacheheap_begin = .; 347 . += ORIGIN (REGION_NOCACHE) + LENGTH (REGION_NOCACHE) - ABSOLUTE (.); 348 bsp_section_nocacheheap_end = .; 349 } > REGION_NOCACHE AT > REGION_NOCACHE 350 bsp_section_nocacheheap_size = bsp_section_nocacheheap_end - bsp_section_nocacheheap_begin; 351 345 352 .nvram (NOLOAD) : ALIGN_WITH_INPUT { 346 353 bsp_section_nvram_begin = .; 347 354 *(SORT(.bsp_nvram*)) 348 355 bsp_section_nvram_end = .; 349 } > REGION_NVRAM 356 } > REGION_NVRAM AT > REGION_NVRAM 350 357 bsp_section_nvram_size = bsp_section_nvram_end - bsp_section_nvram_begin; 351 358
Note: See TracChangeset
for help on using the changeset viewer.