-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
boards: intel: ish: Improve Simics support #82657
Merged
kartben
merged 1 commit into
zephyrproject-rtos:main
from
golowanow:ish_simics_20241206
Dec 12, 2024
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 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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# Copyright (c) 2023 Intel Corporation | ||
# Copyright (c) 2023-2024 Intel Corporation | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
set(SUPPORTED_EMU_PLATFORMS simics) | ||
|
||
board_finalize_emu_args(simics) |
This file contains 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 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 |
---|---|---|
|
@@ -11,6 +11,7 @@ simulation: | |
supported: | ||
- serial | ||
testing: | ||
timeout_multiplier: 2 | ||
ignore_tags: | ||
- net | ||
- bluetooth | ||
|
This file contains 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 |
---|---|---|
@@ -1,30 +1,42 @@ | ||
# Copyright (c) 2023 Intel Corporation | ||
# Copyright (c) 2023-2024 Intel Corporation | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
find_program( | ||
SIMICS | ||
NAMES simics | ||
NO_DEFAULT_PATH | ||
PATHS ENV SIMICS_PROJECT | ||
# Search exactly for the project's autogenerated 'trampoline' script. | ||
) | ||
|
||
zephyr_get(SIMICS_SCRIPT_PATH SYSBUILD GLOBAL) | ||
if(SIMICS_SCRIPT_PATH) | ||
set(SIMICS_SCRIPT ${SIMICS_SCRIPT_PATH}) | ||
if(SIMICS STREQUAL SIMICS-NOTFOUND) | ||
message(WARNING "Simics simulator environment is not found at SIMICS_PROJECT:'${SIMICS_PROJECT}'") | ||
else() | ||
set(SIMICS_SCRIPT ${BOARD_DIR}/support/${BOARD}.simics) | ||
endif() | ||
message(STATUS "Found Simics: ${SIMICS}") | ||
|
||
get_property(SIMICS_ARGS GLOBAL PROPERTY "BOARD_EMU_ARGS_simics") | ||
zephyr_get(SIMICS_SCRIPT_PATH SYSBUILD GLOBAL) | ||
if(SIMICS_SCRIPT_PATH) | ||
set(SIMICS_SCRIPT ${SIMICS_SCRIPT_PATH}) | ||
else() | ||
set(SIMICS_SCRIPT ${BOARD_DIR}/support/${BOARD}.simics) | ||
endif() | ||
|
||
add_custom_target(run_simics | ||
COMMAND | ||
${SIMICS} | ||
-no-gui | ||
-no-win | ||
${SIMICS_SCRIPT} | ||
${SIMICS_ARGS} | ||
-e run | ||
WORKING_DIRECTORY ${APPLICATION_BINARY_DIR} | ||
DEPENDS ${logical_target_for_zephyr_elf} | ||
USES_TERMINAL | ||
) | ||
get_property(SIMICS_ARGS GLOBAL PROPERTY "BOARD_EMU_ARGS_simics") | ||
|
||
add_custom_target(run_simics | ||
COMMAND | ||
${SIMICS} | ||
-no-gui | ||
--no-win | ||
--batch-mode | ||
${SIMICS_SCRIPT} | ||
${SIMICS_ARGS} | ||
$ENV{SIMICS_EXTRA_ARGS} | ||
-e run | ||
WORKING_DIRECTORY ${APPLICATION_BINARY_DIR} | ||
DEPENDS ${logical_target_for_zephyr_elf} | ||
USES_TERMINAL | ||
) | ||
|
||
endif() |
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.
Should we use
EXTRA_SIMICS_ARGS
to be aligned with other Zephyr CMake settings, likeEXTRA_CONF_FILE
,EXTRA_CFLAGS
, etc. ?Also, using
zephyr_get(EXTRA_SIMICS_ARGS ...)
will allow users to choose freely between sysbuild, CMake var-DEXTRA_SIMICS_ARGS=<val>
, or environment variable and not force them into using env vars.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.
SIMICS_EXTRA_ARGS
got its name as one of many otherSIMICS_*
env variables which belong to Simics integration on the host level; its purpose - to pass through some custom platform parameters from user/CI to the simulator runtime through all the layers, so it is not in Zephyr naming domain.Currently there is no need to ingest values there from other sources (CMake etc.) with
zephyr_get()
, but may be helpful to do that later (good idea, thanks @tejlmand).