54 lines
656 B
Plaintext
54 lines
656 B
Plaintext
/*
|
|
* Copyright (c) 2023 Antmicro <www.antmicro.com>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "efr32bg2x.dtsi"
|
|
#include <mem.h>
|
|
|
|
&msc {
|
|
flash0: flash@8000000 {
|
|
compatible = "soc-nv-flash";
|
|
write-block-size = <4>;
|
|
erase-block-size = <8192>;
|
|
reg = <0x08000000 DT_SIZE_K(768)>;
|
|
};
|
|
};
|
|
|
|
&sram0 {
|
|
reg = <0x20000000 DT_SIZE_K(64)>;
|
|
};
|
|
|
|
&gpio {
|
|
interrupts = <30 2 31 2>;
|
|
};
|
|
|
|
&i2c0 {
|
|
interrupts = <32 0>;
|
|
};
|
|
|
|
&i2c1 {
|
|
interrupts = <33 0>;
|
|
};
|
|
|
|
&usart0 {
|
|
interrupts = <16 0>, <17 0>;
|
|
};
|
|
|
|
&usart1 {
|
|
interrupts = <18 0>, <19 0>;
|
|
};
|
|
|
|
&burtc0 {
|
|
interrupts = <23 0>;
|
|
};
|
|
|
|
&stimer0 {
|
|
interrupts = <15 0>;
|
|
};
|
|
|
|
&adc0 {
|
|
interrupts = <54 0>;
|
|
};
|