-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: drivers: flash: common: add SDP MSPI API test configuration
Add yaml configuration to enable SDP MSPI API test. Signed-off-by: Jakub Zymelka <jakub.zymelka@nordicsemi.no>
- Loading branch information
1 parent
bf40899
commit a599a79
Showing
1 changed file
with
106 additions
and
0 deletions.
There are no files selected for viewing
106 changes: 106 additions & 0 deletions
106
scripts/twister/alt/zephyr/tests/drivers/flash/common/testcase.yaml
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 |
---|---|---|
@@ -0,0 +1,106 @@ | ||
common: | ||
tags: | ||
- drivers | ||
- flash | ||
tests: | ||
drivers.flash.common.nrf_qspi_nor: | ||
platform_allow: nrf52840dk/nrf52840 | ||
extra_args: EXTRA_CONF_FILE=boards/nrf52840dk_nrf52840_qspi_nor.conf | ||
integration_platforms: | ||
- nrf52840dk/nrf52840 | ||
drivers.flash.common.nrf_qspi_nor.size_in_bytes: | ||
platform_allow: nrf52840dk/nrf52840 | ||
extra_args: | ||
- EXTRA_CONF_FILE=boards/nrf52840dk_nrf52840_qspi_nor.conf | ||
- DTC_OVERLAY_FILE=boards/nrf52840_size_in_bytes.overlay | ||
extra_configs: | ||
- CONFIG_TEST_DRIVER_FLASH_SIZE=8388608 | ||
integration_platforms: | ||
- nrf52840dk/nrf52840 | ||
drivers.flash.common.nrf_qspi_nor_4B_addr: | ||
platform_allow: nrf52840dk/nrf52840 | ||
extra_configs: | ||
- CONFIG_TEST_DRIVER_FLASH_SIZE=67108864 | ||
extra_args: | ||
- EXTRA_CONF_FILE=boards/nrf52840dk_nrf52840_qspi_nor.conf | ||
- DTC_OVERLAY_FILE=boards/nrf52840dk_mx25l51245g.overlay | ||
harness_config: | ||
fixture: external_flash_mx25l51245g | ||
integration_platforms: | ||
- nrf52840dk/nrf52840 | ||
drivers.flash.common.soc_flash_nrf: | ||
platform_allow: nrf52840dk/nrf52840 | ||
extra_args: EXTRA_CONF_FILE=boards/nrf52840dk_nrf52840_soc.conf | ||
integration_platforms: | ||
- nrf52840dk/nrf52840 | ||
drivers.flash.common.default: | ||
filter: ((CONFIG_FLASH_HAS_DRIVER_ENABLED and not CONFIG_TRUSTED_EXECUTION_NONSECURE) | ||
and (dt_label_with_parent_compat_enabled("storage_partition", "fixed-partitions") | ||
or dt_label_with_parent_compat_enabled("storage_partition", "nordic,owned-partitions"))) | ||
integration_platforms: | ||
- qemu_x86 | ||
- mimxrt1060_evk/mimxrt1062/qspi | ||
drivers.flash.common.no_explicit_erase: | ||
platform_allow: | ||
- nrf54l15dk/nrf54l05/cpuapp | ||
- nrf54l09pdk/nrf54l09/cpuapp | ||
- nrf54l15dk/nrf54l10/cpuapp | ||
- nrf54l15dk/nrf54l15/cpuapp | ||
- nrf54h20dk/nrf54h20/cpuapp | ||
drivers.flash.common.tfm_ns: | ||
build_only: true | ||
filter: (CONFIG_FLASH_HAS_DRIVER_ENABLED and CONFIG_TRUSTED_EXECUTION_NONSECURE | ||
and dt_label_with_parent_compat_enabled("storage_partition", "fixed-partitions")) | ||
integration_platforms: | ||
- nrf9161dk/nrf9161/ns | ||
drivers.flash.common.mx25r_high_perf: | ||
platform_allow: nrf52840dk/nrf52840 | ||
extra_configs: | ||
- CONFIG_TEST_DRIVER_FLASH_SIZE=8388608 | ||
extra_args: | ||
- EXTRA_CONF_FILE=boards/nrf52840dk_flash_spi.conf | ||
- DTC_OVERLAY_FILE=boards/nrf52840dk_mx25r_high_perf.overlay | ||
integration_platforms: | ||
- nrf52840dk/nrf52840 | ||
drivers.flash.common.mr_canhubk3_sfdp_runtime: | ||
platform_allow: mr_canhubk3 | ||
extra_configs: | ||
- CONFIG_FLASH_NXP_S32_QSPI_NOR_SFDP_RUNTIME=y | ||
drivers.flash.common.spi_nor: | ||
platform_allow: nrf52840dk/nrf52840 | ||
extra_configs: | ||
- CONFIG_TEST_DRIVER_FLASH_SIZE=2097152 | ||
extra_args: | ||
- EXTRA_CONF_FILE=boards/nrf52840dk_flash_spi.conf | ||
- DTC_OVERLAY_FILE=boards/nrf52840dk_spi_nor.overlay | ||
harness_config: | ||
fixture: external_flash_mx25v1635f | ||
drivers.flash.common.spi_nor_wp_hold: | ||
platform_allow: nrf52840dk/nrf52840 | ||
extra_configs: | ||
- CONFIG_TEST_DRIVER_FLASH_SIZE=2097152 | ||
extra_args: | ||
- EXTRA_CONF_FILE=boards/nrf52840dk_flash_spi.conf | ||
- DTC_OVERLAY_FILE=boards/nrf52840dk_spi_nor_wp_hold.overlay | ||
harness_config: | ||
fixture: external_flash_mx25v1635f | ||
drivers.flash.common.sam0: | ||
platform_allow: | ||
- samd20_xpro | ||
- samr21_xpro | ||
- same54_xpro | ||
drivers.flash.common.gd32: | ||
platform_allow: | ||
- gd32vf103v_eval | ||
- gd32a503v_eval | ||
- gd32f470i_eval | ||
drivers.flash.common.sdp: | ||
platform_allow: | ||
- nrf54l15dk/nrf54l15/cpuapp | ||
integration_platforms: | ||
- nrf54l15dk/nrf54l15/cpuapp | ||
extra_args: | ||
- SB_CONFIG_VPR_LAUNCHER=n | ||
- SB_CONFIG_PARTITION_MANAGER=n | ||
- SB_CONFIG_SDP=y | ||
- SB_CONFIG_SDP_MSPI=y |