arm64: dts: Add ARM PMUv3 DT node in NS2 DT
authorAnup Patel <anup.patel@broadcom.com>
Fri, 2 Oct 2015 17:54:21 +0000 (23:24 +0530)
committerFlorian Fainelli <f.fainelli@gmail.com>
Mon, 16 Nov 2015 18:51:58 +0000 (10:51 -0800)
The NS2 SoC has Cortex-A57 CPUs which support ARM PMUv3 so,
lets enable ARM PMUv3 in NS2 DT.

Signed-off-by: Anup Patel <anup.patel@broadcom.com>
Reviewed-by: Vikram Prakash <vikramp@broadcom.com>
Reviewed-by: Ray Jui <rjui@broadcom.com>
Reviewed-by: Scott Branden <sbranden@broadcom.com>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
arch/arm64/boot/dts/broadcom/ns2.dtsi

index 5d2ac6b548b1aa103bbbecca10794b6a61fd9091..bc31c0e6eec49817387f5d5987c6e5cf5e8d2767 100644 (file)
@@ -44,7 +44,7 @@
                #address-cells = <2>;
                #size-cells = <0>;
 
-               cpu@0 {
+               A57_0: cpu@0 {
                        device_type = "cpu";
                        compatible = "arm,cortex-a57", "arm,armv8";
                        reg = <0 0>;
@@ -53,7 +53,7 @@
                        next-level-cache = <&CLUSTER0_L2>;
                };
 
-               cpu@1 {
+               A57_1: cpu@1 {
                        device_type = "cpu";
                        compatible = "arm,cortex-a57", "arm,armv8";
                        reg = <0 1>;
@@ -62,7 +62,7 @@
                        next-level-cache = <&CLUSTER0_L2>;
                };
 
-               cpu@2 {
+               A57_2: cpu@2 {
                        device_type = "cpu";
                        compatible = "arm,cortex-a57", "arm,armv8";
                        reg = <0 2>;
@@ -71,7 +71,7 @@
                        next-level-cache = <&CLUSTER0_L2>;
                };
 
-               cpu@3 {
+               A57_3: cpu@3 {
                        device_type = "cpu";
                        compatible = "arm,cortex-a57", "arm,armv8";
                        reg = <0 3>;
                              IRQ_TYPE_EDGE_RISING)>;
        };
 
+       pmu {
+               compatible = "arm,armv8-pmuv3";
+               interrupts = <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>,
+                            <GIC_SPI 169 IRQ_TYPE_LEVEL_HIGH>,
+                            <GIC_SPI 170 IRQ_TYPE_LEVEL_HIGH>,
+                            <GIC_SPI 171 IRQ_TYPE_LEVEL_HIGH>;
+               interrupt-affinity = <&A57_0>,
+                                    <&A57_1>,
+                                    <&A57_2>,
+                                    <&A57_3>;
+       };
+
        soc: soc {
                compatible = "simple-bus";
                #address-cells = <1>;
This page took 0.035092 seconds and 5 git commands to generate.