Skip to content

Commit 3a9be80

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 5ca313d commit 3a9be80

4 files changed

Lines changed: 4 additions & 4 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

west.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ manifest:
6565
# https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html
6666
- name: zephyr
6767
repo-path: sdk-zephyr
68-
revision: pull/4001/head
68+
revision: fbc1377458028323f2281716e08216b6d40e0459
6969
import:
7070
# In addition to the zephyr repository itself, NCS also
7171
# imports the contents of zephyr/west.yml at the above

0 commit comments

Comments
 (0)