Skip to content

Commit 61665c7

Browse files
committed
[nrf fromlist] samples: drivers: mbox: Enable sample on L09 and L20
Add board overlays required to run mbox sample on nRF54L09 and nRF54L20 targets. Upstream PR #: 87124 Signed-off-by: Sebastian Głąb <sebastian.glab@nordicsemi.no>
1 parent 74ecc0c commit 61665c7

8 files changed

+103
-3
lines changed

samples/drivers/mbox/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ if(CONFIG_BOARD_NRF5340DK_NRF5340_CPUAPP OR
2424
CONFIG_BOARD_NRF54H20DK_NRF54H20_CPUAPP OR
2525
CONFIG_BOARD_NRF54H20DK_NRF54H20_CPURAD OR
2626
CONFIG_BOARD_NRF54L15DK_NRF54L15_CPUAPP OR
27+
CONFIG_BOARD_NRF54L09PDK_NRF54L09_CPUAPP OR
28+
CONFIG_BOARD_NRF54L20PDK_NRF54L20_CPUAPP OR
2729
CONFIG_BOARD_STM32H747I_DISCO_STM32H747XX_M7)
2830
message(STATUS "${BOARD}${BOARD_QUALIFIERS} compile as Main in this sample")
2931
else()

samples/drivers/mbox/Kconfig.sysbuild

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ config REMOTE_BOARD
1818
default "frdm_mcxn947/mcxn947/cpu1" if $(BOARD) = "frdm_mcxn947"
1919
default "nrf54h20dk/nrf54h20/cpuapp" if "$(BOARD)${BOARD_QUALIFIERS}" = "nrf54h20dk/nrf54h20/cpurad"
2020
default "nrf54l15dk/nrf54l15/cpuflpr" if $(BOARD) = "nrf54l15dk"
21+
default "nrf54l09pdk/nrf54l09/cpuflpr" if $(BOARD) = "nrf54l09pdk"
22+
default "nrf54l20pdk/nrf54l20/cpuflpr" if $(BOARD) = "nrf54l20pdk"
2123
default "stm32h747i_disco/stm32h747xx/m4" if $(BOARD) = "stm32h747i_disco"
2224
default "esp32_devkitc_wroom/esp32/appcpu" if "$(BOARD)${BOARD_QUALIFIERS}" = "esp32_devkitc_wroom/esp32/procpu"
2325
default "esp32s3_devkitm/esp32s3/appcpu" if "$(BOARD)${BOARD_QUALIFIERS}" = "esp32s3_devkitm/esp32s3/procpu"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/*
2+
* Copyright 2025 Nordic Semiconductor ASA
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
/ {
7+
mbox-consumer {
8+
compatible = "vnd,mbox-consumer";
9+
mboxes = <&cpuapp_vevif_rx 20>, <&cpuapp_vevif_tx 21>;
10+
mbox-names = "rx", "tx";
11+
};
12+
};
13+
14+
&cpuapp_vevif_rx {
15+
status = "okay";
16+
};
17+
18+
&cpuapp_vevif_tx {
19+
status = "okay";
20+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/*
2+
* Copyright 2025 Nordic Semiconductor ASA
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
/ {
7+
mbox-consumer {
8+
compatible = "vnd,mbox-consumer";
9+
mboxes = <&cpuapp_vevif_rx 20>, <&cpuapp_vevif_tx 21>;
10+
mbox-names = "rx", "tx";
11+
};
12+
};
13+
14+
&cpuapp_vevif_rx {
15+
status = "okay";
16+
};
17+
18+
&cpuapp_vevif_tx {
19+
status = "okay";
20+
};

samples/drivers/mbox/remote/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ if(CONFIG_BOARD_NRF5340DK_NRF5340_CPUNET OR
2323
CONFIG_BOARD_NRF54H20DK_NRF54H20_CPUFLPR OR
2424
CONFIG_BOARD_NRF54H20DK_NRF54H20_CPUAPP OR
2525
CONFIG_BOARD_NRF54L15DK_NRF54L15_CPUFLPR OR
26+
CONFIG_BOARD_NRF54L09PDK_NRF54L09_CPUFLPR OR
27+
CONFIG_BOARD_NRF54L20PDK_NRF54L20_CPUFLPR OR
2628
CONFIG_BOARD_STM32H747I_DISCO_STM32H747XX_M4)
2729
message(STATUS "${BOARD}${BOARD_QUALIFIERS} compile as remote in this sample")
2830
else()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*
2+
* Copyright 2025 Nordic Semiconductor ASA
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
/ {
7+
mbox-consumer {
8+
compatible = "vnd,mbox-consumer";
9+
mboxes = <&cpuflpr_vevif_rx 21>, <&cpuflpr_vevif_tx 20>;
10+
mbox-names = "rx", "tx";
11+
};
12+
};
13+
14+
&cpuflpr_vevif_rx {
15+
status = "okay";
16+
};
17+
18+
&cpuflpr_vevif_tx {
19+
status = "okay";
20+
};
21+
22+
&uart30 {
23+
/delete-property/ hw-flow-control;
24+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*
2+
* Copyright 2025 Nordic Semiconductor ASA
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
/ {
7+
mbox-consumer {
8+
compatible = "vnd,mbox-consumer";
9+
mboxes = <&cpuflpr_vevif_rx 21>, <&cpuflpr_vevif_tx 20>;
10+
mbox-names = "rx", "tx";
11+
};
12+
};
13+
14+
&cpuflpr_vevif_rx {
15+
status = "okay";
16+
};
17+
18+
&cpuflpr_vevif_tx {
19+
status = "okay";
20+
};
21+
22+
&uart30 {
23+
/delete-property/ hw-flow-control;
24+
};

samples/drivers/mbox/sample.yaml

+9-3
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,11 @@ tests:
7171
- "Ping \\(on channel 18\\)"
7272
- "Pong \\(on channel 12\\)"
7373

74-
sample.drivers.mbox.nrf54l15:
74+
sample.drivers.mbox.nrf54l:
7575
platform_allow:
7676
- nrf54l15dk/nrf54l15/cpuapp
77+
- nrf54l09pdk/nrf54l09/cpuapp
78+
- nrf54l20pdk/nrf54l20/cpuapp
7779
integration_platforms:
7880
- nrf54l15dk/nrf54l15/cpuapp
7981
extra_args: mbox_SNIPPET=nordic-flpr
@@ -86,9 +88,11 @@ tests:
8688
- "Ping \\(on channel 21\\)"
8789
- "Pong \\(on channel 20\\)"
8890

89-
sample.drivers.mbox.nrf54l15_no_multithreading:
91+
sample.drivers.mbox.nrf54l_no_multithreading:
9092
platform_allow:
9193
- nrf54l15dk/nrf54l15/cpuapp
94+
- nrf54l09pdk/nrf54l09/cpuapp
95+
- nrf54l20pdk/nrf54l20/cpuapp
9296
integration_platforms:
9397
- nrf54l15dk/nrf54l15/cpuapp
9498
extra_args:
@@ -104,9 +108,11 @@ tests:
104108
- "Ping \\(on channel 21\\)"
105109
- "Pong \\(on channel 20\\)"
106110

107-
sample.drivers.mbox.nrf54l15_remote_no_multithreading:
111+
sample.drivers.mbox.nrf54l_remote_no_multithreading:
108112
platform_allow:
109113
- nrf54l15dk/nrf54l15/cpuapp
114+
- nrf54l09pdk/nrf54l09/cpuapp
115+
- nrf54l20pdk/nrf54l20/cpuapp
110116
integration_platforms:
111117
- nrf54l15dk/nrf54l15/cpuapp
112118
extra_args:

0 commit comments

Comments
 (0)