summaryrefslogtreecommitdiffstats
path: root/bsps/powerpc/tqm8xx/start/bspgetworkarea.c
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/powerpc/tqm8xx/start/bspgetworkarea.c')
-rw-r--r--bsps/powerpc/tqm8xx/start/bspgetworkarea.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/bsps/powerpc/tqm8xx/start/bspgetworkarea.c b/bsps/powerpc/tqm8xx/start/bspgetworkarea.c
new file mode 100644
index 0000000000..4a0a4db534
--- /dev/null
+++ b/bsps/powerpc/tqm8xx/start/bspgetworkarea.c
@@ -0,0 +1,34 @@
+/**
+ * @file
+ *
+ * @ingroup tqm8xx
+ *
+ * @brief Source for BSP Get Work Area Memory
+ */
+
+/*
+ * Copyright (c) 2008, 2018 embedded brains GmbH. All rights reserved.
+ *
+ * embedded brains GmbH
+ * Dornierstr. 4
+ * 82178 Puchheim
+ * Germany
+ * <rtems@embedded-brains.de>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#include <bsp.h>
+#include <bsp/bootcard.h>
+#include <bsp/linker-symbols.h>
+
+void bsp_work_area_initialize(void)
+{
+ char *ram_end = (char *) (TQM_BD_INFO.sdram_size - (uint32_t)TopRamReserved);
+ void *area_start = bsp_section_work_begin;
+ uintptr_t area_size = (uintptr_t) ram_end - (uintptr_t) area_start;
+
+ bsp_work_area_initialize_default( area_start, area_size );
+}