diff options
author | Marc Gonzalez <marc_gonzalez@sigmadesigns.com> | 2015-12-15 10:39:19 +0100 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2015-12-23 00:12:07 +0100 |
commit | cad008b8a77e66b799db3aa128873542b3fb9256 (patch) | |
tree | 86ab07f4ab26f56e62b961872da3118b554fa4f9 /arch/arm/boot/dts/tango4-smp8758.dtsi | |
parent | Merge tag 'sunxi-dt-for-4.5-2' of https://git.kernel.org/pub/scm/linux/kernel... (diff) | |
download | linux-cad008b8a77e66b799db3aa128873542b3fb9256.tar.xz linux-cad008b8a77e66b799db3aa128873542b3fb9256.zip |
ARM: dts: tango4: Initial device trees
This device tree was tested on a Sigma Designs SMP8758 Vantage-1172
Rev E1 development board.
Signed-off-by: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
Reviewed-by: Kevin Hilman <khilman@linaro.org>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/boot/dts/tango4-smp8758.dtsi')
-rw-r--r-- | arch/arm/boot/dts/tango4-smp8758.dtsi | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/tango4-smp8758.dtsi b/arch/arm/boot/dts/tango4-smp8758.dtsi new file mode 100644 index 000000000000..7ed88ee629fb --- /dev/null +++ b/arch/arm/boot/dts/tango4-smp8758.dtsi @@ -0,0 +1,31 @@ +#include <dt-bindings/interrupt-controller/arm-gic.h> + +/ { + cpus { + #address-cells = <1>; + #size-cells = <0>; + enable-method = "sigma,tango4-smp"; + + cpu0: cpu@0 { + compatible = "arm,cortex-a9"; + next-level-cache = <&l2cc>; + device_type = "cpu"; + reg = <0>; + }; + + cpu1: cpu@1 { + compatible = "arm,cortex-a9"; + next-level-cache = <&l2cc>; + device_type = "cpu"; + reg = <1>; + }; + }; + + pmu { + compatible = "arm,cortex-a9-pmu"; + interrupt-affinity = <&cpu0>, <&cpu1>; + interrupts = + <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>, + <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>; + }; +}; |