target/xtensa: avoid IHI for writes to non-executable memory
[openocd.git] / src / rtos / FreeRTOS.c
index 5f779ef70cf30636f27c48db5ab51f8abb669cc9..e8df030aad883d6b38780f66e099fbcd30395fd0 100644 (file)
@@ -1,4 +1,4 @@
-/* SPDX-License-Identifier: GPL-2.0-or-later */
+// SPDX-License-Identifier: GPL-2.0-or-later
 
 /***************************************************************************
  *   Copyright (C) 2011 by Broadcom Corporation                            *
@@ -71,20 +71,6 @@ static const struct freertos_params freertos_params_list[] = {
        &rtos_standard_cortex_m4f_stacking,
        &rtos_standard_cortex_m4f_fpu_stacking,
        },
-       {
-       "nds32_v3",                     /* target_name */
-       4,                                              /* thread_count_width; */
-       4,                                              /* pointer_width; */
-       16,                                             /* list_next_offset; */
-       20,                                             /* list_width; */
-       8,                                              /* list_elem_next_offset; */
-       12,                                             /* list_elem_content_offset */
-       0,                                              /* thread_stack_offset; */
-       52,                                             /* thread_name_offset; */
-       &rtos_standard_nds32_n1068_stacking,    /* stacking_info */
-       &rtos_standard_cortex_m4f_stacking,
-       &rtos_standard_cortex_m4f_fpu_stacking,
-       },
 };
 
 static bool freertos_detect_rtos(struct target *target);
@@ -94,7 +80,7 @@ static int freertos_get_thread_reg_list(struct rtos *rtos, int64_t thread_id,
                struct rtos_reg **reg_list, int *num_regs);
 static int freertos_get_symbol_list_to_lookup(struct symbol_table_elem *symbol_list[]);
 
-struct rtos_type freertos_rtos = {
+const struct rtos_type freertos_rtos = {
        .name = "FreeRTOS",
 
        .detect_rtos = freertos_detect_rtos,
@@ -116,6 +102,7 @@ enum freertos_symbol_values {
        FREERTOS_VAL_X_SUSPENDED_TASK_LIST = 8,
        FREERTOS_VAL_UX_CURRENT_NUMBER_OF_TASKS = 9,
        FREERTOS_VAL_UX_TOP_USED_PRIORITY = 10,
+       FREERTOS_VAL_X_SCHEDULER_RUNNING = 11,
 };
 
 struct symbols {
@@ -135,6 +122,7 @@ static const struct symbols freertos_symbol_list[] = {
        { "xSuspendedTaskList", true }, /* Only if INCLUDE_vTaskSuspend */
        { "uxCurrentNumberOfTasks", false },
        { "uxTopUsedPriority", true }, /* Unavailable since v7.5.3 */
+       { "xSchedulerRunning", false },
        { NULL, false }
 };
 
@@ -194,7 +182,20 @@ static int freertos_update_threads(struct rtos *rtos)
                                                                                rtos->symbols[FREERTOS_VAL_PX_CURRENT_TCB].address,
                                                                                rtos->current_thread);
 
-       if ((thread_list_size  == 0) || (rtos->current_thread == 0)) {
+       /* read scheduler running */
+       uint32_t scheduler_running;
+       retval = target_read_u32(rtos->target,
+                       rtos->symbols[FREERTOS_VAL_X_SCHEDULER_RUNNING].address,
+                       &scheduler_running);
+       if (retval != ERROR_OK) {
+               LOG_ERROR("Error reading FreeRTOS scheduler state");
+               return retval;
+       }
+       LOG_DEBUG("FreeRTOS: Read xSchedulerRunning at 0x%" PRIx64 ", value 0x%" PRIx32,
+                                                                               rtos->symbols[FREERTOS_VAL_X_SCHEDULER_RUNNING].address,
+                                                                               scheduler_running);
+
+       if ((thread_list_size  == 0) || (rtos->current_thread == 0) || (scheduler_running != 1)) {
                /* Either : No RTOS threads - there is always at least the current execution though */
                /* OR     : No current thread - all threads suspended - show the current execution
                 * of idling */
@@ -311,7 +312,6 @@ static int freertos_update_threads(struct rtos *rtos)
                                (list_elem_ptr != prev_list_elem_ptr) &&
                                (tasks_found < thread_list_size)) {
                        /* Get the location of the thread structure. */
-                       rtos->thread_details[tasks_found].threadid = 0;
                        retval = target_read_u32(rtos->target,
                                        list_elem_ptr + param->list_elem_content_offset,
                                        &pointer_casts_are_bad);
@@ -364,6 +364,7 @@ static int freertos_update_threads(struct rtos *rtos)
 
                        tasks_found++;
                        list_thread_count--;
+                       rtos->thread_count = tasks_found;
 
                        prev_list_elem_ptr = list_elem_ptr;
                        list_elem_ptr = 0;
@@ -382,7 +383,6 @@ static int freertos_update_threads(struct rtos *rtos)
        }
 
        free(list_of_lists);
-       rtos->thread_count = tasks_found;
        return 0;
 }
 
@@ -422,7 +422,8 @@ static int freertos_get_thread_reg_list(struct rtos *rtos, int64_t thread_id,
        int cm4_fpu_enabled = 0;
        struct armv7m_common *armv7m_target = target_to_armv7m(rtos->target);
        if (is_armv7m(armv7m_target)) {
-               if (armv7m_target->fp_feature == FPV4_SP) {
+               if ((armv7m_target->fp_feature == FPV4_SP) || (armv7m_target->fp_feature == FPV5_SP) ||
+                               (armv7m_target->fp_feature == FPV5_DP)) {
                        /* Found ARM v7m target which includes a FPU */
                        uint32_t cpacr;
 

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)