Blame src/libpfm4/lib/pfmlib_intel_skl.c

Packit Service a1973e
/*
Packit Service a1973e
 * pfmlib_intel_skl.c : Intel Skylake core PMU
Packit Service a1973e
 *
Packit Service a1973e
 * Copyright (c) 2015 Google, Inc
Packit Service a1973e
 * Contributed by Stephane Eranian <eranian@gmail.com>
Packit Service a1973e
 *
Packit Service a1973e
 * Permission is hereby granted, free of charge, to any person obtaining a copy
Packit Service a1973e
 * of this software and associated documentation files (the "Software"), to deal
Packit Service a1973e
 * in the Software without restriction, including without limitation the rights
Packit Service a1973e
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
Packit Service a1973e
 * of the Software, and to permit persons to whom the Software is furnished to do so,
Packit Service a1973e
 * subject to the following conditions:
Packit Service a1973e
 *
Packit Service a1973e
 * The above copyright notice and this permission notice shall be included in all
Packit Service a1973e
 * copies or substantial portions of the Software.
Packit Service a1973e
 *
Packit Service a1973e
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
Packit Service a1973e
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
Packit Service a1973e
 * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
Packit Service a1973e
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
Packit Service a1973e
 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
Packit Service a1973e
 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Packit Service a1973e
 */
Packit Service a1973e
/* private headers */
Packit Service a1973e
#include "pfmlib_priv.h"
Packit Service a1973e
#include "pfmlib_intel_x86_priv.h"
Packit Service a1973e
#include "events/intel_skl_events.h"
Packit Service a1973e
Packit Service a1973e
static const int skl_models[] = {
Packit Service a1973e
	78, /* Skylake mobile */
Packit Service a1973e
	94, /* Skylake desktop */
Packit Service a1973e
	142,/* KabyLake mobile */
Packit Service a1973e
	158,/* KabyLake desktop */
Packit Service a1973e
	0
Packit Service a1973e
};
Packit Service a1973e
Packit Service a1973e
static const int skx_models[] = {
Packit Service a1973e
	85, /* Skylake X */
Packit Service a1973e
	0
Packit Service a1973e
};
Packit Service a1973e
Packit Service a1973e
static int
Packit Service a1973e
pfm_skl_init(void *this)
Packit Service a1973e
{
Packit Service a1973e
	pfm_intel_x86_cfg.arch_version = 4;
Packit Service a1973e
	return PFM_SUCCESS;
Packit Service a1973e
}
Packit Service a1973e
Packit Service a1973e
pfmlib_pmu_t intel_skl_support={
Packit Service a1973e
	.desc			= "Intel Skylake",
Packit Service a1973e
	.name			= "skl",
Packit Service a1973e
	.pmu			= PFM_PMU_INTEL_SKL,
Packit Service a1973e
	.pme_count		= LIBPFM_ARRAY_SIZE(intel_skl_pe),
Packit Service a1973e
	.type			= PFM_PMU_TYPE_CORE,
Packit Service a1973e
	.supported_plm		= INTEL_X86_PLM,
Packit Service a1973e
	.num_cntrs		= 8, /* consider with HT off by default */
Packit Service a1973e
	.num_fixed_cntrs	= 3,
Packit Service a1973e
	.max_encoding		= 2, /* offcore_response */
Packit Service a1973e
	.pe			= intel_skl_pe,
Packit Service a1973e
	.atdesc			= intel_x86_mods,
Packit Service a1973e
	.flags			= PFMLIB_PMU_FL_RAW_UMASK
Packit Service a1973e
				| INTEL_X86_PMU_FL_ECMASK,
Packit Service a1973e
	.cpu_family		= 6,
Packit Service a1973e
	.cpu_models		= skl_models,
Packit Service a1973e
	.pmu_detect		= pfm_intel_x86_model_detect,
Packit Service a1973e
	.pmu_init		= pfm_skl_init,
Packit Service a1973e
	.get_event_encoding[PFM_OS_NONE] = pfm_intel_x86_get_encoding,
Packit Service a1973e
	 PFMLIB_ENCODE_PERF(pfm_intel_x86_get_perf_encoding),
Packit Service a1973e
	.get_event_first	= pfm_intel_x86_get_event_first,
Packit Service a1973e
	.get_event_next		= pfm_intel_x86_get_event_next,
Packit Service a1973e
	.event_is_valid		= pfm_intel_x86_event_is_valid,
Packit Service a1973e
	.validate_table		= pfm_intel_x86_validate_table,
Packit Service a1973e
	.get_event_info		= pfm_intel_x86_get_event_info,
Packit Service a1973e
	.get_event_attr_info	= pfm_intel_x86_get_event_attr_info,
Packit Service a1973e
	 PFMLIB_VALID_PERF_PATTRS(pfm_intel_x86_perf_validate_pattrs),
Packit Service a1973e
	.get_event_nattrs	= pfm_intel_x86_get_event_nattrs,
Packit Service a1973e
	.can_auto_encode	= pfm_intel_x86_can_auto_encode,
Packit Service a1973e
};
Packit Service a1973e
Packit Service a1973e
pfmlib_pmu_t intel_skx_support={
Packit Service a1973e
	.desc			= "Intel Skylake X",
Packit Service a1973e
	.name			= "skx",
Packit Service a1973e
	.pmu			= PFM_PMU_INTEL_SKX,
Packit Service a1973e
	.pme_count		= LIBPFM_ARRAY_SIZE(intel_skl_pe),
Packit Service a1973e
	.type			= PFM_PMU_TYPE_CORE,
Packit Service a1973e
	.supported_plm		= INTEL_X86_PLM,
Packit Service a1973e
	.num_cntrs		= 8, /* consider with HT off by default */
Packit Service a1973e
	.num_fixed_cntrs	= 3,
Packit Service a1973e
	.max_encoding		= 2, /* offcore_response */
Packit Service a1973e
	.pe			= intel_skl_pe,
Packit Service a1973e
	.atdesc			= intel_x86_mods,
Packit Service a1973e
	.flags			= PFMLIB_PMU_FL_RAW_UMASK
Packit Service a1973e
				| INTEL_X86_PMU_FL_ECMASK,
Packit Service a1973e
	.cpu_family		= 6,
Packit Service a1973e
	.cpu_models		= skx_models,
Packit Service a1973e
	.pmu_detect		= pfm_intel_x86_model_detect,
Packit Service a1973e
	.pmu_init		= pfm_skl_init,
Packit Service a1973e
	.get_event_encoding[PFM_OS_NONE] = pfm_intel_x86_get_encoding,
Packit Service a1973e
	 PFMLIB_ENCODE_PERF(pfm_intel_x86_get_perf_encoding),
Packit Service a1973e
	.get_event_first	= pfm_intel_x86_get_event_first,
Packit Service a1973e
	.get_event_next		= pfm_intel_x86_get_event_next,
Packit Service a1973e
	.event_is_valid		= pfm_intel_x86_event_is_valid,
Packit Service a1973e
	.validate_table		= pfm_intel_x86_validate_table,
Packit Service a1973e
	.get_event_info		= pfm_intel_x86_get_event_info,
Packit Service a1973e
	.get_event_attr_info	= pfm_intel_x86_get_event_attr_info,
Packit Service a1973e
	 PFMLIB_VALID_PERF_PATTRS(pfm_intel_x86_perf_validate_pattrs),
Packit Service a1973e
	.get_event_nattrs	= pfm_intel_x86_get_event_nattrs,
Packit Service a1973e
	.can_auto_encode	= pfm_intel_x86_can_auto_encode,
Packit Service a1973e
};