summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/src/stackalloc.c
blob: e6145d58732e124de1c75fd8a3b6a5d5d5ab50e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
 * @file
 *
 * @ingroup bsp_shared
 *
 * @brief Stack initialization, allocation and free functions.
 */

/*
 * Copyright (c) 2009
 * embedded brains GmbH
 * Obere Lagerstr. 30
 * D-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.com/license/LICENSE.
 */

#include <rtems.h>
#include <rtems/score/wkspace.h>

#include <bsp/stackalloc.h>

#define BSP_STACK_MAGIC 0xdeadbeef

static Heap_Control bsp_stack_heap = {
  .page_size = BSP_STACK_MAGIC
};

void bsp_stack_initialize(void *begin, uintptr_t size)
{
  bsp_stack_heap.area_begin = (uintptr_t) begin;
  bsp_stack_heap.area_end = size;
}

void *bsp_stack_allocate(size_t size)
{
  void *stack = NULL;

  if (bsp_stack_heap.page_size == BSP_STACK_MAGIC) {
    uintptr_t rv = _Heap_Initialize(
      &bsp_stack_heap,
      (void *) bsp_stack_heap.area_begin,
      bsp_stack_heap.area_end,
      CPU_STACK_ALIGNMENT
    );
    if (rv == 0) {
      return NULL;
    }
  }

  stack = _Heap_Allocate(&bsp_stack_heap, size);

  if (stack == NULL) {
    stack = _Workspace_Allocate(size);
  }

  return stack;
}

void bsp_stack_free(void *stack)
{
  bool ok = _Heap_Free(&bsp_stack_heap, stack);

  if (!ok) {
    _Workspace_Free(stack);
  }
}