forked from Minki/linux
8404b0fbc7
PCIe PMU Root Complex Integrated End Point(RCiEP) device is supported to sample bandwidth, latency, buffer occupation etc. Each PMU RCiEP device monitors multiple Root Ports, and each RCiEP is registered as a PMU in /sys/bus/event_source/devices, so users can select target PMU, and use filter to do further sets. Filtering options contains: event - select the event. port - select target Root Ports. Information of Root Ports are shown under sysfs. bdf - select requester_id of target EP device. trig_len - set trigger condition for starting event statistics. trig_mode - set trigger mode. 0 means starting to statistic when bigger than trigger condition, and 1 means smaller. thr_len - set threshold for statistics. thr_mode - set threshold mode. 0 means count when bigger than threshold, and 1 means smaller. Acked-by: Krzysztof Wilczyński <kw@linux.com> Reviewed-by: John Garry <john.garry@huawei.com> Signed-off-by: Qi Liu <liuqi115@huawei.com> Reviewed-by: Shaokun Zhang <zhangshaokun@hisilicon.com> Link: https://lore.kernel.org/r/20211202080633.2919-3-liuqi115@huawei.com Signed-off-by: Will Deacon <will@kernel.org>
17 lines
533 B
Plaintext
17 lines
533 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config HISI_PMU
|
|
tristate "HiSilicon SoC PMU drivers"
|
|
depends on ARM64 && ACPI
|
|
help
|
|
Support for HiSilicon SoC L3 Cache performance monitor, Hydra Home
|
|
Agent performance monitor and DDR Controller performance monitor.
|
|
|
|
config HISI_PCIE_PMU
|
|
tristate "HiSilicon PCIE PERF PMU"
|
|
depends on PCI && ARM64
|
|
help
|
|
Provide support for HiSilicon PCIe performance monitoring unit (PMU)
|
|
RCiEP devices.
|
|
Adds the PCIe PMU into perf events system for monitoring latency,
|
|
bandwidth etc.
|