There are several additional APIs available to the resident portion of the application, as follows.
-
txm_module_manager_absolute_load - Module’s code and data are at absolute (fixed) addresses
-
txm_module_manager_external_memory_enable - Enable module access to a shared memory space
-
txm_module_manager_file_load - Load module from file via FileX
-
txm_module_manager_in_place_load - Load module data, execute in place
-
txm_module_manager_initialize - Initialize the module manager
-
txm_module_manager_mm_initialize - Initialize the memory management hardware
-
txm_module_manager_maximum_module_priority_set - Set the maximum thread priority allowed in a module
-
txm_module_manager_memory_fault_notify - Register an application callback on memory fault
-
txm_module_manager_memory_load - Load the module from memory
-
txm_module_manager_object_pool_create - Create an object pool for modules
-
txm_module_manager_properties_get - Get module properties
-
txm_module_manager_start - Start execution of the specified module
-
txm_module_manager_stop - Stop execution of the specified module
-
txm_module_manager_unload - Unload the module
Module’s code and data are at absolute (fixed) addresses.
UINT txm_module_manager_absolute_load(
TXM_MODULE_INSTANCE *module_instance,
CHAR *module_name,
VOID *module_location);
This service initializes the module contained in the specified location and prepares it for execution. There is no code or data relocation, thus position-independence is not necessary.
-
module_instance Pointer to the instance of the module.
-
module_name Name of the module.
-
module_location Pointer to module’s code area, preamble first.
-
TX_SUCCESS (0x00) Successful module load.
-
TX_CALLER_ERROR (0x13) Invalid caller.
-
TX_NOT_AVAILABLE (0x1D) Manager not initialized.
-
TX_NO_MEMORY (0x10) Not enough memory to load module.
-
TX_PTR_ERROR (0x03) Invalid pointer, module instance, or module preamble.
-
TXM_MODULE_ALIGNMENT_ERROR (0xF0) Invalid alignment.
-
TXM_MODULE_ALREADY_LOADED (0xF1) Module already loaded.
-
TXM_MODULE_INVALID (0xF2) Invalid module preamble.
-
TXM_MODULE_INVALID_PROPERTIES (0xF3) Incompatible properties.
TXM_MODULE_INSTANCE my_module;
/* Initialize the module manager. */
status = txm_module_manager_initialize((VOID*)0x64010000,0x10000);
/* Load the module that has its code area at address 0x080F0000. */
txm_module_manager_absolute_load(&my_module, "my module", (VOID *) 0x080F0000);
/* Start the module. */
status = txm_module_manager_start(&my_module);
Enable module to access a shared memory space.
UINT txm_module_manager_external_memory_enable(
TXM_MODULE_INSTANCE *module_instance,
VOID *start_address,
ULONG length,
UINT attributes);
This service creates an entry in the memory management hardware table for a shared memory region that the module can access.
-
module_instance Pointer to the instance of the module.
-
start_address Starting address of shared memory region.
-
length Length of shared memory region.
-
attributes Attributes of memory region (cache, read, write, etc.). Attributes are port-specific; see appendix for attributes format.
-
TX_SUCCESS (0x00) Memory entry created successfully.
-
TX_NOT_AVAILABLE (0x1D) Manager not initialized or feature not available.
-
TX_PTR_ERROR (0x03) Invalid module instance.
-
TX_START_ERROR (0x10) Module not in loaded state.
-
TXM_MODULE_ALIGNMENT_ERROR (0xF0) Invalid start address alignment.
-
TXM_MODULE_INVALID_PROPERTIES (0xF3) Incompatible properties.
TXM_MODULE_INSTANCE my_module;
/* Initialize the module manager with 64KB of RAM starting at address 0x64010000. */
txm_module_manager_initialize((VOID *) 0x64010000, 0x10000);
/* Load the module that has its code area at address 0x080F0000. */
txm_module_manager_in_place_load(&my_module, "my module", (VOID *) 0x080F0000);
/* Create a shared memory space 256 bytes long at address 0x64005000
with read & write, no execute, outer & inner write back cache
attributes. Note that these attributes are port-specific. */
txm_module_manager_external_memory_enable(&my_module, (VOID*)0x64005000, 256, 0x3F);
Load module from file via FileX.
UINT txm_module_manager_file_load(
TXM_MODULE_INSTANCE *module_instance,
CHAR *module_name,
FX_MEDIA *media_ptr,
CHAR *file_name);
This service loads the binary image of the module contained in the specified file into the module memory area and prepares it for execution. It is assumed that the supplied media is already opened.
Note
|
The FileX system is utilized to load the file. In order to enable FileX access, the module, module library, Module Manager and the ThreadX library (with the Module Manager sources) must be built with FX_FILEX_PRESENT defined in the projects. |
-
module_instance Pointer to the instance of the module.
-
module_name Name of the module.
-
media_ptr Pointer to already opened FileX media.
-
file_name Name of module’s binary file.
-
TX_SUCCESS (0x00) Successful module load.
-
TX_CALLER_ERROR (0x13) Invalid caller.
-
TX_NOT_AVAILABLE (0x1D) Manager not initialized.
-
TX_NO_MEMORY (0x10) Not enough memory to load module.
-
TX_NOT_DONE (0x20) Media not open, file not found or file is invalid.
-
TX_PTR_ERROR (0x03) Invalid module pointer.
-
TXM_MODULE_ALIGNMENT_ERROR (0xF0) Invalid alignment.
-
TXM_MODULE_ALREADY_LOADED (0xF1) Module already loaded.
-
TXM_MODULE_INVALID (0xF2)
Invalid module preamble.
-
TXM_MODULE_INVALID_PROPERTIES (0xF3) Incompatible properties.
TXM_MODULE_INSTANCE my_module;
/* Initialize the module manager. */
status = txm_module_manager_initialize((VOID*)0x64010000,0x10000);
/* Load the module from a binary file. */
status = txm_module_manager_file_load(&my_module, "my module",
&sdio_disk, "demo_thread_module.bin");
/* Start the module. */
status = txm_module_manager_start(&my_module);
Load module data only, execute module in existing location.
UINT txm_module_manager_in_place_load(
TXM_MODULE_INSTANCE *module_instance,
CHAR *module_name,
VOID *location);
This service loads the module’s data area only into the module memory area and prepares it for execution. Module code execution will be in-place, that is, from the address offset specified by the module preamble at the supplied location.
-
module_instance Pointer to the instance of the module.
-
module_name Name of the module.
-
location Pointer to module’s code area, preamble first.
-
TX_SUCCESS (0x00) Successful module load.
-
TX_CALLER_ERROR (0x13) Invalid caller.
-
TX_NOT_AVAILABLE (0x1D) Manager not initialized.
-
TX_NO_MEMORY (0x10) Not enough memory to load module.
-
TX_PTR_ERROR (0x03) Invalid pointer, module instance, or module preamble.
-
TXM_MODULE_ALIGNMENT_ERROR (0xF0) Invalid alignment.
-
TXM_MODULE_ALREADY_LOADED (0xF1) Module already loaded.
-
TXM_MODULE_INVALID (0xF2) Invalid module preamble.
-
TXM_MODULE_INVALID_PROPERTIES (0xF3) Incompatible properties.
TXM_MODULE_INSTANCE my_module;
/* Initialize the module manager with 64KB of RAM starting at address 0x64010000. */
txm_module_manager_initialize((VOID *) 0x64010000, 0x10000);
/* Load the module that has its code area at address 0x080F0000. */
txm_module_manager_in_place_load(&my_module, "my module", (VOID *) 0x080F0000);
/* Start the module. */
txm_module_manager_start(&my_module);
Initialize the module manager.
This service initializes the Module Manager’s internal resources, including the memory area used for loading modules.
-
module_memory_start Pointer to the start of module memory.
-
module_memory_size Size in bytes of the module memory.
/* Initialize the module manager with 64KB of RAM starting at
address 0x64010000. */
txm_module_manager_initialize((VOID *) 0x64010000, 0x10000);
Initialize the memory management hardware.
Set the maximum thread priority allowed in a module.
UINT txm_module_manager_maximum_module_priority_set(
TXM_MODULE_INSTANCE *module_instance,
UINT priority);
-
module_instance Pointer to the instance of the module.
-
priority Maximum thread priority.
-
TX_SUCCESS (0x00) Successful initialization.
-
TX_NOT_AVAILABLE (0x1D) Manager not initialized.
-
TX_PTR_ERROR (0x03) Invalid module instance.
-
TX_START_ERROR (0x10) Module not in loaded state.
Register an application callback on memory fault.
UINT txm_module_manager_memory_fault_notify(
VOID (*notify_function)(TX_THREAD *, MODULE_INSTANCE *));
This service registers the specified application memory fault notification callback function with the Module Manager. If a memory fault occurs, this function is called with a pointer to the offending thread and the module instance corresponding to the offending thread. The Module Manager processing automatically terminates the offending thread, but leaves any other threads in the module untouched. It is up to the application to decide what to do with the module associated with the memory fault.
Please see the internal _txm_module_manager_memory_fault_info struct for specific information on the memory fault itself.
Note
|
The memory fault notification callback function is executed directly from the memory fault exception, so only ThreadX APIs Allowed from interrupt service routines can be called. Thus, in order to stop and unload the offending module, the application notification callback must send a signal to an application task so that the module can be stopped and unloaded. |
-
notify_function Function pointer to the application’s memory fault notification callback. Supplying a NULL value disables the memory fault notification.
Load module from memory.
UINT txm_module_manager_memory_load (
TXM_MODULE_INSTANCE *module_instance,
CHAR *module_name,
VOID *location);
This service loads the module’s code and data area into the module memory area set up by txm_module_manager_initialize and prepares it for execution.
-
module_instance Pointer to the instance of the module.
-
module_name Name of the module.
-
location Pointer to module’s code area, preamble first.
-
TX_SUCCESS (0x00) Successful module load.
-
TX_CALLER_ERROR (0x13) Invalid caller.
-
TX_NOT_AVAILABLE (0x1D) Manager not initialized.
-
TX_NO_MEMORY (0x10) Not enough memory to load module.
-
TX_PTR_ERROR (0x03) Invalid pointer, module instance, or module preamble.
-
TXM_MODULE_ALIGNMENT_ERROR (0xF0) Invalid alignment.
-
TXM_MODULE_ALREADY_LOADED (0xF1) Module already loaded.
-
TXM_MODULE_INVALID (0xF2) Invalid module preamble.
-
TXM_MODULE_INVALID_PROPERTIES (0xF3) Incompatible properties.
TXM_MODULE_INSTANCE my_module;
/* Initialize the module manager with 64KB of RAM starting at address 0x64010000. */
txm_module_manager_initialize((VOID *) 0x64010000, 0x10000);
/* Load the module that has its code area at address 0x080F0000. */
txm_module_manager_memory_load(&my_module, "my module", (VOID *) 0x080F0000);
Create an object pool for modules.
UINT txm_module_manager_object_pool_create(
VOID *pool_memory_start,
ULONG pool_memory_size);
This service creates a Module Manager object memory pool that the modules can allocate ThreadX/NetX Duo objects from, thereby keeping the system object out of the module’s memory area.
-
pool_memory_start Pointer to the start of object memory.
-
pool_memory_size Size in bytes of the object memory pool.
TXM_MODULE_INSTANCE my_module;
/* Initialize the module manager with 64KB of RAM starting at address 0x64010000. */
txm_module_manager_initialize((VOID *) 0x64010000, 0x10000);
/* Create an object memory pool in the next 64KB of memory. */
txm_module_manager_object_pool_create((VOID *) 0x64020000, 0x10000);
Get module properties.
UINT txm_module_manager_properties_get(
TXM_MODULE_INSTANCE *module_instance,
ULONG *module_properties_ptr);
-
module_instance Pointer to the module instance.
-
module_properties_ptr Pointer to destination for module’s properties.
-
TX_SUCCESS (0x00) Successful initialization.
-
TX_PTR_ERROR (0x03) Invalid pointer.
-
TX_CALLER_ERROR (0x13) Invalid caller.
TXM_MODULE_INSTANCE my_module;
ULONG module_properties;
/* Initialize the module manager with 64KB of RAM starting at address 0x64010000. */
txm_module_manager_initialize((VOID *) 0x64010000, 0x10000);
/* Create an object memory pool in the next 64KB of memory. */
txm_module_manager_object_pool_create((VOID *) 0x64020000, 0x10000);
/* Load the module that has its code area at address 0x080F0000. */
txm_module_manager_in_place_load(&my_module, "my module", (VOID *) 0x080F0000);
/* Get module properties. */
txm_module_manager_properties_get(&my_module, &module_properties);
Start execution of the module.
-
TX_SUCCESS (0x00) Successful module start.
-
TX_CALLER_ERROR (0x13) Invalid caller.
-
TX_NOT_AVAILABLE (0x1D) Manager not initialized.
-
TX_PTR_ERROR (0x03) Invalid pointer or module instance.
-
TX_START_ERROR (0x10) Module already started.
/* Start the module. */
txm_module_manager_start(&my_module);
/* Let the module run for a while. */
tx_thread_sleep(2000);
/* Stop the module. */
txm_module_manager_stop(&my_module);
/* Unload the module. */
txm_module_manager_unload(&my_module);
Stop execution of the module.
This service stops a module that was previously loaded and started. Stopping a module includes executing the module’s optional stop thread, terminating all threads, and deleting all resources associated with the module.
-
TX_SUCCESS (0x00) Successful module stop.
-
TX_CALLER_ERROR (0x13) Invalid caller.
-
TX_NOT_AVAILABLE (0x1D) Manager not initialized.
-
TX_PTR_ERROR (0x03) Invalid pointer or module instance.
-
TX_START_ERROR (0x10) Module not started.
/* Start the module. */
txm_module_manager_start(&my_module);
/* Let the module run for a while. */
tx_thread_sleep(20000);
/* Stop the module. */
txm_module_manager_stop(&my_module);
/* Unload the module. */
txm_module_manager_unload(&my_module);
Unload the module.
This service unloads the previously loaded and stopped module, freeing all the associated module memory resources.
-
TX_SUCCESS 0x00) Successful module unload.
-
TX_CALLER_ERROR (0x13) Invalid caller.
-
TX_NOT_AVAILABLE (0x1D) Manager not initialized.
-
TX_NOT_DONE (0x20) Invalid module or module not stopped.
-
TX_PTR_ERROR (0x03) Invalid pointer or module instance.
/* Stop the module. */
txm_module_manager_stop(&my_module);
/* Unload the module. */
status = txm_module_manager_unload(&my_module);