| /OK3568_Linux_fs/kernel/tools/perf/Documentation/ |
| H A D | perf-list.txt | 128 ARBITRARY PMUS 132 to PMUs. Using this typically requires looking up the specific event 135 The available PMUs and their raw parameters can be listed with 148 PER SOCKET PMUS 151 Some PMUs are not associated with a core, but with a whole CPU socket. 152 Events on these PMUs generally cannot be sampled, but only counted globally 162 bandwidth would require specifying all imc PMUs (see perf list output), 182 Other PMUs and global measurements are normally root only. 195 Some PMUs control advanced hardware tracing capabilities, such as Intel PT, 253 Events from multiple different PMUs cannot be mixed in a group, with
|
| H A D | perf-stat.txt | 62 of the same type of PMU in large systems (e.g. memory controller PMUs). 63 Multiple PMU instances are typical for uncore PMUs, so the prefix 392 Do not merge results from same PMUs.
|
| /OK3568_Linux_fs/kernel/arch/x86/events/intel/ |
| H A D | uncore.c | 894 struct intel_uncore_pmu *pmu = type->pmus; in uncore_type_exit() 905 kfree(type->pmus); in uncore_type_exit() 906 type->pmus = NULL; in uncore_type_exit() 920 struct intel_uncore_pmu *pmus; in uncore_type_init() local 924 pmus = kcalloc(type->num_boxes, sizeof(*pmus), GFP_KERNEL); in uncore_type_init() 925 if (!pmus) in uncore_type_init() 931 pmus[i].func_id = setid ? i : -1; in uncore_type_init() 932 pmus[i].pmu_idx = i; in uncore_type_init() 933 pmus[i].type = type; in uncore_type_init() 934 pmus[i].boxes = kzalloc(size, GFP_KERNEL); in uncore_type_init() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/perf/ |
| H A D | qcom_l3_pmu.rst | 5 This driver supports the L3 cache PMUs found in Qualcomm Datacenter Technologies 12 options in sysfs, see /sys/devices/l3cache*. Given that these are uncore PMUs 25 Given that these are uncore PMUs the driver does not support sampling, therefore
|
| H A D | thunderx2-pmu.rst | 6 PMUs such as the Level 3 Cache (L3C), DDR4 Memory Controller (DMC) and 21 The thunderx2_pmu driver registers per-socket perf PMUs for the DMC and 23 (CCPI2) events simultaneously. The PMUs provide a description of their
|
| H A D | xgene-pmu.rst | 5 X-Gene SoC PMU consists of various independent system device PMUs such as 8 same model as the PMU for ARM cores. The PMUs share the same top level
|
| H A D | hisi-pmu.rst | 5 The HiSilicon SoC chip includes various independent system device PMUs 6 such as L3 cache (L3C), Hydra Home Agent (HHA) and DDRC. These PMUs are
|
| H A D | arm_dsu_pmu.rst | 11 cores connected to the same DSU. Like most of the other uncore PMUs, DSU
|
| H A D | qcom_l2_pmu.rst | 10 the physical PMUs.
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | pmu.c | 41 static LIST_HEAD(pmus); 554 /* Add all pmus in sysfs to pmu list: */ 575 /* add to static LIST_HEAD(pmus): */ in pmu_read_sysfs() 597 * Uncore PMUs have a "cpumask" file under sysfs. CPU PMUs (e.g. on arm/arm64) 684 * PMUs other than CORE PMUs. in perf_pmu__find_map() 858 list_add_tail(&pmu->list, &pmus); in pmu_lookup() 886 list_for_each_entry(pmu, &pmus, list) in pmu_find() 897 list_for_each_entry(pmu, &pmus, list) in perf_pmu__find_by_type() 912 pmu = list_prepare_entry(pmu, &pmus, list); in perf_pmu__scan() 914 list_for_each_entry_continue(pmu, &pmus, list) in perf_pmu__scan()
|
| /OK3568_Linux_fs/kernel/arch/arm/oprofile/ |
| H A D | common.c | 28 * OProfile has a curious naming scheme for the ARM PMUs, but they are 30 * supported PMUs.
|
| /OK3568_Linux_fs/kernel/arch/powerpc/include/asm/ |
| H A D | imc-pmu.h | 110 * registers new IMC pmus. This structure will hold the 159 * Domains for IMC PMUs
|
| /OK3568_Linux_fs/kernel/drivers/perf/ |
| H A D | qcom_l2_pmu.c | 107 * the hardware PMUs. 123 * This structure represents one of the hardware PMUs. 424 * physical PMUs (per cluster), because we do not support per-task mode in l2_cache_pmu_enable() 471 /* Don't allow groups with mixed PMUs, except for s/w events */ in l2_cache_event_init() 946 dev_err(&pdev->dev, "No hardware L2 cache PMUs found\n"); in l2_cache_pmu_probe() 963 dev_info(&pdev->dev, "Registered L2 cache PMU using %d HW PMUs\n", in l2_cache_pmu_probe()
|
| H A D | qcom_l3_pmu.c | 3 * Driver for the L3 cache PMUs in Qualcomm Technologies chips. 448 * We must NOT create groups containing events from multiple hardware PMUs, 449 * although mixing different software and hardware PMUs is allowed. 510 * single CPU context. This is obvious for CPU PMUs, where one in qcom_l3_cache__event_init() 512 * but can lead to issues for off-core PMUs, like this one, where in qcom_l3_cache__event_init()
|
| H A D | arm_pmu_acpi.c | 159 * them with their PMUs. in arm_pmu_acpi_parse_irqs() 293 * Initialise and register the set of PMUs which we know about right in arm_pmu_acpi_probe()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/amdgpu/ |
| H A D | amdgpu_pmu.c | 197 /* vega20 pmus */ 235 pr_warn("Error initializing AMDGPU %s PMUs.\n", pmu_type_name); in init_pmu_by_type()
|
| /OK3568_Linux_fs/kernel/Documentation/powerpc/ |
| H A D | imc.rst | 42 Some PMUs may have a common scale and unit values for all their supported 53 `ibm,opal-in-memory-counters`. From the device tree, the kernel parses the PMUs
|
| /OK3568_Linux_fs/kernel/arch/x86/events/ |
| H A D | rapl.c | 118 struct rapl_pmu *pmus[]; member 150 return dieid < rapl_pmus->maxdie ? rapl_pmus->pmus[dieid] : NULL; in cpu_to_rapl_pmu() 582 rapl_pmus->pmus[topology_logical_die_id(cpu)] = pmu; in rapl_cpu_online() 667 kfree(rapl_pmus->pmus[i]); in cleanup_rapl_pmus()
|
| /OK3568_Linux_fs/kernel/include/linux/regulator/ |
| H A D | act8865.h | 3 * act8865.h -- Voltage regulation for active-semi act88xx PMUs
|
| /OK3568_Linux_fs/kernel/arch/sh/oprofile/ |
| H A D | common.c | 28 * This will need to be reworked when multiple PMUs are supported.
|
| /OK3568_Linux_fs/kernel/Documentation/riscv/ |
| H A D | pmu.rst | 2 Supporting PMUs on RISC-V platforms 36 PMUs in the kernel. The following sections briefly explain perf' mechanism
|
| /OK3568_Linux_fs/kernel/drivers/perf/hisilicon/ |
| H A D | hisi_uncore_ddrc_pmu.c | 9 * This code is based on the uncore PMUs like arm-cci and arm-ccn. 261 /* DDRC PMUs only share the same SCCL */ in hisi_ddrc_pmu_init_data()
|
| H A D | hisi_uncore_pmu.c | 9 * This code is based on the uncore PMUs like arm-cci and arm-ccn. 75 * We must NOT create groups containing mixed PMUs, although in hisi_validate_event_group()
|
| H A D | hisi_uncore_hha_pmu.c | 9 * This code is based on the uncore PMUs like arm-cci and arm-ccn. 255 /* HHA PMUs only share the same SCCL */ in hisi_hha_pmu_init_data()
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/arm/samsung/ |
| H A D | pmu.yaml | 70 Some PMUs are capable of behaving as an interrupt controller (mostly
|