-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtracer_emb.c
441 lines (375 loc) · 9.43 KB
/
tracer_emb.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
/**
******************************************************************************
* @file tracer_emb.c
* @author MCD Application Team
* @brief This file contains embedded tracer control functions.
******************************************************************************
* @attention
*
* Copyright (c) 2018 STMicroelectronics.
* All rights reserved.
*
* This software is licensed under terms that can be found in the LICENSE file
* in the root directory of this software component.
* If no LICENSE file comes with this software, it is provided AS-IS.
*
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "tracer_emb.h"
#include "tracer_emb_hw.h"
#include "string.h"
/** @addtogroup TRACER_EMB
* @{
*/
/** @addtogroup TRACER_EMB
* @{
*/
/** @addtogroup TRACER_EMB
* @{
*/
/* Private enums -------------------------------------------------------------*/
/* Private typedef -----------------------------------------------------------*/
/** @defgroup TRACER_EMB_Private_TypeDef EMB TRACER Private typedef
* @{
*/
typedef enum
{
TRACER_OVERFLOW_NONE,
TRACER_OVERFLOW_DETECTED,
TRACER_OVERFLOW_SENT
} TRACER_OverFlowTypedef;
/**
* @}
*/
/** @defgroup TRACER_EMB_Private_TypeDef EMB TRACER Private typedef
* @{
*/
typedef enum
{
TRACER_OK,
TRACER_KO
} TRACER_StatusTypedef;
/**
* @}
*/
/** @defgroup TRACER_EMB_Private_TypeDef EMB TRACER Private typedef
* @{
*/
typedef struct
{
uint32_t PtrTx_Read;
uint32_t PtrTx_Write;
uint32_t SizeSent;
uint32_t LowPower_Counter;
__IO uint8_t Counter;
const uint8_t *OverFlow_Data;
uint8_t OverFlow_Size;
uint8_t discontinue;
TRACER_OverFlowTypedef OverFlow_Status;
uint8_t PtrDataTx[TRACER_EMB_BUFFER_SIZE];
} TRACER_ContextTypedef_t;
/**
* @}
*/
/* Private define ------------------------------------------------------------*/
/* Private macro -------------------------------------------------------------*/
/** @defgroup TRACER_EMB_Private_Macros TRACE Private Macros
* @{
*/
#define TRACER_WRITE_DATA(_POSITION_,_DATA_) \
TracerContext.PtrDataTx[(_POSITION_) % ((int32_t)TRACER_EMB_BUFFER_SIZE)] = (_DATA_);\
(_POSITION_) = ((_POSITION_) + 1) % ((int32_t)TRACER_EMB_BUFFER_SIZE);
#define TRACER_DEF_CRITICAL_SECTION() uint32_t primask;
#define TRACER_ENTER_CRITICAL_SECTION() \
primask = __get_PRIMASK(); \
__disable_irq()
#define TRACER_LEAVE_CRITICAL_SECTION() __set_PRIMASK(primask)
/**
* @}
*/
/* Private function prototypes -----------------------------------------------*/
/** @defgroup TRACER_EMB_Private_Functions TRACE Private Functions
* @{
*/
uint32_t TRACER_CallbackRX(uint8_t character, uint8_t error);
/* Function prototypes -----------------------------------------------*/
uint8_t TRACER_EMB_ReadData(void);
/**
* @}
*/
/* Private variables ---------------------------------------------------------*/
/** @defgroup TRACER_EMB_Private_Variables TRACE Private Variables
* @{
*/
#if defined(TRACER_EMB_STRUCTURE_MEMORY_LOCATION)
static TRACER_ContextTypedef_t TracerContext __attribute__((section(TRACER_EMB_STRUCTURE_MEMORY_LOCATION)));
#else
static TRACER_ContextTypedef_t TracerContext;
#endif /* TRACER_EMB_STRUCTURE_MEMORY_LOCATION */
/**
* @}
*/
/* Exported functions ---------------------------------------------------------*/
/** @addtogroup TRACER_EMB_Exported_Functions
* @{
*/
/**
* @brief Tracer Init
* @param None.
* @retval None.
*/
void TRACER_EMB_Init(void)
{
/* initialize the Ptr for Read/Write */
(void)memset(&TracerContext, 0, sizeof(TRACER_ContextTypedef_t));
/* Initialize trace BUS */
HW_TRACER_EMB_Init();
/* Initialize the lowpower aspect */
TRACER_EMB_LowPowerInit();
}
/**
* @brief Tracer DeInit
* @param None.
* @retval None.
*/
void TRACER_EMB_DeInit(void)
{
HW_TRACER_EMB_DeInit();
}
void TRACER_EMB_Add(uint8_t *Ptr, uint32_t Size)
{
int32_t _writepos;
uint8_t *data_to_write = Ptr;
uint32_t index;
/* Data processing */
TRACER_EMB_Lock();
_writepos = TRACER_EMB_AllocateBufer(Size);
/* if allocation is ok, write data into the buffer */
if (_writepos != -1)
{
/* initialize the Ptr for Read/Write */
for (index = 0U; index < Size; index++)
{
TRACER_WRITE_DATA(_writepos, data_to_write[index]);
}
}
TRACER_EMB_UnLock();
/* Tx processing */
TRACER_EMB_SendData();
}
#if TRACER_EMB_DMA_MODE == 1UL
void TRACER_EMB_IRQHandlerDMA(void)
{
HW_TRACER_EMB_IRQHandlerDMA();
}
#endif /* TRACER_EMB_DMA_MODE == 1 */
void TRACER_EMB_IRQHandlerUSART(void)
{
HW_TRACER_EMB_IRQHandlerUSART();
}
/**
* @brief Tracer read data
* @retval None.
*/
void TRACER_EMB_WriteData(uint16_t pos, uint8_t data)
{
TracerContext.PtrDataTx[pos % TRACER_EMB_BUFFER_SIZE] = data;
}
void TRACER_EMB_StartRX(void (*callbackRX)(uint8_t, uint8_t))
{
HW_TRACER_EMB_RegisterRxCallback(callbackRX);
HW_TRACER_EMB_StartRX();
}
int32_t TRACER_EMB_EnableOverFlow(const uint8_t *Data, uint8_t Size)
{
if (Size != 0U)
{
TracerContext.OverFlow_Data = Data;
TracerContext.OverFlow_Size = Size;
return 0;
}
return -1;
}
/**
* @brief Tracer read data
* @param None.
* @retval return a data
*/
uint8_t TRACER_EMB_ReadData()
{
return HW_TRACER_EMB_ReadData();
}
/**
* @}
*/
/** @defgroup TRACER_EMB_Private_Functions TRACE Private Functions
* @{
*/
/**
* @brief callback called to end a transfer.
* @param None.
* @retval None.
*/
void TRACER_EMB_CALLBACK_TX(void)
{
TRACER_DEF_CRITICAL_SECTION();
TRACER_ENTER_CRITICAL_SECTION();
TracerContext.PtrTx_Read = (TracerContext.PtrTx_Read + TracerContext.SizeSent) % TRACER_EMB_BUFFER_SIZE;
if ((TracerContext.OverFlow_Data != NULL) && (TracerContext.OverFlow_Status == TRACER_OVERFLOW_DETECTED)
&& (TracerContext.discontinue == 0U))
{
TracerContext.OverFlow_Status = TRACER_OVERFLOW_SENT;
TRACER_LEAVE_CRITICAL_SECTION();
HW_TRACER_EMB_SendData(TracerContext.OverFlow_Data, TracerContext.OverFlow_Size);
}
else
{
TracerContext.LowPower_Counter--;
TRACER_LEAVE_CRITICAL_SECTION();
TRACER_EMB_UnLock();
TRACER_EMB_SendData();
}
}
/**
* @brief Lock the trace buffer.
* @param None.
* @retval None.
*/
void TRACER_EMB_Lock(void)
{
TRACER_DEF_CRITICAL_SECTION();
TRACER_ENTER_CRITICAL_SECTION();
TracerContext.Counter++;
TRACER_LEAVE_CRITICAL_SECTION();
}
/**
* @brief UnLock the trace buffer.
* @param None.
* @retval None.
*/
void TRACER_EMB_UnLock(void)
{
TRACER_DEF_CRITICAL_SECTION();
TRACER_ENTER_CRITICAL_SECTION();
TracerContext.Counter--;
TRACER_LEAVE_CRITICAL_SECTION();
}
/**
* @brief if buffer is not locked return a Begin / end @ to transfer over the media.
* @param address begin of the data
* @param address end of the data
* @retval None.
*/
void TRACER_EMB_SendData(void)
{
uint32_t _begin;
uint32_t _end;
TRACER_DEF_CRITICAL_SECTION();
TRACER_ENTER_CRITICAL_SECTION();
if (0u == TracerContext.Counter)
{
_begin = TracerContext.PtrTx_Read;
_end = TracerContext.PtrTx_Write;
if (_begin != _end)
{
TRACER_EMB_Lock();
/* */
if (_end > _begin)
{
TracerContext.SizeSent = _end - _begin;
TracerContext.discontinue = 0;
}
else /* _begin > _end */
{
TracerContext.SizeSent = TRACER_EMB_BUFFER_SIZE - _begin;
TracerContext.discontinue = 1;
}
TRACER_EMB_LowPowerSendData();
TracerContext.LowPower_Counter++;
TRACER_LEAVE_CRITICAL_SECTION();
HW_TRACER_EMB_SendData((const uint8_t *)(&(TracerContext.PtrDataTx[_begin])), TracerContext.SizeSent);
TRACER_ENTER_CRITICAL_SECTION();
}
}
/* Low power processing */
switch (TracerContext.LowPower_Counter)
{
case 1:
TRACER_EMB_LowPowerSendData();
break;
case 0:
TRACER_EMB_LowPowerSendDataComplete();
break;
default:
break;
}
TRACER_LEAVE_CRITICAL_SECTION();
}
/**
* @brief allocate space inside the buffer to push data
* @param data size
* @retval write position inside the buffer is -1 no space available.
*/
int32_t TRACER_EMB_AllocateBufer(uint32_t Size)
{
uint32_t _freesize;
int32_t _pos = -1;
TRACER_DEF_CRITICAL_SECTION();
TRACER_ENTER_CRITICAL_SECTION();
if (TracerContext.PtrTx_Write == TracerContext.PtrTx_Read)
{
/* Need to add buffer full management */
_freesize = TRACER_EMB_BUFFER_SIZE;
}
else
{
if (TracerContext.PtrTx_Write > TracerContext.PtrTx_Read)
{
_freesize = TRACER_EMB_BUFFER_SIZE - TracerContext.PtrTx_Write + TracerContext.PtrTx_Read;
}
else
{
_freesize = TracerContext.PtrTx_Read - TracerContext.PtrTx_Write;
}
}
if (_freesize > Size)
{
_pos = (int32_t)TracerContext.PtrTx_Write;
TracerContext.PtrTx_Write = (TracerContext.PtrTx_Write + Size) % TRACER_EMB_BUFFER_SIZE;
if (TRACER_OVERFLOW_SENT == TracerContext.OverFlow_Status)
{
TracerContext.OverFlow_Status = TRACER_OVERFLOW_NONE;
}
}
else
{
if (TRACER_OVERFLOW_NONE == TracerContext.OverFlow_Status)
{
TracerContext.OverFlow_Status = TRACER_OVERFLOW_DETECTED;
}
}
TRACER_LEAVE_CRITICAL_SECTION();
return _pos;
}
__weak void TRACER_EMB_LowPowerInit(void)
{
}
__weak void TRACER_EMB_LowPowerSendData(void)
{
}
__weak void TRACER_EMB_LowPowerSendDataComplete(void)
{
}
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/
/**
* @}
*/