Commit 613880a1 authored by Robert Schwebel's avatar Robert Schwebel Committed by Arnd Bergmann

ARM: vexpress/ca9: Add interrupt-affinity to the PMU node

Commit 9fd85eb5 ("ARM: pmu: add support for interrupt-affinity
property") added an optional "interrupt-affinity" property, to specify
the CPU affinity for each SPI listed in the interrupts property.

Without this property, we get this boot warning:

  CPU PMU: Failed to parse <no-node>/interrupt-affinity[0]

This patch adds interrupt-affinity to the PMU node in the
vexpress-v2p-ca9 device tree.
Signed-off-by: default avatarRobert Schwebel <r.schwebel@pengutronix.de>
Acked-by: default avatarSudeep Holla <sudeep.holla@arm.com>
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 2004f98a
...@@ -33,28 +33,28 @@ cpus { ...@@ -33,28 +33,28 @@ cpus {
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
cpu@0 { A9_0: cpu@0 {
device_type = "cpu"; device_type = "cpu";
compatible = "arm,cortex-a9"; compatible = "arm,cortex-a9";
reg = <0>; reg = <0>;
next-level-cache = <&L2>; next-level-cache = <&L2>;
}; };
cpu@1 { A9_1: cpu@1 {
device_type = "cpu"; device_type = "cpu";
compatible = "arm,cortex-a9"; compatible = "arm,cortex-a9";
reg = <1>; reg = <1>;
next-level-cache = <&L2>; next-level-cache = <&L2>;
}; };
cpu@2 { A9_2: cpu@2 {
device_type = "cpu"; device_type = "cpu";
compatible = "arm,cortex-a9"; compatible = "arm,cortex-a9";
reg = <2>; reg = <2>;
next-level-cache = <&L2>; next-level-cache = <&L2>;
}; };
cpu@3 { A9_3: cpu@3 {
device_type = "cpu"; device_type = "cpu";
compatible = "arm,cortex-a9"; compatible = "arm,cortex-a9";
reg = <3>; reg = <3>;
...@@ -182,6 +182,8 @@ pmu { ...@@ -182,6 +182,8 @@ pmu {
<0 61 4>, <0 61 4>,
<0 62 4>, <0 62 4>,
<0 63 4>; <0 63 4>;
interrupt-affinity = <&A9_0>, <&A9_1>, <&A9_2>, <&A9_3>;
}; };
dcc { dcc {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment