Blame src/libpfm-3.y/include/perfmon/pfmlib_gen_ia64.h

Packit Service a1973e
/*
Packit Service a1973e
 * Generic IA-64 PMU specific types and definitions
Packit Service a1973e
 *
Packit Service a1973e
 * Copyright (c) 2001-2006 Hewlett-Packard Development Company, L.P.
Packit Service a1973e
 * Contributed by Stephane Eranian <eranian@hpl.hp.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
#ifndef __PFMLIB_GEN_IA64_H__
Packit Service a1973e
#define __PFMLIB_GEN_IA64_H__
Packit Service a1973e
Packit Service a1973e
#include <perfmon/pfmlib.h>
Packit Service a1973e
#include <endian.h>
Packit Service a1973e
Packit Service a1973e
#if BYTE_ORDER != LITTLE_ENDIAN
Packit Service a1973e
#error "this file only supports little endian environments"
Packit Service a1973e
#endif
Packit Service a1973e
Packit Service a1973e
#ifdef __cplusplus
Packit Service a1973e
extern "C" {
Packit Service a1973e
#endif
Packit Service a1973e
Packit Service a1973e
#define PMU_GEN_IA64_FIRST_COUNTER	4	/* index of first PMC/PMD counter */
Packit Service a1973e
#define PMU_GEN_IA64_NUM_COUNTERS	4	/* total numbers of PMC/PMD pairs used as counting monitors */
Packit Service a1973e
#define PMU_GEN_IA64_NUM_PMCS		8	/* total number of PMCS defined */
Packit Service a1973e
#define PMU_GEN_IA64_NUM_PMDS		4	/* total number of PMDS defined */
Packit Service a1973e
Packit Service a1973e
/*
Packit Service a1973e
 * architected PMC register structure
Packit Service a1973e
 */
Packit Service a1973e
typedef union {
Packit Service a1973e
	unsigned long pmc_val;			/* generic PMC register */
Packit Service a1973e
	struct {
Packit Service a1973e
		unsigned long pmc_plm:4;	/* privilege level mask */
Packit Service a1973e
		unsigned long pmc_ev:1;		/* external visibility */
Packit Service a1973e
		unsigned long pmc_oi:1;		/* overflow interrupt */
Packit Service a1973e
		unsigned long pmc_pm:1;		/* privileged monitor */
Packit Service a1973e
		unsigned long pmc_ig1:1;	/* reserved */
Packit Service a1973e
		unsigned long pmc_es:8;		/* event select */
Packit Service a1973e
		unsigned long pmc_ig2:48;	/* reserved */
Packit Service a1973e
	} pmc_gen_count_reg;
Packit Service a1973e
} pfm_gen_ia64_pmc_reg_t;
Packit Service a1973e
Packit Service a1973e
typedef struct {
Packit Service a1973e
	unsigned long	pmd_val;	/* generic counter value */
Packit Service a1973e
} pfm_gen_ia64_pmd_reg_t;
Packit Service a1973e
Packit Service a1973e
#ifdef __cplusplus /* extern C */
Packit Service a1973e
}
Packit Service a1973e
#endif
Packit Service a1973e
Packit Service a1973e
#endif /* __PFMLIB_GEN_IA64_H__ */
Packit Service a1973e