File tree Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (c) 2019 Steven Lemaire
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+
7
+ #include <mem.h>
8
+ #include <silabs/efr32mg24.dtsi>
9
+
10
+ / {
11
+ sram0: memory@20000000 {
12
+ reg = <0x20000000 DT_SIZE_K(256)>;
13
+ };
14
+
15
+ soc {
16
+ compatible = "silabs,efr32mg24b210f1536im48",
17
+ "silabs,efr32mg24",
18
+ "silabs,efr32",
19
+ "simple-bus";
20
+ };
21
+ };
22
+
23
+ &flash0 {
24
+ reg = <0x08000000 DT_SIZE_K(1536)>;
25
+ };
Original file line number Diff line number Diff line change @@ -19,15 +19,21 @@ config SOC_PART_NUMBER_EFR32MG24B310F1536IM48
19
19
bool
20
20
select SOC_SERIES_EFR32MG24
21
21
22
+ config SOC_PART_NUMBER_EFR32MG24B210F1536IM48
23
+ bool
24
+ select SOC_SERIES_EFR32MG24
25
+
22
26
config SOC_SERIES
23
27
default "efr32mg24" if SOC_SERIES_EFR32MG24
24
28
25
29
config SOC
26
30
default "efr32mg24b220f1536im48" if SOC_PART_NUMBER_EFR32MG24B220F1536IM48
27
31
default "efr32mg24b310f1536im48" if SOC_PART_NUMBER_EFR32MG24B310F1536IM48
32
+ default "efr32mg24b210f1536im48" if SOC_PART_NUMBER_EFR32MG24B210F1536IM48
28
33
default "efr32mg24b020f1536im40" if SOC_PART_NUMBER_EFR32MG24B020F1536IM40
29
34
30
35
config SOC_PART_NUMBER
31
36
default "EFR32MG24B220F1536IM48" if SOC_PART_NUMBER_EFR32MG24B220F1536IM48
32
37
default "EFR32MG24B310F1536IM48" if SOC_PART_NUMBER_EFR32MG24B310F1536IM48
38
+ default "EFR32MG24B210F1536IM48" if SOC_PART_NUMBER_EFR32MG24B210F1536IM48
33
39
default "EFR32MG24B020F1536IM40" if SOC_PART_NUMBER_EFR32MG24B020F1536IM40
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ family:
51
51
socs :
52
52
- name : efr32mg24b220f1536im48
53
53
- name : efr32mg24b310f1536im48
54
+ - name : efr32mg24b210f1536im48
54
55
- name : efr32mg24b020f1536im40
55
56
- name : efr32bg27
56
57
socs :
You can’t perform that action at this time.
0 commit comments