mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2026-01-08 18:24:39 +00:00
19 lines
309 B
Plaintext
19 lines
309 B
Plaintext
#include "skeleton.dtsi"
|
|
|
|
/ {
|
|
nvic: nv-interrupt-controller {
|
|
compatible = "arm,armv7m-nvic";
|
|
interrupt-controller;
|
|
#interrupt-cells = <1>;
|
|
reg = <0xe000e100 0xc00>;
|
|
};
|
|
|
|
soc {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
compatible = "simple-bus";
|
|
interrupt-parent = <&nvic>;
|
|
ranges;
|
|
};
|
|
};
|