Blame src/libpfm4/lib/pfmlib_arm_armv6.c

Packit Service a1973e
/*
Packit Service a1973e
 * pfmlib_arm_armv6.c : 	support for ARMv6 chips
Packit Service a1973e
 *
Packit Service a1973e
 * Copyright (c) 2013 by Vince Weaver <vincent.weaver@maine.edu>
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
 */
Packit Service a1973e
Packit Service a1973e
#include <sys/types.h>
Packit Service a1973e
#include <string.h>
Packit Service a1973e
#include <stdlib.h>
Packit Service a1973e
#include <stdio.h>
Packit Service a1973e
#include <stdarg.h>
Packit Service a1973e
Packit Service a1973e
/* private headers */
Packit Service a1973e
#include "pfmlib_priv.h"			/* library private */
Packit Service a1973e
#include "pfmlib_arm_priv.h"
Packit Service a1973e
Packit Service a1973e
#include "events/arm_1176_events.h"        /* event tables */
Packit Service a1973e
Packit Service a1973e
static int
Packit Service a1973e
pfm_arm_detect_1176(void *this)
Packit Service a1973e
{
Packit Service a1973e
Packit Service a1973e
	int ret;
Packit Service a1973e
Packit Service a1973e
	ret = pfm_arm_detect(this);
Packit Service a1973e
	if (ret != PFM_SUCCESS)
Packit Service a1973e
		return PFM_ERR_NOTSUPP;
Packit Service a1973e
Packit Service a1973e
	if ((pfm_arm_cfg.implementer == 0x41) && /* ARM */
Packit Service a1973e
			(pfm_arm_cfg.part==0xb76)) { /* 1176 */
Packit Service a1973e
		return PFM_SUCCESS;
Packit Service a1973e
	}
Packit Service a1973e
	return PFM_ERR_NOTSUPP;
Packit Service a1973e
}
Packit Service a1973e
Packit Service a1973e
/* ARM1176 support */
Packit Service a1973e
pfmlib_pmu_t arm_1176_support={
Packit Service a1973e
	.desc			= "ARM1176",
Packit Service a1973e
	.name			= "arm_1176",
Packit Service a1973e
	.pmu			= PFM_PMU_ARM_1176,
Packit Service a1973e
	.pme_count		= LIBPFM_ARRAY_SIZE(arm_1176_pe),
Packit Service a1973e
	.type			= PFM_PMU_TYPE_CORE,
Packit Service a1973e
	.pe			= arm_1176_pe,
Packit Service a1973e
Packit Service a1973e
	.pmu_detect		= pfm_arm_detect_1176,
Packit Service a1973e
	.max_encoding		= 1,
Packit Service a1973e
	.num_cntrs		= 2,
Packit Service a1973e
Packit Service a1973e
	.get_event_encoding[PFM_OS_NONE] = pfm_arm_get_encoding,
Packit Service a1973e
	 PFMLIB_ENCODE_PERF(pfm_arm_get_perf_encoding),
Packit Service a1973e
	.get_event_first	= pfm_arm_get_event_first,
Packit Service a1973e
	.get_event_next		= pfm_arm_get_event_next,
Packit Service a1973e
	.event_is_valid		= pfm_arm_event_is_valid,
Packit Service a1973e
	.validate_table		= pfm_arm_validate_table,
Packit Service a1973e
	.get_event_info		= pfm_arm_get_event_info,
Packit Service a1973e
	.get_event_attr_info	= pfm_arm_get_event_attr_info,
Packit Service a1973e
	 PFMLIB_VALID_PERF_PATTRS(pfm_arm_perf_validate_pattrs),
Packit Service a1973e
	.get_event_nattrs	= pfm_arm_get_event_nattrs,
Packit Service a1973e
};