blob: 26f5443d85e18cd7853270ab235b9821e9a3a415 [file] [log] [blame]
Patrice Chotard63185b02020-11-06 08:11:57 +01001// SPDX-License-Identifier: GPL-2.0
Michael Kurzb1a8de72017-01-22 16:04:23 +01002/ {
3 nvic: interrupt-controller@e000e100 {
4 compatible = "arm,armv7m-nvic";
5 interrupt-controller;
6 #interrupt-cells = <1>;
7 reg = <0xe000e100 0xc00>;
8 };
9
10 systick: timer@e000e010 {
11 compatible = "arm,armv7m-systick";
12 reg = <0xe000e010 0x10>;
13 status = "disabled";
14 };
15
16 soc {
17 #address-cells = <1>;
18 #size-cells = <1>;
19 compatible = "simple-bus";
20 interrupt-parent = <&nvic>;
21 ranges;
22 };
23};