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

Packit 577717
/*
Packit 577717
 * Cell PMU specific types and definitions
Packit 577717
 *
Packit 577717
 * Copyright (c) 2007 TOSHIBA CORPORATION based on code from
Packit 577717
 * Copyright (c) 2001-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
#ifndef __PFMLIB_CELL_H__
Packit 577717
#define __PFMLIB_CELL_H__
Packit 577717
Packit 577717
#include <perfmon/pfmlib.h>
Packit 577717
Packit 577717
#define PMU_CELL_NUM_COUNTERS		8	/* total number of EvtSel/EvtCtr */
Packit 577717
#define PMU_CELL_NUM_PERFSEL		8	/* total number of EvtSel */
Packit 577717
#define PMU_CELL_NUM_PERFCTR		8	/* total number of EvtCtr */
Packit 577717
Packit 577717
typedef struct {
Packit 577717
	unsigned int pmX_control_num;	/* for pmX_control X=1(pm0_control)...X=8(pm7_control) */
Packit 577717
	unsigned int spe_subunit;
Packit 577717
	unsigned int polarity;
Packit 577717
	unsigned int input_control;
Packit 577717
	unsigned int cnt_mask;		/* threshold (reserved) */
Packit 577717
	unsigned int flags;		/* counter specific flag (reserved) */
Packit 577717
} pfmlib_cell_counter_t;
Packit 577717
Packit 577717
/*
Packit 577717
 * Cell specific parameters for the library
Packit 577717
 */
Packit 577717
typedef struct {
Packit 577717
	unsigned int triggers;
Packit 577717
	unsigned int interval;
Packit 577717
	unsigned int control;
Packit 577717
	pfmlib_cell_counter_t pfp_cell_counters[PMU_CELL_NUM_COUNTERS];	/* extended counter features */
Packit 577717
	uint64_t              reserved[4];				/* for future use */
Packit 577717
} pfmlib_cell_input_param_t;
Packit 577717
Packit 577717
typedef struct {
Packit 577717
	uint64_t	reserved[8];	/* for future use */
Packit 577717
} pfmlib_cell_output_param_t;
Packit 577717
Packit 577717
int pfm_cell_spe_event(unsigned int event_index);
Packit 577717
Packit 577717
#endif /* __PFMLIB_CELL_H__ */