mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
ca9341d470
Tested-by: Chanwoo Choi <cw00.choi@samsung.com> Signed-off-by: Maxime Coquelin <mcoquelin.stm32@gmail.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
25 lines
428 B
Plaintext
25 lines
428 B
Plaintext
#include "skeleton.dtsi"
|
|
|
|
/ {
|
|
nvic: nv-interrupt-controller {
|
|
compatible = "arm,armv7m-nvic";
|
|
interrupt-controller;
|
|
#interrupt-cells = <1>;
|
|
reg = <0xe000e100 0xc00>;
|
|
};
|
|
|
|
systick: timer@e000e010 {
|
|
compatible = "arm,armv7m-systick";
|
|
reg = <0xe000e010 0x10>;
|
|
status = "disabled";
|
|
};
|
|
|
|
soc {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
compatible = "simple-bus";
|
|
interrupt-parent = <&nvic>;
|
|
ranges;
|
|
};
|
|
};
|