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

Packit 577717
/*
Packit 577717
 * Generic MIPS64 PMU specific types and definitions
Packit 577717
 *
Packit 577717
 * Contributed by Philip Mucci <mucci@cs.utk.edu> based on code from
Packit 577717
 * Copyright (c) 2005-2006 Hewlett-Packard Development Company, L.P.
Packit 577717
 * Contributed by Stephane Eranian <eranian@hpl.hp.com>
Packit 577717
 *
Packit 577717
 * Permission is hereby granted, free of charge, to any person obtaining a copy
Packit 577717
 * of this software and associated documentation files (the "Software"), to deal
Packit 577717
 * in the Software without restriction, including without limitation the rights
Packit 577717
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
Packit 577717
 * of the Software, and to permit persons to whom the Software is furnished to do so,
Packit 577717
 * subject to the following conditions:
Packit 577717
 *
Packit 577717
 * The above copyright notice and this permission notice shall be included in all
Packit 577717
 * copies or substantial portions of the Software.
Packit 577717
 *
Packit 577717
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
Packit 577717
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
Packit 577717
 * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
Packit 577717
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
Packit 577717
 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
Packit 577717
 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Packit 577717
 */
Packit 577717
Packit 577717
#ifndef __PFMLIB_GEN_MIPS64_H__
Packit 577717
#define __PFMLIB_GEN_MIPS64_H__
Packit 577717
Packit 577717
#include <endian.h> /* MIPS are bi-endian */
Packit 577717
Packit 577717
#include <perfmon/pfmlib.h>
Packit 577717
/*
Packit 577717
 * privilege level mask usage for MIPS:
Packit 577717
 *
Packit 577717
 * PFM_PLM0 = KERNEL
Packit 577717
 * PFM_PLM1 = SUPERVISOR
Packit 577717
 * PFM_PLM2 = INTERRUPT
Packit 577717
 * PFM_PLM3 = USER
Packit 577717
 */
Packit 577717
Packit 577717
#ifdef __cplusplus
Packit 577717
extern "C" {
Packit 577717
#endif
Packit 577717
Packit 577717
#define PMU_GEN_MIPS64_NUM_COUNTERS		4	/* total numbers of EvtSel/EvtCtr */
Packit 577717
#define PMU_GEN_MIPS64_COUNTER_WIDTH		32	/* hardware counter bit width   */
Packit 577717
/*
Packit 577717
 * This structure provides a detailed way to setup a PMC register.
Packit 577717
 * Once value is loaded, it must be copied (via pmu_reg) to the
Packit 577717
 * perfmon_req_t and passed to the kernel via perfmonctl().
Packit 577717
 *
Packit 577717
 * It needs to be adjusted based on endianess
Packit 577717
 */
Packit 577717
#if __BYTE_ORDER == __LITTLE_ENDIAN
Packit 577717
Packit 577717
typedef union {
Packit 577717
	uint64_t	val;				/* complete register value */
Packit 577717
	struct {
Packit 577717
	        unsigned long sel_exl:1;		/* int level */
Packit 577717
		unsigned long sel_os:1;			/* system level */
Packit 577717
		unsigned long sel_sup:1;		/* supervisor level */
Packit 577717
		unsigned long sel_usr:1;		/* user level */
Packit 577717
	        unsigned long sel_int:1;		/* enable intr */
Packit 577717
	  	unsigned long sel_event_mask:5;		/* event mask */
Packit 577717
		unsigned long sel_res1:22;		/* reserved */
Packit 577717
		unsigned long sel_res2:32;		/* reserved */
Packit 577717
	} perfsel;
Packit 577717
} pfm_gen_mips64_sel_reg_t;
Packit 577717
Packit 577717
#elif __BYTE_ORDER == __BIG_ENDIAN
Packit 577717
Packit 577717
typedef union {
Packit 577717
	uint64_t	val;				/* complete register value */
Packit 577717
	struct {
Packit 577717
		unsigned long sel_res2:32;		/* reserved */
Packit 577717
		unsigned long sel_res1:22;		/* reserved */
Packit 577717
	  	unsigned long sel_event_mask:5;		/* event mask */
Packit 577717
	        unsigned long sel_int:1;		/* enable intr */
Packit 577717
		unsigned long sel_usr:1;		/* user level */
Packit 577717
		unsigned long sel_sup:1;		/* supervisor level */
Packit 577717
		unsigned long sel_os:1;			/* system level */
Packit 577717
	        unsigned long sel_exl:1;		/* int level */
Packit 577717
	} perfsel;
Packit 577717
} pfm_gen_mips64_sel_reg_t;
Packit 577717
Packit 577717
#else
Packit 577717
#error "cannot determine endianess"
Packit 577717
#endif
Packit 577717
Packit 577717
typedef union {
Packit 577717
	uint64_t val;	/* counter value */
Packit 577717
	/* counting perfctr register */
Packit 577717
	struct {
Packit 577717
		unsigned long ctr_count:32;	/* 32-bit hardware counter  */
Packit 577717
	} perfctr;
Packit 577717
} pfm_gen_mips64_ctr_reg_t;
Packit 577717
Packit 577717
typedef struct {
Packit 577717
	unsigned int	cnt_mask;	/* threshold ([4-255] are reserved) */
Packit 577717
	unsigned int	flags;		/* counter specific flag */
Packit 577717
} pfmlib_gen_mips64_counter_t;
Packit 577717
Packit 577717
/*
Packit 577717
 * MIPS64 specific parameters for the library
Packit 577717
 */
Packit 577717
typedef struct {
Packit 577717
	pfmlib_gen_mips64_counter_t	pfp_gen_mips64_counters[PMU_GEN_MIPS64_NUM_COUNTERS];	/* extended counter features */
Packit 577717
	uint64_t			reserved[4];		/* for future use */
Packit 577717
} pfmlib_gen_mips64_input_param_t;
Packit 577717
Packit 577717
typedef struct {
Packit 577717
	uint64_t	reserved[8];		/* for future use */
Packit 577717
} pfmlib_gen_mips64_output_param_t;
Packit 577717
Packit 577717
#ifdef __cplusplus /* extern C */
Packit 577717
}
Packit 577717
#endif
Packit 577717
Packit 577717
#endif /* __PFMLIB_GEN_MIPS64_H__ */