From c47e486d51eca389b13e8fd1b0cd8ccb73db72f9 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 19 Sep 2008 21:14:05 +0000 Subject: 2008-09-19 Joel Sherrill * shared/bspgetworkarea.c: Removed. --- c/src/lib/libbsp/arm/shared/bspgetworkarea.c | 43 ---------------------------- 1 file changed, 43 deletions(-) delete mode 100644 c/src/lib/libbsp/arm/shared/bspgetworkarea.c (limited to 'c/src/lib/libbsp/arm/shared/bspgetworkarea.c') diff --git a/c/src/lib/libbsp/arm/shared/bspgetworkarea.c b/c/src/lib/libbsp/arm/shared/bspgetworkarea.c deleted file mode 100644 index d8f4be7095..0000000000 --- a/c/src/lib/libbsp/arm/shared/bspgetworkarea.c +++ /dev/null @@ -1,43 +0,0 @@ -/* - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.com/license/LICENSE. - * - * $Id$ - */ - -#include -#include -#include - -extern void *_sdram_size; -extern void *_sdram_base; -extern void *_bss_free_start; - -/* - * This method returns the base address and size of the area which - * is to be allocated between the RTEMS Workspace and the C Program - * Heap. - */ -void bsp_get_work_area( - void **work_area_start, - size_t *work_area_size, - void **heap_start, - size_t *heap_size -) -{ - uintptr_t size; - - /* - * Old code had hard-coded heap size of 0x20000 and a comment indicating - * something about the undefined symbol MEM_NOCACHE_SIZE. - */ - size = (uintptr_t)&_sdram_base + (uintptr_t)&_sdram_size - - (uintptr_t)&_bss_free_start; - - *work_area_start = (void *)&_bss_free_start; - *work_area_size = size; - *heap_start = BSP_BOOTCARD_HEAP_USES_WORK_AREA; - *heap_size = BSP_BOOTCARD_HEAP_SIZE_DEFAULT; -} - -- cgit v1.2.3