RTEMS 6.1-rc1
wkspaceinitone.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: BSD-2-Clause */
2
12/*
13 * Copyright (C) 2012, 2020 embedded brains GmbH & Co. KG
14 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 * notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 * notice, this list of conditions and the following disclaimer in the
22 * documentation and/or other materials provided with the distribution.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#ifndef _RTEMS_SCORE_WKSPACEINITONE_H
38#define _RTEMS_SCORE_WKSPACEINITONE_H
39
40#include <rtems/score/wkspace.h>
41#include <rtems/score/assert.h>
43#include <rtems/score/interr.h>
44#include <rtems/score/memory.h>
45#include <rtems/config.h>
46
47#ifdef __cplusplus
48extern "C" {
49#endif
50
60static inline void _Workspace_Initialize_for_one_area( void )
61{
62 uintptr_t page_size;
63 uintptr_t wkspace_size;
64 uintptr_t wkspace_size_with_overhead;
65 const Memory_Information *mem;
66 Memory_Area *area;
67 uintptr_t free_size;
68 uintptr_t available_size;
69
70 page_size = CPU_HEAP_ALIGNMENT;
72 wkspace_size_with_overhead = wkspace_size + _Heap_Area_overhead( page_size );
73
74 mem = _Memory_Get();
75 _Assert( _Memory_Get_count( mem ) == 1 );
76
77 area = _Memory_Get_area( mem, 0 );
78 free_size = _Memory_Get_free_size( area );
79
80 if (
81 wkspace_size < wkspace_size_with_overhead &&
82 free_size >= wkspace_size_with_overhead
83 ) {
84 uintptr_t size;
85
87 size = free_size;
88 } else {
89 size = wkspace_size_with_overhead;
90 }
91
92 available_size = _Heap_Initialize(
94 _Memory_Get_free_begin( area ),
95 size,
96 page_size
97 );
98
99 _Memory_Consume( area, size );
100 } else {
101 /*
102 * An unsigned integer overflow happened, or the available free memory is
103 * not enough.
104 */
105 available_size = 0;
106 }
107
108 if ( wkspace_size > available_size ) {
109 _Internal_error( INTERNAL_ERROR_TOO_LITTLE_WORKSPACE );
110 }
111
112 _Heap_Protection_set_delayed_free_fraction( &_Workspace_Area, 1 );
113}
114
115#ifdef __cplusplus
116}
117#endif
118
119#endif /* _RTEMS_SCORE_WKSPACEINITONE_H */
This header file provides the interfaces of the Assert Handler.
This header file provides the interfaces of the Memory Handler.
#define rtems_configuration_get_unified_work_area()
Indicates if the RTEMS Workspace and C Program Heap are configured to be unified for this application...
Definition: config.h:768
#define rtems_configuration_get_work_space_size()
Gets the RTEMS Workspace size in bytes configured for this application.
Definition: config.h:838
#define _Assert(_e)
Assertion similar to assert() controlled via RTEMS_DEBUG instead of NDEBUG and static analysis runs.
Definition: assert.h:96
uintptr_t _Heap_Initialize(Heap_Control *heap, void *area_begin, uintptr_t area_size, uintptr_t page_size)
Initializes the heap control block.
Definition: heap.c:225
RTEMS_NO_RETURN void _Internal_error(Internal_errors_Core_list core_error)
Terminates the system with an INTERNAL_ERROR_CORE fatal source and the specified core error code.
Definition: interr.c:61
const Memory_Information * _Memory_Get(void)
Return the memory information of this platform.
Definition: bspgetworkarea.c:227
Heap_Control _Workspace_Area
Executive workspace control.
Definition: wkspace.c:44
This header file provides interfaces of the Barrier Handler which are only used by the implementation...
This header file provides the interfaces of the Internal Error Handler.
This header file provides interfaces of the Workspace Handler which are only used by the implementati...
The memory area description.
Definition: memory.h:63
The memory information.
Definition: memory.h:83
unsigned size
Definition: tte.h:1