blob: 31349da75aa4a9ce2b6f2dc61413cef0f7a88cb8 [file] [log] [blame]
Michael Kurzb1a8de72017-01-22 16:04:23 +01001#include "skeleton.dtsi"
2
3/ {
4 nvic: interrupt-controller@e000e100 {
5 compatible = "arm,armv7m-nvic";
6 interrupt-controller;
7 #interrupt-cells = <1>;
8 reg = <0xe000e100 0xc00>;
9 };
10
11 systick: timer@e000e010 {
12 compatible = "arm,armv7m-systick";
13 reg = <0xe000e010 0x10>;
14 status = "disabled";
15 };
16
17 soc {
18 #address-cells = <1>;
19 #size-cells = <1>;
20 compatible = "simple-bus";
21 interrupt-parent = <&nvic>;
22 ranges;
23 };
24};
25