From e993f5b1bac38a86c2bde08967c0a6946e7c847a Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 10 Sep 2008 20:32:30 +0000 Subject: [PATCH] 2008-09-10 Joel Sherrill * shared/bspgetworkarea.c: New file. --- c/src/lib/libbsp/bfin/ChangeLog | 4 ++ c/src/lib/libbsp/bfin/shared/bspgetworkarea.c | 41 +++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 c/src/lib/libbsp/bfin/shared/bspgetworkarea.c diff --git a/c/src/lib/libbsp/bfin/ChangeLog b/c/src/lib/libbsp/bfin/ChangeLog index d1d66bc056..cb598d5b6d 100644 --- a/c/src/lib/libbsp/bfin/ChangeLog +++ b/c/src/lib/libbsp/bfin/ChangeLog @@ -1,3 +1,7 @@ +2008-09-10 Joel Sherrill + + * shared/bspgetworkarea.c: New file. + 2008-08-30 Joel Sherrill * acinclude.m4: Add bf537Stamp. Regenerate. diff --git a/c/src/lib/libbsp/bfin/shared/bspgetworkarea.c b/c/src/lib/libbsp/bfin/shared/bspgetworkarea.c new file mode 100644 index 0000000000..da0d6b85f2 --- /dev/null +++ b/c/src/lib/libbsp/bfin/shared/bspgetworkarea.c @@ -0,0 +1,41 @@ +/* + * COPYRIGHT (c) 1989-2008. + * On-Line Applications Research Corporation (OAR). + * + * 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 int WorkArea; +extern int RamBase; +extern int RamSize; + +/* + * 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; + + size = (uintptr_t)&RamBase + (uintptr_t)&RamSize - (uintptr_t)&WorkArea; + + *work_area_start = &WorkArea; + *work_area_size = size; + *heap_start = BSP_BOOTCARD_HEAP_USES_WORK_AREA; + *heap_size = BSP_BOOTCARD_HEAP_SIZE_DEFAULT; +} +