1/*
2 * Copyright (c) 2024 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	soc {
9		reserved-memory {
10			#address-cells = <1>;
11			#size-cells = <1>;
12
13			sram_tx: memory@20018000 {
14				reg = <0x20018000 0x0800>;
15			};
16
17			sram_rx: memory@20020000 {
18				reg = <0x20020000 0x0800>;
19			};
20		};
21	};
22
23	ipc {
24		ipc0: ipc0 {
25			compatible = "zephyr,ipc-icmsg";
26			dcache-alignment = <32>;
27			tx-region = <&sram_tx>;
28			rx-region = <&sram_rx>;
29			mboxes = <&cpuflpr_vevif_rx 21>, <&cpuflpr_vevif_tx 20>;
30			mbox-names = "rx", "tx";
31			status = "okay";
32		};
33	};
34};
35
36&cpuflpr_vevif_rx {
37	status = "okay";
38};
39
40&cpuflpr_vevif_tx {
41	status = "okay";
42};
43
44&uart30 {
45	/delete-property/ hw-flow-control;
46};
47