Skip to content
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
4 changes: 2 additions & 2 deletions snippets/sdp/mspi/board/nrf54l15dk_nrf54l15_cpuapp.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
t-exit-dpd = <35000>;
reset-gpios = <&gpio2 0 GPIO_ACTIVE_LOW>;

mspi-max-frequency = <DT_FREQ_M(1)>;
mspi-io-mode = "MSPI_IO_MODE_SINGLE";
mspi-max-frequency = <DT_FREQ_M(13)>;
mspi-io-mode = "MSPI_IO_MODE_QUAD_1_4_4";
mspi-data-rate = "MSPI_DATA_RATE_SINGLE";
mspi-hardware-ce-num = <0>;
mspi-cpp-mode = "MSPI_CPP_MODE_0";
Expand Down
1 change: 1 addition & 0 deletions snippets/sdp/mspi/sdp-mspi-app.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

sdp_mspi: sdp_mspi {
compatible = "nordic,nrfe-mspi-controller";
software-multiperipheral;
#address-cells = <1>;
#size-cells = <0>;
};
Expand Down
4 changes: 4 additions & 0 deletions snippets/sdp/mspi/soc/nrf54l15_cpuapp.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@
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 @@ -89,6 +91,8 @@
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
3 changes: 3 additions & 0 deletions tests/zephyr/drivers/flash/common/single.overlay
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
&mx25r64 {
mspi-io-mode = "MSPI_IO_MODE_SINGLE";
};
8 changes: 7 additions & 1 deletion tests/zephyr/drivers/flash/common/testcase.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@ common:
- flash
- ci_tests_drivers_sdp
tests:
nrf.extended.drivers.flash.common.sdp:
nrf.extended.drivers.flash.common.sdp.quad:
platform_allow:
- nrf54l15dk/nrf54l15/cpuapp
integration_platforms:
- nrf54l15dk/nrf54l15/cpuapp
nrf.extended.drivers.flash.common.sdp.single:
platform_allow:
- nrf54l15dk/nrf54l15/cpuapp
integration_platforms:
- nrf54l15dk/nrf54l15/cpuapp
extra_args: EXTRA_DTC_OVERLAY_FILE="single.overlay"