Select one of the symbols to view example projects that use it.
 
Outline
...
...
...
...
#define TX_SOURCE_CODE
#include "tx_api.h"
#include "tx_initialize.h"
#include "tx_mutex.h"
#include "tx_thread.h"
#include "tx_byte_pool.h"
#include "txm_module.h"
#include "txm_module_manager_util.h"
...
_txm_module_manager_memory_load(TXM_MODULE_INSTANCE *, CHAR *, void *)
Files
loading...
CodeScopeSTM32 Libraries and Samplesthreadxcommon_modules/module_manager/src/txm_module_manager_memory_load.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* This software is licensed under the Microsoft Software License */ /* Terms for Microsoft Azure RTOS. Full text of the license can be */ /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ /* and in the root directory of this software. */ /* */... /**************************************************************************/ ... /**************************************************************************/ /**************************************************************************/ /** */ /** ThreadX Component */ /** */ /** Module Manager */ /** */... /**************************************************************************/ /**************************************************************************/ #define TX_SOURCE_CODE #include "tx_api.h" #include "tx_initialize.h" #include "tx_mutex.h" #include "tx_thread.h" #include "tx_byte_pool.h" #include "txm_module.h" #include "txm_module_manager_util.h" 7 includes ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _txm_module_manager_memory_load PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Scott Larson, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function allocates memory for module code and and calls */ /* _txm_module_manager_internal_load to load the data and prepare the */ /* module for execution. */ /* */ /* INPUT */ /* */ /* module_instance Module instance pointer */ /* module_name Module name pointer */ /* module_location Module code location */ /* */ /* OUTPUT */ /* */ /* status Completion status */ /* */ /* CALLS */ /* */ /* _tx_byte_allocate Allocate data area */ /* _txm_module_manager_internal_load Load data and prepare module for */ /* execution */ /* */ /* CALLED BY */ /* */ /* Application code */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 09-30-2020 Scott Larson Initial Version 6.1 */ /* */... /**************************************************************************/ UINT _txm_module_manager_memory_load(TXM_MODULE_INSTANCE *module_instance, CHAR *module_name, VOID *module_location) { TXM_MODULE_PREAMBLE *module_preamble; ALIGN_TYPE code_start; ULONG code_size; ULONG code_alignment; ULONG code_allocation_size; CHAR *code_memory_ptr; UCHAR *source_ptr; UCHAR *destination_ptr; ULONG copy_size; ULONG i; UINT status; /* Pickup the module's information. */ module_preamble = (TXM_MODULE_PREAMBLE *) module_location; /* Pickup the basic module sizes. */ code_size = module_preamble -> txm_module_preamble_code_size; /* Check for valid sizes. */ if (code_size == 0) { /* Invalid module preamble. */ return(TXM_MODULE_INVALID); }if (code_size == 0) { ... } /* Get the amount of the bytes we need to allocate for the module's code as well as the required alignment. */ status = _txm_module_manager_util_code_allocation_size_and_alignment_get(module_preamble, &code_alignment, &code_allocation_size); if (status != TX_SUCCESS) { /* Math overflow error occurred. */ return(status); }if (status != TX_SUCCESS) { ... } /* Allocate code memory for the module. */ status = _tx_byte_allocate(&_txm_module_manager_byte_pool, (VOID **) &code_memory_ptr, code_allocation_size, TX_NO_WAIT); /* Determine if the module's code memory allocation was successful. */ if (status != TX_SUCCESS) { /* No memory, return an error. */ return(TX_NO_MEMORY); }if (status != TX_SUCCESS) { ... } /* Copy the module code into memory. */ source_ptr = (UCHAR *) module_location; code_start = (ALIGN_TYPE) code_memory_ptr; code_start = (code_start + (code_alignment - 1)) & ~(code_alignment - 1); destination_ptr = (UCHAR *) code_start; /* Calculate the size. */ copy_size = module_preamble -> txm_module_preamble_code_size; /* Loop to copy the code to RAM. */ for (i = 0; i < copy_size; i++) { /* Copy one byte at a time. */ *destination_ptr++ = *source_ptr++; }for (i = 0; i < copy_size; i++) { ... } /* At this point, the module's instruction area is now in the RAM code area. */ /* Now load it in-place. */ status = _txm_module_manager_internal_load(module_instance, module_name, (VOID *) code_start, code_size, code_memory_ptr, code_allocation_size); if (status != TX_SUCCESS) { /* Release code memory. */ _tx_byte_release(code_memory_ptr); /* Return error. */ return(status); }if (status != TX_SUCCESS) { ... } /* Return success. */ return(TX_SUCCESS); }{ ... }