2019-04-06 21:08:09 +08:00
|
|
|
/* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
|
2018-02-07 06:47:58 +08:00
|
|
|
#include "skeleton.dtsi"
|
|
|
|
|
|
|
|
/ {
|
|
|
|
soc {
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
compatible = "simple-bus";
|
|
|
|
interrupt-parent = <&nvic>;
|
|
|
|
ranges;
|
|
|
|
|
|
|
|
nvic: interrupt-controller@e000e100 {
|
2021-06-24 02:13:42 +08:00
|
|
|
#address-cells = <1>;
|
2018-02-07 06:47:58 +08:00
|
|
|
compatible = "arm,v8m-nvic";
|
|
|
|
reg = <0xe000e100 0xc00>;
|
|
|
|
interrupt-controller;
|
|
|
|
#interrupt-cells = <2>;
|
|
|
|
};
|
|
|
|
|
|
|
|
systick: timer@e000e010 {
|
|
|
|
compatible = "arm,armv8m-systick";
|
|
|
|
reg = <0xe000e010 0x10>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|