Skip to content

Commit ceb44f9

Browse files
author
Deepika
committed
Overloaded ctor for new parameter tz_module
1 parent 044dfb1 commit ceb44f9

File tree

2 files changed

+41
-12
lines changed

2 files changed

+41
-12
lines changed

rtos/Thread.cpp

+9-4
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ extern "C" void thread_terminate_hook(osThreadId_t id)
4343

4444
namespace rtos {
4545

46-
void Thread::constructor(osPriority priority,
47-
uint32_t stack_size, unsigned char *stack_mem, const char *name, uint32_t tz_module) {
46+
void Thread::constructor(uint32_t tz_module, osPriority priority,
47+
uint32_t stack_size, unsigned char *stack_mem, const char *name) {
4848

4949
const uintptr_t unaligned_mem = reinterpret_cast<uintptr_t>(stack_mem);
5050
const uintptr_t aligned_mem = ALIGN_UP(unaligned_mem, 8);
@@ -63,9 +63,14 @@ void Thread::constructor(osPriority priority,
6363
_attr.tz_module = tz_module;
6464
}
6565

66+
void Thread::constructor(osPriority priority,
67+
uint32_t stack_size, unsigned char *stack_mem, const char *name) {
68+
constructor(MBED_TZ_DEFAULT_ACCESS, priority, stack_size, stack_mem, name);
69+
}
70+
6671
void Thread::constructor(Callback<void()> task,
67-
osPriority priority, uint32_t stack_size, unsigned char *stack_mem, const char *name, uint32_t tz_module) {
68-
constructor(priority, stack_size, stack_mem, name, tz_module);
72+
osPriority priority, uint32_t stack_size, unsigned char *stack_mem, const char *name) {
73+
constructor(MBED_TZ_DEFAULT_ACCESS, priority, stack_size, stack_mem, name);
6974

7075
switch (start(task)) {
7176
case osErrorResource:

rtos/Thread.h

+32-8
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,11 @@ namespace rtos {
7575
*/
7676

7777
/* 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
8183
#endif
8284

8385
class Thread : private mbed::NonCopyable<Thread> {
@@ -87,17 +89,34 @@ class Thread : private mbed::NonCopyable<Thread> {
8789
@param stack_size stack size (in bytes) requirements for the thread function. (default: OS_STACK_SIZE).
8890
@param stack_mem pointer to the stack area to be used by this thread (default: NULL).
8991
@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)
9192
93+
@note Default value of tz_module will be MBED_TZ_DEFAULT_ACCESS
9294
@note You cannot call this function from ISR context.
9395
*/
9496

9597
Thread(osPriority priority=osPriorityNormal,
9698
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);
99101
}
100102

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+
101120
/** Create a new thread, and start it executing the specified function.
102121
@param task function to be executed by this thread.
103122
@param priority initial priority of the thread function. (default: osPriorityNormal).
@@ -436,12 +455,17 @@ class Thread : private mbed::NonCopyable<Thread> {
436455
void constructor(osPriority priority=osPriorityNormal,
437456
uint32_t stack_size=OS_STACK_SIZE,
438457
unsigned char *stack_mem=NULL,
439-
const char *name=NULL, uint32_t tz_module=TZ_DEFAULT_ACCESS);
458+
const char *name=NULL);
440459
void constructor(mbed::Callback<void()> task,
441460
osPriority priority=osPriorityNormal,
442461
uint32_t stack_size=OS_STACK_SIZE,
443462
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);
445469
static void _thunk(void * thread_ptr);
446470

447471
mbed::Callback<void()> _task;

0 commit comments

Comments
 (0)