2019-04-06 21:08:09 +08:00
|
|
|
/* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
|
2017-01-30 13:59:48 +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>;
|
2017-04-04 04:53:04 +08:00
|
|
|
compatible = "arm,v7m-nvic";
|
2017-01-30 13:59:48 +08:00
|
|
|
reg = <0xe000e100 0xc00>;
|
|
|
|
interrupt-controller;
|
2017-03-24 02:41:32 +08:00
|
|
|
#interrupt-cells = <2>;
|
2017-01-30 13:59:48 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
systick: timer@e000e010 {
|
|
|
|
compatible = "arm,armv7m-systick";
|
|
|
|
reg = <0xe000e010 0x10>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|