Skip to content
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

tests: drivers: flash: common: run on SDP MSPI #20542

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/test-spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,7 @@
- "tests/drivers/audio/**/*"
- "tests/drivers/spi/**/*"
- "tests/zephyr/drivers/i2c/**/*"
- "tests/zephyr/drivers/flash/**/*"
- "tests/drivers/uart/**/*"
- "tests/zephyr/drivers/uart/**/*"

Expand Down
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -917,6 +917,7 @@
/tests/tfm/ @nrfconnect/ncs-aegir @stephen-nordic @magnev
/tests/unity/ @nordic-krch
/tests/subsys/zigbee/ @nrfconnect/ncs-zigbee
/tests/zephyr/drivers/flash/common/ @nrfconnect/ncs-low-level-test @nrfconnect/ncs-ll-ursus
/tests/zephyr/drivers/i2c/i2c_bme688/ @nrfconnect/ncs-low-level-test
/tests/zephyr/drivers/i2c/i2c_target_api/ @nrfconnect/ncs-low-level-test
/tests/zephyr/drivers/spi/ @nrfconnect/ncs-low-level-test
Expand Down
2 changes: 1 addition & 1 deletion applications/sdp/mspi/Kconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
config SDP_MSPI_MAX_RESPONSE_SIZE
int "Max size of response that can be sent to APP core. In bytes."
default 128
default 524

config SDP_MSPI_IPC_NO_COPY
bool "IPC no copy mode"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@ CONFIG_OUTPUT_DISASSEMBLY=y
CONFIG_COMMON_LIBC_MALLOC=n

CONFIG_COMPILER_OPT="-fshort-enums"
CONFIG_PBUF_RX_READ_BUF_SIZE=1024
1 change: 1 addition & 0 deletions scripts/ci/tags.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1312,6 +1312,7 @@ ci_tests_drivers_sdp:
- nrf/snippets/sdp/
- nrf/tests/drivers/gpio/egpio_basic_api/
- nrf/tests/drivers/sdp_asm/
- nrf/tests/zephyr/drivers/flash/
- zephyr/drivers/mbox/
- zephyr/subsys/ipc/ipc_service/
- nrf/samples/zephyr/basic/blinky/
Expand Down
1 change: 1 addition & 0 deletions snippets/sdp/mspi/app.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ CONFIG_MSPI=y
CONFIG_MBOX=y
CONFIG_IPC_SERVICE=y
CONFIG_IPC_SERVICE_BACKEND_ICMSG=y
CONFIG_PBUF_RX_READ_BUF_SIZE=1024

# Additional compiler flags
CONFIG_COMPILER_OPT="-fshort-enums"
4 changes: 0 additions & 4 deletions snippets/sdp/mspi/soc/nrf54l15_cpuapp.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@
psels = <NRF_PSEL(SDP_MSPI_SCK, 2, 1)>,
<NRF_PSEL(SDP_MSPI_DQ0, 2, 2)>,
<NRF_PSEL(SDP_MSPI_DQ1, 2, 4)>,
<NRF_PSEL(SDP_MSPI_DQ2, 2, 3)>,
<NRF_PSEL(SDP_MSPI_DQ3, 2, 0)>,
<NRF_PSEL(SDP_MSPI_CS0, 2, 5)>;
nordic,drive-mode = <NRF_DRIVE_S0S1>;
};
Expand All @@ -91,8 +89,6 @@
psels = <NRF_PSEL(SDP_MSPI_SCK, 2, 1)>,
<NRF_PSEL(SDP_MSPI_DQ0, 2, 2)>,
<NRF_PSEL(SDP_MSPI_DQ1, 2, 4)>,
<NRF_PSEL(SDP_MSPI_DQ2, 2, 3)>,
<NRF_PSEL(SDP_MSPI_DQ3, 2, 0)>,
<NRF_PSEL(SDP_MSPI_CS0, 2, 5)>;
low-power-enable;
};
Expand Down
7 changes: 7 additions & 0 deletions tests/zephyr/drivers/flash/common/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause

cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(nrf_qspi_nor)

target_sources(app PRIVATE src/main.c)
14 changes: 14 additions & 0 deletions tests/zephyr/drivers/flash/common/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright (c) 2024, Nordic Semiconductor ASA
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause

# Device/scenario dependent information that is not available in
# other ways.

config TEST_DRIVER_FLASH_SIZE
int "Size of flash device under test"
default -1
help
Expected flash device size the test will validate against. If the flash driver does not
support the get_size() API, leave this set as -1 to skip the test.

source "Kconfig.zephyr"
6 changes: 6 additions & 0 deletions tests/zephyr/drivers/flash/common/prj.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
CONFIG_TEST=y
CONFIG_ZTEST=y
CONFIG_FLASH=y
CONFIG_FLASH_PAGE_LAYOUT=y
CONFIG_MAIN_STACK_SIZE=2048
CONFIG_ZTEST_STACK_SIZE=4096
Loading