1/* SPDX-License-Identifier: Apache-2.0 */
2
3#include "skeleton.dtsi"
4
5/ {
6	soc {
7		#address-cells = <1>;
8		#size-cells = <1>;
9		compatible = "simple-bus";
10		interrupt-parent = <&nvic>;
11		ranges;
12
13		nvic: interrupt-controller@e000e100  {
14			#address-cells = <1>;
15			compatible = "arm,v8m-nvic";
16			reg = <0xe000e100 0xc00>;
17			interrupt-controller;
18			#interrupt-cells = <2>;
19		};
20
21		systick: timer@e000e010 {
22			compatible = "arm,armv8m-systick";
23			reg = <0xe000e010 0x10>;
24		};
25	};
26};
27
28