xref: /linux/Documentation/devicetree/bindings/perf/riscv,pmu.yaml (revision 41c177cf354126a22443b5c80cec9fdd313e67e1)
17e38085dSConor Dooley# SPDX-License-Identifier: BSD-2-Clause
27e38085dSConor Dooley%YAML 1.2
37e38085dSConor Dooley---
47e38085dSConor Dooley$id: http://devicetree.org/schemas/perf/riscv,pmu.yaml#
57e38085dSConor Dooley$schema: http://devicetree.org/meta-schemas/core.yaml#
67e38085dSConor Dooley
77e38085dSConor Dooleytitle: RISC-V SBI PMU events
87e38085dSConor Dooley
97e38085dSConor Dooleymaintainers:
107e38085dSConor Dooley  - Atish Patra <atishp@rivosinc.com>
117e38085dSConor Dooley
127e38085dSConor Dooleydescription: |
137e38085dSConor Dooley  The SBI PMU extension allows supervisor software to configure, start and
147e38085dSConor Dooley  stop any performance counter at anytime. Thus, a user can leverage all
157e38085dSConor Dooley  capabilities of performance analysis tools, such as perf, if the SBI PMU
167e38085dSConor Dooley  extension is enabled. The following constraints apply:
177e38085dSConor Dooley
187e38085dSConor Dooley    The platform must provide information about PMU event to counter mappings
197e38085dSConor Dooley    either via device tree or another way, specific to the platform.
207e38085dSConor Dooley    Without the event to counter mappings, the SBI PMU extension cannot be used.
217e38085dSConor Dooley
227e38085dSConor Dooley    Platforms should provide information about the PMU event selector values
237e38085dSConor Dooley    that should be encoded in the expected value of MHPMEVENTx while configuring
247e38085dSConor Dooley    MHPMCOUNTERx for that specific event. The can either be done via device tree
257e38085dSConor Dooley    or another way, specific to the platform.
267e38085dSConor Dooley    The exact value to be written to MHPMEVENTx is completely dependent on the
277e38085dSConor Dooley    platform.
287e38085dSConor Dooley
297e38085dSConor Dooley    For information on the SBI specification see the section "Performance
307e38085dSConor Dooley    Monitoring Unit Extension" of:
317e38085dSConor Dooley      https://github.com/riscv-non-isa/riscv-sbi-doc/blob/master/riscv-sbi.adoc
327e38085dSConor Dooley
337e38085dSConor Dooleyproperties:
347e38085dSConor Dooley  compatible:
357e38085dSConor Dooley    const: riscv,pmu
367e38085dSConor Dooley
377e38085dSConor Dooley  riscv,event-to-mhpmevent:
387e38085dSConor Dooley    $ref: /schemas/types.yaml#/definitions/uint32-matrix
397e38085dSConor Dooley    description:
407e38085dSConor Dooley      Represents an ONE-to-ONE mapping between a PMU event and the event
417e38085dSConor Dooley      selector value that the platform expects to be written to the MHPMEVENTx
427e38085dSConor Dooley      CSR for that event.
437e38085dSConor Dooley      The mapping is encoded in an matrix format where each element represents
447e38085dSConor Dooley      an event.
457e38085dSConor Dooley      This property shouldn't encode any raw hardware event.
467e38085dSConor Dooley    items:
477e38085dSConor Dooley      items:
487e38085dSConor Dooley        - description: event_idx, a 20-bit wide encoding of the event type and
497e38085dSConor Dooley            code. Refer to the SBI specification for a complete description of
507e38085dSConor Dooley            the event types and codes.
517e38085dSConor Dooley        - description: upper 32 bits of the event selector value for MHPMEVENTx
527e38085dSConor Dooley        - description: lower 32 bits of the event selector value for MHPMEVENTx
537e38085dSConor Dooley
547e38085dSConor Dooley  riscv,event-to-mhpmcounters:
557e38085dSConor Dooley    $ref: /schemas/types.yaml#/definitions/uint32-matrix
567e38085dSConor Dooley    description:
577e38085dSConor Dooley      Represents a MANY-to-MANY mapping between a range of events and all the
587e38085dSConor Dooley      MHPMCOUNTERx in a bitmap format that can be used to monitor these range
597e38085dSConor Dooley      of events. The information is encoded in an matrix format where each
607e38085dSConor Dooley      element represents a certain range of events and corresponding counters.
617e38085dSConor Dooley      This property shouldn't encode any raw event.
627e38085dSConor Dooley    items:
637e38085dSConor Dooley      items:
647e38085dSConor Dooley        - description: first event_idx of the range of events
657e38085dSConor Dooley        - description: last event_idx of the range of events
667e38085dSConor Dooley        - description: bitmap of MHPMCOUNTERx for this event
677e38085dSConor Dooley
687e38085dSConor Dooley  riscv,raw-event-to-mhpmcounters:
697e38085dSConor Dooley    $ref: /schemas/types.yaml#/definitions/uint32-matrix
707e38085dSConor Dooley    description:
717e38085dSConor Dooley      Represents an ONE-to-MANY or MANY-to-MANY mapping between the rawevent(s)
727e38085dSConor Dooley      and all the MHPMCOUNTERx in a bitmap format that can be used to monitor
737e38085dSConor Dooley      that raw event.
747e38085dSConor Dooley      The encoding of the raw events are platform specific. The information is
757e38085dSConor Dooley      encoded in a matrix format where each element represents the specific raw
767e38085dSConor Dooley      event(s).
777e38085dSConor Dooley      If a platform directly encodes each raw PMU event as a unique ID, the
787e38085dSConor Dooley      value of variant must be 0xffffffff_ffffffff.
797e38085dSConor Dooley    items:
807e38085dSConor Dooley      items:
817e38085dSConor Dooley        - description:
827e38085dSConor Dooley            upper 32 invariant bits for the range of events
837e38085dSConor Dooley        - description:
847e38085dSConor Dooley            lower 32 invariant bits for the range of events
857e38085dSConor Dooley        - description:
867e38085dSConor Dooley            upper 32 bits of the variant bit mask for the range of events
877e38085dSConor Dooley        - description:
887e38085dSConor Dooley            lower 32 bits of the variant bit mask for the range of events
897e38085dSConor Dooley        - description:
907e38085dSConor Dooley            bitmap of all MHPMCOUNTERx that can monitor the range of events
917e38085dSConor Dooley
927e38085dSConor Dooleydependencies:
93*96ba4a47SRob Herring  riscv,event-to-mhpmevent: [ "riscv,event-to-mhpmcounters" ]
947e38085dSConor Dooley
957e38085dSConor Dooleyrequired:
967e38085dSConor Dooley  - compatible
977e38085dSConor Dooley
987e38085dSConor DooleyadditionalProperties: false
997e38085dSConor Dooley
1007e38085dSConor Dooleyexamples:
1017e38085dSConor Dooley  - |
1027e38085dSConor Dooley    pmu {
1037e38085dSConor Dooley        compatible = "riscv,pmu";
1047e38085dSConor Dooley        riscv,event-to-mhpmevent = <0x0000B 0x0000 0x0001>;
1057e38085dSConor Dooley        riscv,event-to-mhpmcounters = <0x00001 0x00001 0x00000001>,
1067e38085dSConor Dooley                                      <0x00002 0x00002 0x00000004>,
1077e38085dSConor Dooley                                      <0x00003 0x0000A 0x00000ff8>,
1087e38085dSConor Dooley                                      <0x10000 0x10033 0x000ff000>;
1097e38085dSConor Dooley        riscv,raw-event-to-mhpmcounters =
1107e38085dSConor Dooley            /* For event ID 0x0002 */
1117e38085dSConor Dooley            <0x0000 0x0002 0xffffffff 0xffffffff 0x00000f8>,
1127e38085dSConor Dooley            /* For event ID 0-4 */
1137e38085dSConor Dooley            <0x0 0x0 0xffffffff 0xfffffff0 0x00000ff0>,
1147e38085dSConor Dooley            /* For event ID 0xffffffff0000000f - 0xffffffff000000ff */
1157e38085dSConor Dooley            <0xffffffff 0x0 0xffffffff 0xffffff0f 0x00000ff0>;
1167e38085dSConor Dooley    };
1177e38085dSConor Dooley
1187e38085dSConor Dooley  - |
1197e38085dSConor Dooley    /*
1207e38085dSConor Dooley     * For HiFive Unmatched board the encodings can be found here
1217e38085dSConor Dooley     * https://sifive.cdn.prismic.io/sifive/1a82e600-1f93-4f41-b2d8-86ed8b16acba_fu740-c000-manual-v1p6.pdf
1227e38085dSConor Dooley     *
1237e38085dSConor Dooley     * This example also binds standard SBI PMU hardware IDs to U74 PMU event
1247e38085dSConor Dooley     * codes, U74 uses a bitfield for events encoding, so several U74 events
1257e38085dSConor Dooley     * can be bound to a single perf ID.
1267e38085dSConor Dooley     * See SBI PMU hardware IDs in arch/riscv/include/asm/sbi.h
1277e38085dSConor Dooley     */
1287e38085dSConor Dooley    pmu {
1297e38085dSConor Dooley          compatible = "riscv,pmu";
1307e38085dSConor Dooley          riscv,event-to-mhpmevent =
1317e38085dSConor Dooley              /* SBI_PMU_HW_CACHE_REFERENCES -> Instruction or Data cache/ITIM busy */
1327e38085dSConor Dooley              <0x00003 0x00000000 0x1801>,
1337e38085dSConor Dooley              /* SBI_PMU_HW_CACHE_MISSES -> Instruction or Data cache miss or MMIO access */
1347e38085dSConor Dooley              <0x00004 0x00000000 0x0302>,
1357e38085dSConor Dooley              /* SBI_PMU_HW_BRANCH_INSTRUCTIONS -> Conditional branch retired */
1367e38085dSConor Dooley              <0x00005 0x00000000 0x4000>,
1377e38085dSConor Dooley              /* SBI_PMU_HW_BRANCH_MISSES -> Branch or jump misprediction */
1387e38085dSConor Dooley              <0x00006 0x00000000 0x6001>,
1397e38085dSConor Dooley              /* L1D_READ_MISS -> Data cache miss or MMIO access */
1407e38085dSConor Dooley              <0x10001 0x00000000 0x0202>,
1417e38085dSConor Dooley              /* L1D_WRITE_ACCESS -> Data cache write-back */
1427e38085dSConor Dooley              <0x10002 0x00000000 0x0402>,
1437e38085dSConor Dooley              /* L1I_READ_ACCESS -> Instruction cache miss */
1447e38085dSConor Dooley              <0x10009 0x00000000 0x0102>,
1457e38085dSConor Dooley              /* LL_READ_MISS -> UTLB miss */
1467e38085dSConor Dooley              <0x10011 0x00000000 0x2002>,
1477e38085dSConor Dooley              /* DTLB_READ_MISS -> Data TLB miss */
1487e38085dSConor Dooley              <0x10019 0x00000000 0x1002>,
1497e38085dSConor Dooley              /* ITLB_READ_MISS-> Instruction TLB miss */
1507e38085dSConor Dooley              <0x10021 0x00000000 0x0802>;
1517e38085dSConor Dooley          riscv,event-to-mhpmcounters = <0x00003 0x00006 0x18>,
1527e38085dSConor Dooley                                        <0x10001 0x10002 0x18>,
1537e38085dSConor Dooley                                        <0x10009 0x10009 0x18>,
1547e38085dSConor Dooley                                        <0x10011 0x10011 0x18>,
1557e38085dSConor Dooley                                        <0x10019 0x10019 0x18>,
1567e38085dSConor Dooley                                        <0x10021 0x10021 0x18>;
1577e38085dSConor Dooley          riscv,raw-event-to-mhpmcounters = <0x0 0x0 0xffffffff 0xfc0000ff 0x18>,
1587e38085dSConor Dooley                                            <0x0 0x1 0xffffffff 0xfff800ff 0x18>,
1597e38085dSConor Dooley                                            <0x0 0x2 0xffffffff 0xffffe0ff 0x18>;
1607e38085dSConor Dooley    };
161