forked from arduino/ArduinoCore-avr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tpl_trace.cpp
426 lines (369 loc) · 10.3 KB
/
tpl_trace.cpp
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
/**
* @file tpl_trace.c
*
* @section desc File description
*
* Functions for trace production
*
* @section copyright Copyright
*
* Trampoline RTOS
*
* Trampoline is copyright (c) CNRS, University of Nantes, Ecole Centrale de Nantes
* Trampoline is protected by the French intellectual property law.
*
* This software is distributed under the GNU Public Licence V2.
* Check the LICENSE file in the root directory of Trampoline
*
*/
/* should be defined before including tpl_app_define.h */
#define TRACE_FORMAT_SERIAL 0
#include "tpl_app_define.h" /* WITH_TRACE */
#include <stdint.h>
#if WITH_TRACE == YES
#include "tpl_trace.h"
#if TRACE_FORMAT == TRACE_FORMAT_SERIAL
# include "Arduino.h"
#endif
#define OS_START_SEC_CODE
#include "tpl_memmap.h"
FUNC(tpl_tick, OS_CODE) tpl_trace_get_timestamp()
{
CONSTP2VAR(tpl_counter, AUTOMATIC, OS_APPL_DATA) counter = &SystemCounter_counter_desc;
tpl_tick timestamp = counter->current_date;
return timestamp;
}
extern "C" FUNC(void, OS_CODE) tpl_trace_start()
{
# if TRACE_FORMAT == TRACE_FORMAT_SERIAL
static uint8_t serialIsInit = 0;
if(!serialIsInit) {
Serial.begin(115200); //115200 bps, 8N1
while(!Serial);
serialIsInit = 1;
}
# else
# error "unsupported trace mode: TRACE_FORMAT"
#endif
}
/* Serial.write with care of the overflow */
uint8_t serialWrite(uint8_t data)
{
uint8_t result;
if(Serial.availableForWrite())
{
Serial.write(data);
result = 0;
} else {
result = 0;
}
return result;
}
/**
* Trace ends (close the file for instance). This event is sent by
* ShutdownOS() system call
* This function should be implemented in the machine dependant trace backend.
*/
extern "C" FUNC(void, OS_CODE) tpl_trace_close()
{
}
/**
* Overflow. there are too many trace messages and the trace subsystem
* cannot handle all this stuff.
* we just flush the fifo and send a trace overflow message. There will
* be lost trace messages.
* NOTE: ***** the system should be able to send 5 bytes at minimum *****
* (the TX serial line fifo should be > 5 bytes).
*
*/
FUNC(void, OS_CODE) tpl_trace_overflow()
{
const tpl_tick ts=tpl_trace_get_timestamp();
tpl_trace_start();
# if TRACE_FORMAT == TRACE_FORMAT_SERIAL
//there was an overflow, first flush the serial line
//we do not generate any overflow here of course
//to prevent recursive calls.
//
//in Arduino, we cannot empty the Serial line
//we have to wait for the end of transmission...
//however, at last one message is not completed.
Serial.flush();
/* TTT 00000 (Type) */
uint8_t byte = OVERFLOW << 5;
uint8_t chksum = byte;
Serial.write(byte);
byte = ts >> 8;
chksum += byte;
Serial.write(byte);
byte = ts & 0xff;
chksum += byte;
Serial.write(byte);
Serial.write(0); //no data
Serial.write(chksum);
# else
# error "unsupported trace mode: TRACE_FORMAT"
# endif /* TRACE_FORMAT == TRACE_FORMAT_SERIAL */
}
/**
* trace the execution of a task or ISR
* ** Function defined in os/tpl_trace.h **
*
*/
extern "C" FUNC(void, OS_CODE) tpl_trace_proc_change_state(
CONST(tpl_proc_id,AUTOMATIC) proc_id,
CONST(tpl_proc_state,AUTOMATIC) target_state)
{
const tpl_tick ts=tpl_trace_get_timestamp();
tpl_trace_start();
# if TRACE_FORMAT == TRACE_FORMAT_SERIAL
/* TTT 00 SSS (Type, State) */
uint8_t byte = PROC_TYPE<<5 | target_state;
uint8_t chksum = byte;
uint8_t overflow = 0;
overflow |= serialWrite(byte);
byte = ts >> 8;
chksum += byte;
overflow |= serialWrite(byte);
byte = ts & 0xff;
chksum += byte;
overflow |= serialWrite(byte);
byte = proc_id & 0xff;
chksum += byte;
overflow |= serialWrite(byte);
overflow |= serialWrite(chksum);
if(overflow) tpl_trace_overflow();
# else
# error "unsupported trace mode: TRACE_FORMAT"
#endif
}
/**
* trace the lock of a resource by an entity
* ** Function defined in os/tpl_trace.h **
* @param res_id identifier of the locked resource
* @param target_state new state of the resource (RESOURCE_FREE / RESOURCE_TAKEN)
*/
extern "C" FUNC(void, OS_CODE) tpl_trace_res_change_state(
CONST(tpl_resource_id, AUTOMATIC) res_id,
CONST(tpl_trace_resource_state,AUTOMATIC) target_state)
{
const tpl_tick ts=tpl_trace_get_timestamp();
tpl_trace_start();
# if TRACE_FORMAT == TRACE_FORMAT_SERIAL
/* TTT 00 00S (Type, State) */
uint8_t byte = (RES_TYPE<<5) | (target_state & 1);
uint8_t chksum = byte;
uint8_t overflow = 0;
overflow |= serialWrite(byte);
byte = ts >> 8;
chksum += byte;
overflow |= serialWrite(byte);
byte = ts & 0xff;
chksum += byte;
overflow |= serialWrite(byte);
byte = res_id & 0xff;
chksum += byte;
overflow |= serialWrite(byte);
overflow |= serialWrite(chksum);
if(overflow) tpl_trace_overflow();
# else
# error "unsupported trace mode: TRACE_FORMAT"
#endif
}
/**
* trace the state of a time object (alarm/schedule tables)
* ** Function defined in os/tpl_trace.h **
* @param sheduled_alarm data structure concerning the sheduled alarm
*/
extern "C" FUNC(void, OS_CODE) tpl_trace_time_obj_change_state(
CONST(tpl_timeobj_id, AUTOMATIC) timeobj_id,
CONST(tpl_time_obj_state, AUTOMATIC) target_state)
{
const tpl_tick ts=tpl_trace_get_timestamp();
tpl_trace_start();
# if TRACE_FORMAT == TRACE_FORMAT_SERIAL
/* TTT K0 SSS (Type, Kind, State) */
uint8_t byte = TIMEOBJ_TYPE<<5 | TIMEOBJ_CHANGE_STATE_KIND <<4 | target_state;
uint8_t chksum = byte;
uint8_t overflow = 0;
overflow |= serialWrite(byte);
byte = ts >> 8;
chksum += byte;
overflow |= serialWrite(byte);
byte = ts & 0xff;
chksum += byte;
overflow |= serialWrite(byte);
byte = timeobj_id & 0xff;
chksum += byte;
overflow |= serialWrite(byte);
overflow |= serialWrite(chksum);
if(overflow) tpl_trace_overflow();
# else
# error "unsupported trace mode: TRACE_FORMAT"
#endif
}
/**
* trace the expiration of an alarm
* ** Function defined in os/tpl_trace.h **
* @param expired_alarm data structure concerning the expired alarm
*/
extern "C" FUNC(void, OS_CODE) tpl_trace_time_obj_expire(
CONST(tpl_timeobj_id,AUTOMATIC) timeobj_id)
{
const tpl_tick ts=tpl_trace_get_timestamp();
tpl_trace_start();
# if TRACE_FORMAT == TRACE_FORMAT_SERIAL
/* TTT K0000 (Type, Kind) */
uint8_t byte = TIMEOBJ_TYPE<<5 | TIMEOBJ_EXPIRE_KIND <<4;
uint8_t chksum = byte;
uint8_t overflow = 0;
overflow |= serialWrite(byte);
byte = ts >> 8;
chksum += byte;
overflow |= serialWrite(byte);
byte = ts & 0xff;
chksum += byte;
overflow |= serialWrite(byte);
byte = timeobj_id & 0xff;
chksum += byte;
overflow |= serialWrite(byte);
overflow |= serialWrite(chksum);
if(overflow) tpl_trace_overflow();
# else
# error "unsupported trace mode: TRACE_FORMAT"
#endif
}
/**
* trace the events:
* when an event mask is set to a task (source task is the current running task)
* ** Function defined in os/tpl_trace.h **
*
*/
extern "C" FUNC(void, OS_CODE) tpl_trace_event_set(
CONST(tpl_task_id, AUTOMATIC) task_target_id,
CONST(tpl_event_mask, AUTOMATIC) event)
{
const tpl_tick ts=tpl_trace_get_timestamp();
tpl_trace_start();
# if TRACE_FORMAT == TRACE_FORMAT_SERIAL
/* TTT EEEEE (Type, Event) */
uint8_t byte = EVENT_TYPE<<5 | (event & 0x1F);
uint8_t chksum = byte;
uint8_t overflow = 0;
overflow |= serialWrite(byte);
byte = ts >> 8;
chksum += byte;
overflow |= serialWrite(byte);
byte = ts & 0xff;
chksum += byte;
overflow |= serialWrite(byte);
//TODO: limited to 128 tasks
byte = (EVENT_SET_KIND << 7) | (task_target_id & 0x7f);
chksum += byte;
overflow |= serialWrite(byte);
overflow |= serialWrite(chksum);
if(overflow) tpl_trace_overflow();
# else
# error "unsupported trace mode: TRACE_FORMAT"
#endif
}
/**
* trace the events:
* - when an event mask is reset
* ** Function defined in os/tpl_trace.h **
*
*/
extern "C" FUNC(void, OS_CODE) tpl_trace_event_reset(
CONST(tpl_event_mask, AUTOMATIC) event)
{
const tpl_tick ts=tpl_trace_get_timestamp();
tpl_trace_start();
# if TRACE_FORMAT == TRACE_FORMAT_SERIAL
/* TTT EEEEE (Type, Event) */
uint8_t byte = EVENT_TYPE<<5 | (event & 0x1F);
uint8_t chksum = byte;
uint8_t overflow = 0;
overflow |= serialWrite(byte);
byte = ts >> 8;
chksum += byte;
overflow |= serialWrite(byte);
byte = ts & 0xff;
chksum += byte;
overflow |= serialWrite(byte);
byte = EVENT_RESET_KIND << 7;
chksum += byte;
overflow |= serialWrite(byte);
overflow |= serialWrite(chksum);
if(overflow) tpl_trace_overflow();
# else
# error "unsupported trace mode: TRACE_FORMAT"
#endif
}
/**
* trace the COM message:
* - when a message is sent
*
*/
#if WITH_COM == YES
extern "C" FUNC(void, OS_CODE) tpl_trace_msg_send(
CONST(tpl_message_id, AUTOMATIC) mess_id,
CONST(tpl_bool,AUTOMATIC) is_zero_message)
{
const tpl_tick ts=tpl_trace_get_timestamp();
tpl_trace_start();
# if TRACE_FORMAT == TRACE_FORMAT_SERIAL
/* TTT MMMMM (Type, Message) */
uint8_t byte = MESSAGE_TYPE << 5 | (mess_id & 0x1F);
uint8_t chksum = byte;
uint8_t overflow = 0;
overflow |= serialWrite(byte);
byte = ts >> 8;
chksum += byte;
overflow |= serialWrite(byte);
byte = ts & 0xff;
chksum += byte;
overflow |= serialWrite(byte);
byte = (uint8_t)is_zero_message;
chksum += byte;
overflow |= serialWrite(byte);
overflow |= serialWrite(chksum);
if(overflow) tpl_trace_overflow();
# else
# error "unsupported trace mode: TRACE_FORMAT"
# endif /* TRACE_FORMAT == TRACE_FORMAT_SERIAL */
}
/**
* trace the message:
* - when a message is received
*
*/
FUNC(void, OS_CODE) tpl_trace_msg_receive(
VAR(tpl_message_id, AUTOMATIC) mess_id)
{
const tpl_tick ts=tpl_trace_get_timestamp();
tpl_trace_start();
# if TRACE_FORMAT == TRACE_FORMAT_SERIAL
/* TTT MMMMM (Type, Message) */
uint8_t byte = MESSAGE_TYPE << 5 | (mess_id & 0x1F);
uint8_t chksum = byte;
uint8_t overflow = 0;
overflow |= serialWrite(byte);
byte = ts >> 8;
chksum += byte;
overflow |= serialWrite(byte);
byte = ts & 0xff;
chksum += byte;
overflow |= serialWrite(byte);
byte = (uint8_t)MESSAGE_RECEIVE_KIND;
chksum += byte;
overflow |= serialWrite(byte);
overflow |= serialWrite(chksum);
if(overflow) tpl_trace_overflow();
# else
# error "unsupported trace mode: TRACE_FORMAT"
# endif /* TRACE_FORMAT == TRACE_FORMAT_SERIAL */
}
#endif /* WITH_COM == YES */
#define OS_STOP_SEC_CODE
#include "tpl_memmap.h"
#endif /* WITH_TRACE == YES */