mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 05:06:44 +07:00
4980f9bc2c
This is initial device tree support for the ARM Integrator family, we create a very basic device tree, #ifdef out the non-DT machines when compiling for device tree. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
34 lines
567 B
Plaintext
34 lines
567 B
Plaintext
/*
|
|
* SoC core Device Tree for the ARM Integrator platforms
|
|
*/
|
|
|
|
/include/ "skeleton.dtsi"
|
|
|
|
/ {
|
|
timer@13000000 {
|
|
reg = <0x13000000 0x100>;
|
|
interrupt-parent = <&pic>;
|
|
interrupts = <5>;
|
|
};
|
|
|
|
timer@13000100 {
|
|
reg = <0x13000100 0x100>;
|
|
interrupt-parent = <&pic>;
|
|
interrupts = <6>;
|
|
};
|
|
|
|
timer@13000200 {
|
|
reg = <0x13000200 0x100>;
|
|
interrupt-parent = <&pic>;
|
|
interrupts = <7>;
|
|
};
|
|
|
|
pic@14000000 {
|
|
compatible = "arm,versatile-fpga-irq";
|
|
#interrupt-cells = <1>;
|
|
interrupt-controller;
|
|
reg = <0x14000000 0x100>;
|
|
clear-mask = <0xffffffff>;
|
|
};
|
|
};
|