forked from vedderb/bldc
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmempools.c
134 lines (110 loc) · 3 KB
/
mempools.c
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
Copyright 2020 Benjamin Vedder [email protected]
This file is part of the VESC firmware.
The VESC firmware is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
The VESC firmware is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "mempools.h"
#include "packet.h"
// Private types
typedef struct {
volatile bool is_taken;
mc_configuration conf;
} mcconf_container_t;
typedef struct {
volatile bool is_taken;
app_configuration conf;
} appconf_container_t;
// Private variables
static mcconf_container_t m_mc_confs[MEMPOOLS_MCCONF_NUM] = {{0}};
static appconf_container_t m_app_confs[MEMPOOLS_APPCONF_NUM] = {{0}};
static int m_mcconf_highest = 0;
static int m_appconf_highest = 0;
static uint8_t packet_buffer[PACKET_MAX_PL_LEN];
static mutex_t packet_buffer_mutex;
void mempools_init(void) {
chMtxObjectInit(&packet_buffer_mutex);
}
mc_configuration *mempools_alloc_mcconf(void) {
for (int i = 0;i < MEMPOOLS_MCCONF_NUM;i++) {
if (i > m_mcconf_highest) {
m_mcconf_highest = i;
}
if (!m_mc_confs[i].is_taken) {
m_mc_confs[i].is_taken = true;
return &m_mc_confs[i].conf;
}
}
m_mcconf_highest++;
return 0;
}
void mempools_free_mcconf(mc_configuration *conf) {
for (int i = 0;i < MEMPOOLS_MCCONF_NUM;i++) {
if (&m_mc_confs[i].conf == conf) {
m_mc_confs[i].is_taken = false;
return;
}
}
}
app_configuration *mempools_alloc_appconf(void) {
for (int i = 0;i < MEMPOOLS_APPCONF_NUM;i++) {
if (i > m_appconf_highest) {
m_appconf_highest = i;
}
if (!m_app_confs[i].is_taken) {
m_app_confs[i].is_taken = true;
return &m_app_confs[i].conf;
}
}
m_appconf_highest++;
return 0;
}
void mempools_free_appconf(app_configuration *conf) {
for (int i = 0;i < MEMPOOLS_APPCONF_NUM;i++) {
if (&m_app_confs[i].conf == conf) {
m_app_confs[i].is_taken = false;
return;
}
}
}
int mempools_mcconf_highest(void) {
return m_mcconf_highest;
}
int mempools_appconf_highest(void) {
return m_appconf_highest;
}
int mempools_mcconf_allocated_num(void) {
int res = 0;
for (int i = 0;i < MEMPOOLS_MCCONF_NUM;i++) {
if (m_mc_confs[i].is_taken) {
res++;
}
}
return res;
}
int mempools_appconf_allocated_num(void) {
int res = 0;
for (int i = 0;i < MEMPOOLS_APPCONF_NUM;i++) {
if (m_app_confs[i].is_taken) {
res++;
}
}
return res;
}
uint8_t *mempools_get_packet_buffer(void) {
chMtxLock(&packet_buffer_mutex);
return packet_buffer;
}
void mempools_free_packet_buffer(uint8_t *buffer) {
if (buffer == packet_buffer) {
chMtxUnlock(&packet_buffer_mutex);
}
}