perfmon: make less arch dependent 91/36191/4
authorZachary Leaf <zachary.leaf@arm.com>
Mon, 23 May 2022 11:22:27 +0000 (06:22 -0500)
committerDamjan Marion <dmarion@0xa5.net>
Tue, 12 Jul 2022 15:29:23 +0000 (15:29 +0000)
commitc7d43a5eb19f2acab900274432cfd0e136d6cb44
tree3ad3bd5191a1199430db40cec0b286ab531993be
parent20ac58e5c5ef59bc860270037aa7a3b0966a4ec2
perfmon: make less arch dependent

In preparation for enabling perfmon on Arm platforms, move some Intel
/arch specific logic into the /intel directory and update the CMake to
split the common code from arch specific files.

Since the dispatch_wrapper code is very different on Arm/Intel,
each arch can provide their own implementation + conduct any additional
arch specific config e.g. on Intel, all indexes from the mmap pages are
cached. The new method intel_config_dispatch_wrapper conducts this
config and returns a pointer to the dispatch wrapper to use.

Similarly, is_bundle_supported() looks very different on Arm/Intel, so
each implementation is to provide their own arch specific checks.

Two new callbacks/function ptrs are added in PERFMON_REGISTER_SOURCE to
support this - .bundle_support and .config_dispatch_wrapper.

Type: refactor
Signed-off-by: Zachary Leaf <zachary.leaf@arm.com>
Change-Id: Idd121ddcfd1cc80a57c949cecd64eb2db0ac8be3
src/plugins/perfmon/CMakeLists.txt
src/plugins/perfmon/intel/core.c
src/plugins/perfmon/intel/core.h
src/plugins/perfmon/intel/dispatch_wrapper.c [moved from src/plugins/perfmon/dispatch_wrapper.c with 62% similarity]
src/plugins/perfmon/intel/dispatch_wrapper.h [new file with mode: 0644]
src/plugins/perfmon/intel/uncore.c
src/plugins/perfmon/perfmon.c
src/plugins/perfmon/perfmon.h