fbc55198e7
Reworking the ARM NVIC binding and cleaning it up. Towards this introduce a new compatibility for this new binding. So we rename arm,armv{6,7}-nvic to arm,v{6,7}-nvic (for new binding). We also just use the bit more generic arm,nvic in device tree files. Change-Id: I5a2c45313ed94619d9268f2c035dacbc8acded29 Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
26 lines
439 B
Plaintext
26 lines
439 B
Plaintext
#include "skeleton.dtsi"
|
|
|
|
/ {
|
|
soc {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
compatible = "simple-bus";
|
|
interrupt-parent = <&nvic>;
|
|
ranges;
|
|
|
|
nvic: interrupt-controller@e000e100 {
|
|
compatible = "arm,nvic";
|
|
reg = <0xe000e100 0xc00>;
|
|
interrupt-controller;
|
|
#interrupt-cells = <2>;
|
|
};
|
|
|
|
systick: timer@e000e010 {
|
|
compatible = "arm,armv7m-systick";
|
|
reg = <0xe000e010 0x10>;
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|
|
|