@@ -75,9 +75,11 @@ namespace rtos {
75
75
*/
76
76
77
77
/* This flag can be used to change the default access of all threads in non-secure mode.
78
- TZ_DEFAULT_ACCESS set to 1, means all non-secure threads have access to call secure functions. */
79
- #ifndef TZ_DEFAULT_ACCESS
80
- #define TZ_DEFAULT_ACCESS 0
78
+ MBED_TZ_DEFAULT_ACCESS set to 1, means all non-secure threads have access to call secure functions.
79
+ MBED_TZ_DEFAULT_ACCESS is target specific define, should be set in targets.json file for Cortex-M23/M33 devices.
80
+ */
81
+ #ifndef MBED_TZ_DEFAULT_ACCESS
82
+ #define MBED_TZ_DEFAULT_ACCESS 0
81
83
#endif
82
84
83
85
class Thread : private mbed ::NonCopyable<Thread> {
@@ -87,17 +89,34 @@ class Thread : private mbed::NonCopyable<Thread> {
87
89
@param stack_size stack size (in bytes) requirements for the thread function. (default: OS_STACK_SIZE).
88
90
@param stack_mem pointer to the stack area to be used by this thread (default: NULL).
89
91
@param name name to be used for this thread. It has to stay allocated for the lifetime of the thread (default: NULL)
90
- @param tz_module trustzone thread identifier (osThreadAttr_t::tz_module) (default: TZ_DEFAULT_ACCESS)
91
92
93
+ @note Default value of tz_module will be MBED_TZ_DEFAULT_ACCESS
92
94
@note You cannot call this function from ISR context.
93
95
*/
94
96
95
97
Thread (osPriority priority=osPriorityNormal,
96
98
uint32_t stack_size=OS_STACK_SIZE,
97
- unsigned char *stack_mem=NULL , const char *name=NULL , uint32_t tz_module=TZ_DEFAULT_ACCESS ) {
98
- constructor (priority, stack_size, stack_mem, name, tz_module );
99
+ unsigned char *stack_mem=NULL , const char *name=NULL ) {
100
+ constructor (priority, stack_size, stack_mem, name);
99
101
}
100
102
103
+ /* * Allocate a new thread without starting execution
104
+ @param tz_module trustzone thread identifier (osThreadAttr_t::tz_module)
105
+ @param priority initial priority of the thread function. (default: osPriorityNormal).
106
+ @param stack_size stack size (in bytes) requirements for the thread function. (default: OS_STACK_SIZE).
107
+ @param stack_mem pointer to the stack area to be used by this thread (default: NULL).
108
+ @param name name to be used for this thread. It has to stay allocated for the lifetime of the thread (default: NULL)
109
+
110
+ @note You cannot call this function from ISR context.
111
+ */
112
+
113
+ Thread (uint32_t tz_module, osPriority priority=osPriorityNormal,
114
+ uint32_t stack_size=OS_STACK_SIZE,
115
+ unsigned char *stack_mem=NULL , const char *name=NULL ) {
116
+ constructor (tz_module, priority, stack_size, stack_mem, name);
117
+ }
118
+
119
+
101
120
/* * Create a new thread, and start it executing the specified function.
102
121
@param task function to be executed by this thread.
103
122
@param priority initial priority of the thread function. (default: osPriorityNormal).
@@ -436,12 +455,17 @@ class Thread : private mbed::NonCopyable<Thread> {
436
455
void constructor (osPriority priority=osPriorityNormal,
437
456
uint32_t stack_size=OS_STACK_SIZE,
438
457
unsigned char *stack_mem=NULL ,
439
- const char *name=NULL , uint32_t tz_module=TZ_DEFAULT_ACCESS );
458
+ const char *name=NULL );
440
459
void constructor (mbed::Callback<void ()> task,
441
460
osPriority priority=osPriorityNormal,
442
461
uint32_t stack_size=OS_STACK_SIZE,
443
462
unsigned char *stack_mem=NULL,
444
- const char *name=NULL, uint32_t tz_module=TZ_DEFAULT_ACCESS);
463
+ const char *name=NULL);
464
+ void constructor (uint32_t tz_module,
465
+ osPriority priority=osPriorityNormal,
466
+ uint32_t stack_size=OS_STACK_SIZE,
467
+ unsigned char *stack_mem=NULL ,
468
+ const char *name=NULL );
445
469
static void _thunk (void * thread_ptr);
446
470
447
471
mbed::Callback<void ()> _task;
0 commit comments