Skip to content

Commit 80ecf44

Browse files
bjarki-andreasenNordicBuilder
authored andcommitted
tests: zephyr: drivers: spi: nrf54l only supports up to 8MHz SPIM
The nrf54l series SoCs only support up to 8MHz SPIM, though the spi_controller_peripheral sets the SPIM frequency to 16MHz. This now fails since nrfx checks if the applied frequency is valid. Update the spi_controller_peripheral tests to set the SPIM freq to 8MHz. Signed-off-by: Bjarki Arge Andreasen <bjarki.andreasen@nordicsemi.no>
1 parent 804ffb6 commit 80ecf44

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/zephyr/drivers/spi/spi_controller_peripheral/boards/nrf54ls05dk_nrf54ls05b_cpuapp.overlay

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
dut_spi_dt: test-spi-dev@0 {
5959
compatible = "vnd,spi-device";
6060
reg = <0>;
61-
spi-max-frequency = <DT_FREQ_M(16)>;
61+
spi-max-frequency = <DT_FREQ_M(8)>;
6262
};
6363
};
6464

tests/zephyr/drivers/spi/spi_controller_peripheral/boards/nrf54lv10dk_nrf54lv10a_cpuapp.overlay

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
dut_spi_dt: test-spi-dev@0 {
6666
compatible = "vnd,spi-device";
6767
reg = <0>;
68-
spi-max-frequency = <DT_FREQ_M(16)>;
68+
spi-max-frequency = <DT_FREQ_M(8)>;
6969
};
7070
};
7171

tests/zephyr/drivers/spi/spi_controller_peripheral/boards/nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
dut_spi_dt: test-spi-dev@0 {
6666
compatible = "vnd,spi-device";
6767
reg = <0>;
68-
spi-max-frequency = <DT_FREQ_M(16)>;
68+
spi-max-frequency = <DT_FREQ_M(8)>;
6969
};
7070
};
7171

0 commit comments

Comments
 (0)