1/*
2 * Copyright (c) 2021 Sateesh Kotapati
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include "efr32bg2x.dtsi"
8#include <mem.h>
9
10&msc {
11	flash0: flash@0 {
12		compatible = "soc-nv-flash";
13		write-block-size = <4>;
14		erase-block-size = <8192>;
15		reg = <0x0 DT_SIZE_K(512)>;
16	};
17};
18
19&sram0 {
20	reg = <0x20000000 DT_SIZE_K(32)>;
21};
22
23&gpio {
24	interrupts = <10 2 18 2>;
25};
26
27&i2c0 {
28	interrupts = <27 0>;
29};
30
31&i2c1 {
32	interrupts = <28 0>;
33};
34
35&usart0 {
36	interrupts = <13 0>, <14 0>;
37};
38
39&usart1 {
40	interrupts = <15 0>, <16 0>;
41};
42
43&burtc0 {
44	interrupts = <18 0>;
45};
46
47&stimer0 {
48	interrupts = <12 0>;
49};
50