~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 * APM X-Gene SoC PMU bindings
  2 
  3 This is APM X-Gene SoC PMU (Performance Monitoring Unit) module.
  4 The following PMU devices are supported:
  5 
  6   L3C                   - L3 cache controller
  7   IOB                   - IO bridge
  8   MCB                   - Memory controller bridge
  9   MC                    - Memory controller
 10 
 11 The following section describes the SoC PMU DT node binding.
 12 
 13 Required properties:
 14 - compatible            : Shall be "apm,xgene-pmu" for revision 1 or
 15                           "apm,xgene-pmu-v2" for revision 2.
 16 - regmap-csw            : Regmap of the CPU switch fabric (CSW) resource.
 17 - regmap-mcba           : Regmap of the MCB-A (memory bridge) resource.
 18 - regmap-mcbb           : Regmap of the MCB-B (memory bridge) resource.
 19 - reg                   : First resource shall be the CPU bus PMU resource.
 20 - interrupts            : Interrupt-specifier for PMU IRQ.
 21 
 22 Required properties for L3C subnode:
 23 - compatible            : Shall be "apm,xgene-pmu-l3c".
 24 - reg                   : First resource shall be the L3C PMU resource.
 25 
 26 Required properties for IOB subnode:
 27 - compatible            : Shall be "apm,xgene-pmu-iob".
 28 - reg                   : First resource shall be the IOB PMU resource.
 29 
 30 Required properties for MCB subnode:
 31 - compatible            : Shall be "apm,xgene-pmu-mcb".
 32 - reg                   : First resource shall be the MCB PMU resource.
 33 - enable-bit-index      : The bit indicates if the according MCB is enabled.
 34 
 35 Required properties for MC subnode:
 36 - compatible            : Shall be "apm,xgene-pmu-mc".
 37 - reg                   : First resource shall be the MC PMU resource.
 38 - enable-bit-index      : The bit indicates if the according MC is enabled.
 39 
 40 Example:
 41         csw: csw@7e200000 {
 42                 compatible = "apm,xgene-csw", "syscon";
 43                 reg = <0x0 0x7e200000 0x0 0x1000>;
 44         };
 45 
 46         mcba: mcba@7e700000 {
 47                 compatible = "apm,xgene-mcb", "syscon";
 48                 reg = <0x0 0x7e700000 0x0 0x1000>;
 49         };
 50 
 51         mcbb: mcbb@7e720000 {
 52                 compatible = "apm,xgene-mcb", "syscon";
 53                 reg = <0x0 0x7e720000 0x0 0x1000>;
 54         };
 55 
 56         pmu: pmu@78810000 {
 57                 compatible = "apm,xgene-pmu-v2";
 58                 #address-cells = <2>;
 59                 #size-cells = <2>;
 60                 ranges;
 61                 regmap-csw = <&csw>;
 62                 regmap-mcba = <&mcba>;
 63                 regmap-mcbb = <&mcbb>;
 64                 reg = <0x0 0x78810000 0x0 0x1000>;
 65                 interrupts = <0x0 0x22 0x4>;
 66 
 67                 pmul3c@7e610000 {
 68                         compatible = "apm,xgene-pmu-l3c";
 69                         reg = <0x0 0x7e610000 0x0 0x1000>;
 70                 };
 71 
 72                 pmuiob@7e940000 {
 73                         compatible = "apm,xgene-pmu-iob";
 74                         reg = <0x0 0x7e940000 0x0 0x1000>;
 75                 };
 76 
 77                 pmucmcb@7e710000 {
 78                         compatible = "apm,xgene-pmu-mcb";
 79                         reg = <0x0 0x7e710000 0x0 0x1000>;
 80                         enable-bit-index = <0>;
 81                 };
 82 
 83                 pmucmcb@7e730000 {
 84                         compatible = "apm,xgene-pmu-mcb";
 85                         reg = <0x0 0x7e730000 0x0 0x1000>;
 86                         enable-bit-index = <1>;
 87                 };
 88 
 89                 pmucmc@7e810000 {
 90                         compatible = "apm,xgene-pmu-mc";
 91                         reg = <0x0 0x7e810000 0x0 0x1000>;
 92                         enable-bit-index = <0>;
 93                 };
 94 
 95                 pmucmc@7e850000 {
 96                         compatible = "apm,xgene-pmu-mc";
 97                         reg = <0x0 0x7e850000 0x0 0x1000>;
 98                         enable-bit-index = <1>;
 99                 };
100 
101                 pmucmc@7e890000 {
102                         compatible = "apm,xgene-pmu-mc";
103                         reg = <0x0 0x7e890000 0x0 0x1000>;
104                         enable-bit-index = <2>;
105                 };
106 
107                 pmucmc@7e8d0000 {
108                         compatible = "apm,xgene-pmu-mc";
109                         reg = <0x0 0x7e8d0000 0x0 0x1000>;
110                         enable-bit-index = <3>;
111                 };
112         };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php