-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdiag.c
188 lines (142 loc) · 4.7 KB
/
diag.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
/*
* Copyright (c) 2012-2013, Ari Suutari <[email protected]>.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <picoos.h>
#include <picoos-u.h>
#include <string.h>
#if UOSCFG_NEWLIB_SYSCALLS == 1 && NOSCFG_MEM_MANAGER_TYPE != 1
#include <unistd.h>
#endif
#ifndef unix
#if __MSP430__ == 1 && __GNUC__ > 4
// Linker scripts in TI MSP430 GCC provide __datastart instead of __data_start.
#define __data_start __datastart
#endif
extern void *__heap_start;
extern void *__heap_end;
extern unsigned int _end[];
extern unsigned int __stack[];
extern unsigned int __data_start[];
extern unsigned int __data_load_start[];
extern unsigned int _edata[];
extern unsigned int _etext[];
extern unsigned int __bss_start[];
extern unsigned int __bss_end[];
#endif
void uosBootDiag()
{
#if NOSCFG_FEATURE_CONOUT == 1 && NOSCFG_FEATURE_PRINTF == 1
nosPrint("\n" POS_STARTUPSTRING "\n");
#if !defined(unix) && !defined(__PIC32MX)
nosPrintf("Ram: data+bss %u, heap %u, irq stack %u\n", (int)((char*)_end - (char*)__data_start),
(int)((char*)__heap_end - (char*)__heap_start),
PORTCFG_IRQ_STACK_SIZE);
#endif
nosPrintf("Limits: %d tasks, %d events\n", POSCFG_MAX_TASKS, POSCFG_MAX_EVENTS);
#endif
}
void uosResourceDiag()
{
#if NOSCFG_FEATURE_CONOUT == 1 && NOSCFG_FEATURE_PRINTF == 1
#ifdef POS_DEBUGHELP
int taskCount = 0;
int eventCount = 0;
int i;
struct PICOTASK* task;
struct PICOEVENT* event;
#endif
#if POSCFG_ARGCHECK > 1
#if UOSCFG_NEWLIB_SYSCALLS == 1 && NOSCFG_MEM_MANAGER_TYPE != 1
uint32_t heapUsed = (char*)sbrk(0) - (char*)__heap_start;
uint32_t heapSize = (char*)__heap_end - (char*)__heap_start;
nosPrintf("Heap used: %u (%d %%)\n", heapUsed, 100 * heapUsed / heapSize);
#endif
nosPrint("Stack unused amounts:\n");
int freeStack;
unsigned char* sp;
freeStack = 0;
#ifndef unix
sp = portIrqStack;
while (*sp == PORT_STACK_MAGIC) {
++sp;
++freeStack;
}
nosPrintf(" IRQ %d\n", freeStack);
#endif
#endif
#ifdef POS_DEBUGHELP
struct PICOTASK* allTasks[POSCFG_MAX_TASKS];
const char* name;
memset(allTasks, '\0', sizeof(allTasks));
posTaskSchedLock();
task = picodeb_tasklist;
while (task != NULL) {
allTasks[taskCount] = task;
taskCount++;
task = task->next;
}
posTaskSchedUnlock();
#if POSCFG_ARGCHECK > 1
for (i = 0; i < taskCount; i++) {
task = allTasks[i];
if (task->state == task_notExisting)
continue;
freeStack = 0;
sp = task->handle->stack;
while (*sp == PORT_STACK_MAGIC) {
++sp;
++freeStack;
}
name = (task->name != NULL) ? task->name : "?";
nosPrintf(" %06X task %s %d\n", task->handle, name, freeStack);
}
#endif
posTaskSchedLock();
event = picodeb_eventlist;
while (event != NULL) {
eventCount++;
event = event->next;
}
posTaskSchedUnlock();
nosPrintf("%d tasks, %d events in use\n", taskCount, eventCount);
nosPrintf("%d tasks, %d events conf max\n", POSCFG_MAX_TASKS, POSCFG_MAX_EVENTS);
#else
#if POSCFG_ARGCHECK > 1 && POSCFG_FEATURE_GETTASK == 1
POSTASK_t current = posTaskGetCurrent();
freeStack = 0;
sp = current->stack;
while (*sp == PORT_STACK_MAGIC) {
++sp;
++freeStack;
}
nosPrintf(" current task %d\n", freeStack);
#endif
#endif
#endif
}