-
Notifications
You must be signed in to change notification settings - Fork 349
Test user-space and enable CONFIG_USERSPACE on select platforms #10119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,62 @@ | ||
| // SPDX-License-Identifier: BSD-3-Clause | ||
| /* | ||
| * Copyright(c) 2025 Intel Corporation. | ||
| */ | ||
|
|
||
| #include <sof/boot_test.h> | ||
|
|
||
| #include <zephyr/kernel.h> | ||
| #include <zephyr/ztest.h> | ||
| #include <zephyr/logging/log.h> | ||
|
|
||
| LOG_MODULE_DECLARE(sof_boot_test, LOG_LEVEL_DBG); | ||
|
|
||
| #define USER_STACKSIZE 2048 | ||
|
|
||
| static struct k_thread user_thread; | ||
| static K_THREAD_STACK_DEFINE(user_stack, USER_STACKSIZE); | ||
| K_SEM_DEFINE(user_sem, 0, 1); | ||
|
|
||
| static void user_function(void *p1, void *p2, void *p3) | ||
| { | ||
| __ASSERT(k_is_user_context(), "isn't user"); | ||
| LOG_INF("SOF thread %s (%s)", | ||
| k_is_user_context() ? "UserSpace!" : "privileged mode.", | ||
| CONFIG_BOARD_TARGET); | ||
| } | ||
|
|
||
| static void user_sem_function(void *p1, void *p2, void *p3) | ||
| { | ||
| __ASSERT(k_is_user_context(), "isn't user"); | ||
| LOG_INF("SOF thread %s (%s)", | ||
| k_is_user_context() ? "UserSpace!" : "privileged mode.", | ||
| CONFIG_BOARD_TARGET); | ||
| k_sem_give(&user_sem); | ||
| } | ||
|
|
||
| static void test_user_thread(void) | ||
| { | ||
| k_thread_create(&user_thread, user_stack, USER_STACKSIZE, | ||
| user_function, NULL, NULL, NULL, | ||
| -1, K_USER, K_MSEC(0)); | ||
| k_thread_join(&user_thread, K_FOREVER); | ||
| } | ||
|
|
||
| static void test_user_thread_with_sem(void) | ||
| { | ||
| /* Start in 10ms to have time to grant the thread access to the semaphore */ | ||
| k_thread_create(&user_thread, user_stack, USER_STACKSIZE, | ||
| user_sem_function, NULL, NULL, NULL, | ||
| -1, K_USER, K_MSEC(10)); | ||
| k_thread_access_grant(&user_thread, &user_sem); | ||
| k_sem_take(&user_sem, K_FOREVER); | ||
| k_thread_join(&user_thread, K_FOREVER); | ||
| } | ||
|
|
||
| ZTEST(sof_boot, user_space) | ||
| { | ||
| test_user_thread(); | ||
| test_user_thread_with_sem(); | ||
|
|
||
| ztest_test_pass(); | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The static thread stack
user_stackis reused betweentest_user_thread()andtest_user_thread_with_lock(). This could lead to race conditions or stack corruption if both functions are called concurrently or if the previous thread hasn't fully terminated. Consider using separate stacks or ensuring proper synchronization.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tests are executed sequentially, no danger of racing.