1/*
2 * Copyright (c) 2024 Nordic Semiconductor
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/ {
7	soc {
8		reserved-memory {
9			#address-cells = <1>;
10			#size-cells = <1>;
11			cpuflpr_code_partition: image@165000 {
12				/* FLPR core code partition */
13				reg = <0x165000 DT_SIZE_K(96)>;
14			};
15		};
16	};
17};
18
19&uart30 {
20	status = "reserved";
21};
22
23&cpuflpr_vpr {
24	execution-memory = <&cpuflpr_code_partition>;
25};
26
27&cpuapp_vevif_tx {
28	status = "okay";
29};
30