File tree Expand file tree Collapse file tree 3 files changed +50
-2
lines changed Expand file tree Collapse file tree 3 files changed +50
-2
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 <arm/armv8-m.dtsi>
7
+ #include <zephyr/dt-bindings/memory-attr/memory-attr-arm.h>
6
8
#include <mem.h>
7
9
8
10
/ {
13
15
soc {
14
16
ram012: memory@20000000 {
15
17
compatible = "mmio-sram";
16
- reg = <0x20000000 DT_SIZE_K(512)>;
17
- };
18
+ reg = <0x20000000 DT_SIZE_K(511)>;
19
+ };
20
+ sram0_shared: memory@2007fc00 {
21
+ /* Last 1 kB of sram0 */
22
+ compatible = "zephyr,memory-region", "mmio-sram";
23
+ reg = <0x2007fc00 DT_SIZE_K(1)>;
24
+ device_type = "memory";
25
+ zephyr,memory-region = "sram0_shared";
26
+ zephyr,memory-attr = <(DT_MEM_ARM(ATTR_MPU_RAM_NOCACHE))>;
27
+ };
28
+ sram1_shared: memory@20400000 {
29
+ /* Last 1 kB of sram0 */
30
+ compatible = "zephyr,memory-region", "mmio-sram";
31
+ reg = <0x20400000 DT_SIZE_K(64)>;
32
+ device_type = "memory";
33
+ zephyr,memory-region = "sram1_shared";
34
+ zephyr,memory-attr = <(DT_MEM_ARM(ATTR_MPU_RAM_NOCACHE))>;
35
+ };
18
36
};
19
37
};
Original file line number Diff line number Diff line change 117
117
status = "disabled";
118
118
};
119
119
120
+
120
121
dmac: dma-controller@50081000 {
121
122
compatible = "sifli,sf32lb-dmac";
122
123
reg = <0x50081000 0x1000>;
135
136
interrupts = <59 0>;
136
137
status = "disabled";
137
138
};
139
+ mbox: mbox@50082000 {
140
+ compatible = "sifli,bt-mbox";
141
+ reg = <0x50082000 0x1000>;
142
+ interrupts = <58 1>;
143
+ status = "okay";
144
+ };
145
+
146
+ usart1: serial@50084000 {
147
+ compatible = "sifli,sf32lb-usart";
148
+ reg = <0x50084000 0x400>;
149
+ interrupts = <59 0>;
150
+ status = "disabled";
151
+ };
138
152
139
153
gpioa: gpio@500a0000 {
140
154
compatible = "sifli,sf32lb-gpio-parent";
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,bt-mbox"
6
+
7
+ include : bt-hci.yaml
8
+
9
+ properties :
10
+ bt-hci-name :
11
+ default : " mbox"
12
+ bt-hci-bus :
13
+ default : " virtual"
14
+
15
+ mbox-cells :
16
+ - channel
You can’t perform that action at this time.
0 commit comments