-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
boards: intel: ish: Improve Simics support
Improve Simics support for `boards/intel/ish/intel_ish_5_8_0` for better integration with the simulator. Signed-off-by: Dmitrii Golovanov <[email protected]>
- Loading branch information
Showing
4 changed files
with
37 additions
and
23 deletions.
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() |