2018-03-27 18:17:40 +08:00
|
|
|
#include <arm/armv7-m.dtsi>
|
|
|
|
|
|
|
|
/ {
|
|
|
|
cpus {
|
2018-09-19 03:51:26 +08:00
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
|
2018-03-27 18:17:40 +08:00
|
|
|
cpu@0 {
|
|
|
|
compatible = "arm,cortex-m4f";
|
2018-09-18 20:50:37 +08:00
|
|
|
reg = <0>;
|
2018-03-27 18:17:40 +08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-09-18 20:59:03 +08:00
|
|
|
flash0: flash@0 {
|
2018-03-27 18:17:40 +08:00
|
|
|
compatible = "soc-nv-flash";
|
|
|
|
label = "FLASH_0";
|
|
|
|
};
|
|
|
|
|
2018-09-18 20:59:03 +08:00
|
|
|
sram0: memory@20000000 {
|
|
|
|
device_type = "memory";
|
|
|
|
compatible = "mmio-sram";
|
|
|
|
};
|
|
|
|
|
2018-03-27 18:17:40 +08:00
|
|
|
soc {
|
|
|
|
uart0: uart@40010000 { /* USART0 */
|
|
|
|
compatible = "silabs,efm32-usart";
|
|
|
|
reg = <0x40010000 0x400>;
|
|
|
|
interrupts = <11 0 12 0>;
|
|
|
|
status = "disabled";
|
|
|
|
label = "UART_0";
|
|
|
|
};
|
|
|
|
|
|
|
|
uart1: uart@40010400 { /* USART1 */
|
|
|
|
compatible = "silabs,efm32-usart";
|
|
|
|
reg = <0x40010400 0x400>;
|
|
|
|
interrupts = <19 0 20 0>;
|
|
|
|
status = "disabled";
|
|
|
|
label = "UART_1";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&nvic {
|
|
|
|
arm,num-irq-priority-bits = <3>;
|
|
|
|
};
|