-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathnrf54lv10dk_nrf54lv10a_cpuflpr.overlay
More file actions
88 lines (71 loc) · 1.28 KB
/
nrf54lv10dk_nrf54lv10a_cpuflpr.overlay
File metadata and controls
88 lines (71 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
* Copyright (c) 2024 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/
/ {
reserved-memory {
#address-cells = <1>;
#size-cells = <1>;
sram_tx: memory@2002b000 {
reg = <0x2002b000 0x07f0>;
};
sram_rx: memory@2002b7f0 {
reg = <0x2002b7f0 0x07f0>;
};
cpuflpr_error_code: memory@2002bfe0 {
reg = <0x2002bfe0 0x0020>; /* 32 bytes */
};
};
ipc {
ipc0: ipc0 {
compatible = "zephyr,ipc-icmsg";
tx-region = <&sram_tx>;
rx-region = <&sram_rx>;
mboxes = <&cpuflpr_vevif_rx 16>, <&cpuflpr_vevif_tx 20>;
mbox-names = "rx", "tx";
status = "okay";
};
};
};
&cpuflpr_rram {
reg = <0xf9400 DT_SIZE_K(15)>;
ranges = <0x0 0xf9400 DT_SIZE_K(15)>;
};
&cpuflpr_code_partition {
reg = <0x0 DT_SIZE_K(15)>;
};
&cpuflpr_sram {
reg = <0x2002c000 DT_SIZE_K(15)>;
ranges = <0x0 0x2002c000 0x3c00>;
};
&cpuflpr_vevif_rx {
status = "okay";
interrupts = <16 NRF_DEFAULT_IRQ_PRIORITY>;
nordic,tasks = <1>;
nordic,tasks-mask = <0x00010000>;
};
&cpuflpr_vevif_tx {
status = "okay";
};
&gpio0 {
status = "disabled";
};
&gpio1 {
status = "disabled";
};
&gpiote20 {
status = "disabled";
};
&gpiote30 {
status = "disabled";
};
&grtc {
status = "disabled";
};
&uart20 {
status = "disabled";
};
&uart30 {
status = "disabled";
};