1
10
13
14
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
150
151
152
153
160
161
162
163
164
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
192
193
194
195
196
197
198
199
200
201
202
203
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
266
267
268
269
270
...
...
...
#define UX_SYSTEM_INIT
#define UX_SOURCE_CODE
#include "ux_api.h"
#include "ux_system.h"
UX_SYSTEM *_ux_system;
UX_SYSTEM_OTG *_ux_system_otg;
UCHAR _ux_system_endpoint_descriptor_structure[] = {1,1,1,1,2,1 };
UCHAR _ux_system_device_descriptor_structure[] = {1,1,2,1,1,1,1,2,2,2,1,1,1,1};
UCHAR _ux_system_configuration_descriptor_structure[] = {1,1,2,1,1,1,1,1};
UCHAR _ux_system_interface_descriptor_structure[] = {1,1,1,1,1,1,1,1,1};
UCHAR _ux_system_interface_association_descriptor_structure[] = {1,1,1,1,1,1,1,1};
UCHAR _ux_system_string_descriptor_structure[] = {1,1,2};
UCHAR _ux_system_dfu_functional_descriptor_structure[] = {1,1,1,2,2,2};
UCHAR _ux_system_class_audio_interface_descriptor_structure[] = {1,1,1,1,1,1,1,1};
UCHAR _ux_system_class_audio_input_terminal_descriptor_structure[] = {1,1,1,1,2,1,1,2,1,1};
UCHAR _ux_system_class_audio_output_terminal_descriptor_structure[] = {1,1,1,1,2,1,1,1};
UCHAR _ux_system_class_audio_feature_unit_descriptor_structure[] = {1,1,1,1,1,1,1};
UCHAR _ux_system_class_audio_streaming_interface_descriptor_structure[] = {1,1,1,1,1,1};
UCHAR _ux_system_class_audio_streaming_endpoint_descriptor_structure[] = {1,1,1,1,1,1};
UCHAR _ux_system_hub_descriptor_structure[] = {1,1,1,2,1,1,1,1};
UCHAR _ux_system_hid_descriptor_structure[] = {1,1,2,1,1,1,2};
UCHAR _ux_system_class_pima_storage_structure[] = {2,2,2,4,4,4,4,4};
UCHAR _ux_system_class_pima_object_structure[] = {4,2,2,4,2,4,4,4,4,4,4,4,2,4,4};
UCHAR _ux_system_ecm_interface_descriptor_structure[] = {1,1,1,1,4,2,2,1};
UCHAR _ux_system_bos_descriptor_structure[] = {1,1,2,1};
UCHAR _ux_system_usb_2_0_extension_descriptor_structure[] = {1,1,1,4};
UCHAR _ux_system_container_id_descriptor_structure[] = {1,1,1,1,4,4,4,4};
...
...
UINT _ux_system_initialize(VOID *regular_memory_pool_start, ULONG regular_memory_size,
VOID *cache_safe_memory_pool_start, ULONG cache_safe_memory_size)
{
UX_MEMORY_BLOCK *memory_block;
ALIGN_TYPE int_memory_pool_start;
VOID *regular_memory_pool_end;
ULONG memory_pool_offset;
#if !defined(UX_STANDALONE)
UINT status;
#endif
_ux_utility_memory_set(regular_memory_pool_start, 0, regular_memory_size);
_ux_system = (UX_SYSTEM *) regular_memory_pool_start;
memory_pool_offset = sizeof(UX_SYSTEM);
#ifndef UX_DEVICE_SIDE_ONLY
_ux_system_host = (UX_SYSTEM_HOST *) (((UCHAR *) regular_memory_pool_start) + memory_pool_offset);
memory_pool_offset += (ULONG)sizeof(UX_SYSTEM_HOST);
/* ... */
#endif
#ifndef UX_HOST_SIDE_ONLY
_ux_system_slave = (UX_SYSTEM_SLAVE *) (((UCHAR *) regular_memory_pool_start) + memory_pool_offset);
memory_pool_offset += (ULONG)sizeof(UX_SYSTEM_SLAVE);
/* ... */
#endif
#ifdef UX_OTG_SUPPORT
_ux_system_otg = (UX_SYSTEM_OTG *) (((UCHAR *) regular_memory_pool_start) + memory_pool_offset);
memory_pool_offset += (ULONG)sizeof(UX_SYSTEM_OTG);/* ... */
#endif
_ux_system -> ux_system_regular_memory_pool_start = (UX_MEMORY_BLOCK *) (((UCHAR *) regular_memory_pool_start)
+ memory_pool_offset);
int_memory_pool_start = (ALIGN_TYPE) _ux_system -> ux_system_regular_memory_pool_start;
int_memory_pool_start += UX_ALIGN_MIN;
int_memory_pool_start &= ~((ALIGN_TYPE)UX_ALIGN_MIN);
regular_memory_pool_end = (void *) (((UCHAR *) regular_memory_pool_start) + regular_memory_size);
if (int_memory_pool_start >= (ALIGN_TYPE)regular_memory_pool_end)
{
return(UX_MEMORY_INSUFFICIENT);
}if (int_memory_pool_start >= (ALIGN_TYPE)regular_memory_pool_end) { ... }
_ux_system -> ux_system_regular_memory_pool_size = (ULONG) (((ALIGN_TYPE) regular_memory_pool_end) - int_memory_pool_start);
_ux_system -> ux_system_regular_memory_pool_free = _ux_system -> ux_system_regular_memory_pool_size;
_ux_system -> ux_system_regular_memory_pool_start = (UX_MEMORY_BLOCK *) int_memory_pool_start;
memory_block = _ux_system -> ux_system_regular_memory_pool_start;
memory_block -> ux_memory_block_size = _ux_system -> ux_system_regular_memory_pool_size - (ULONG)sizeof(UX_MEMORY_BLOCK);
memory_block -> ux_memory_block_status = UX_MEMORY_UNUSED;
/* ... */
if (cache_safe_memory_pool_start == UX_NULL)
{
_ux_system -> ux_system_cache_safe_memory_pool_size = _ux_system -> ux_system_regular_memory_pool_size;
_ux_system -> ux_system_cache_safe_memory_pool_free = _ux_system -> ux_system_regular_memory_pool_free;
_ux_system -> ux_system_cache_safe_memory_pool_start = _ux_system -> ux_system_regular_memory_pool_start;
}if (cache_safe_memory_pool_start == UX_NULL) { ... }
else
{
int_memory_pool_start = (ALIGN_TYPE) cache_safe_memory_pool_start;
int_memory_pool_start += UX_ALIGN_MIN;
int_memory_pool_start &= ~((ALIGN_TYPE)UX_ALIGN_MIN);
_ux_system -> ux_system_cache_safe_memory_pool_size = cache_safe_memory_size - UX_ALIGN_MIN;
_ux_system -> ux_system_cache_safe_memory_pool_free = _ux_system -> ux_system_cache_safe_memory_pool_size;
_ux_system -> ux_system_cache_safe_memory_pool_start = (UX_MEMORY_BLOCK *) int_memory_pool_start;
_ux_utility_memory_set(_ux_system -> ux_system_cache_safe_memory_pool_start, 0, _ux_system -> ux_system_cache_safe_memory_pool_size);
memory_block = _ux_system -> ux_system_cache_safe_memory_pool_start;
memory_block -> ux_memory_block_size = _ux_system -> ux_system_cache_safe_memory_pool_size - (ULONG)sizeof(UX_MEMORY_BLOCK);
memory_block -> ux_memory_block_status = UX_MEMORY_UNUSED;
}else { ... }
#ifdef UX_ENABLE_MEMORY_STATISTICS
_ux_system -> ux_system_regular_memory_pool_base = (UCHAR *) _ux_system -> ux_system_regular_memory_pool_start;
_ux_system -> ux_system_regular_memory_pool_min_free = _ux_system -> ux_system_regular_memory_pool_free;
_ux_system -> ux_system_cache_safe_memory_pool_base = (UCHAR *) _ux_system -> ux_system_cache_safe_memory_pool_start;
_ux_system -> ux_system_cache_safe_memory_pool_min_free = _ux_system -> ux_system_cache_safe_memory_pool_free;
/* ... */
#endif
#ifdef UX_ENABLE_DEBUG_LOG
_ux_system -> ux_system_debug_log_buffer = _ux_utility_memory_allocate(UX_NO_ALIGN, UX_REGULAR_MEMORY, UX_DEBUG_LOG_SIZE);
if (_ux_system -> ux_system_debug_log_buffer == UX_NULL)
return(UX_MEMORY_INSUFFICIENT);
_ux_system -> ux_system_debug_log_head = _ux_system -> ux_system_debug_log_buffer;
_ux_system -> ux_system_debug_log_tail = _ux_system -> ux_system_debug_log_buffer;
_ux_system -> ux_system_debug_log_size = UX_DEBUG_LOG_SIZE;
/* ... */
#endif
#if !defined(UX_STANDALONE)
status = _ux_system_mutex_create(&_ux_system -> ux_system_mutex, "ux_system_mutex");
if(status != UX_SUCCESS)
return(UX_MUTEX_ERROR);/* ... */
#endif
return(UX_SUCCESS);
}{ ... }