File tree Expand file tree Collapse file tree 3 files changed +39
-1
lines changed Expand file tree Collapse file tree 3 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 3
3
* SPDX-License-Identifier: Apache-2.0
4
4
*/
5
5
6
+ #include <zephyr/dt-bindings/memory-attr/memory-attr-arm.h>
6
7
#include <mem.h>
7
8
8
9
/ {
13
14
soc {
14
15
ram012: memory@20000000 {
15
16
compatible = "mmio-sram";
16
- reg = <0x20000000 DT_SIZE_K(512)>;
17
+ reg = <0x20000000 DT_SIZE_K(511)>;
18
+ };
19
+ sram0_shared: memory@2007fc00 {
20
+ compatible = "zephyr,memory-region", "mmio-sram";
21
+ reg = <0x2007fc00 DT_SIZE_K(1)>;
22
+ device_type = "memory";
23
+ zephyr,memory-region = "sram0_shared";
24
+ zephyr,memory-attr = <(DT_MEM_ARM(ATTR_MPU_RAM_NOCACHE))>;
25
+ };
26
+ sram1_shared: memory@20400000 {
27
+ compatible = "zephyr,memory-region", "mmio-sram";
28
+ reg = <0x20400000 DT_SIZE_K(64)>;
29
+ device_type = "memory";
30
+ zephyr,memory-region = "sram1_shared";
31
+ zephyr,memory-attr = <(DT_MEM_ARM(ATTR_MPU_RAM_NOCACHE))>;
17
32
};
18
33
};
19
34
};
Original file line number Diff line number Diff line change 129
129
status = "disabled";
130
130
};
131
131
132
+ mailbox: mailbox@50082000 {
133
+ compatible = "sifli,sf32lb-mailbox";
134
+ reg = <0x50082000 0x1000>;
135
+ interrupts = <58 1>;
136
+ status = "disabled";
137
+ };
138
+
132
139
usart1: serial@50084000 {
133
140
compatible = "sifli,sf32lb-usart";
134
141
reg = <0x50084000 0x400>;
Original file line number Diff line number Diff line change
1
+ # Mailbox Bluetooth HCI device
2
+
3
+ description : Bluetooth HCI behind a mailbox IPC device (H:4)
4
+
5
+ compatible : " sifli,sf32lb-mailbox"
6
+
7
+ include : bt-hci.yaml
8
+
9
+ properties :
10
+ bt-hci-name :
11
+ default : " mailbox"
12
+ bt-hci-bus :
13
+ default : " virtual"
14
+
15
+ mail-cells :
16
+ - channel
You can’t perform that action at this time.
0 commit comments