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