Blame src/libpfm-3.y/lib/amd64_events.h

Packit 577717
/*
Packit 577717
 * Copyright (c) 2006, 2007 Advanced Micro Devices, Inc.
Packit 577717
 * Contributed by Ray Bryant <raybry@mpdtxmail.amd.com> 
Packit 577717
 * Contributed by Robert Richter <robert.richter@amd.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
 * This file is part of libpfm, a performance monitoring support library for
Packit 577717
 * applications on Linux.
Packit 577717
 */
Packit 577717
Packit 577717
#include "amd64_events_k7.h"
Packit 577717
#include "amd64_events_k8.h"
Packit 577717
#include "amd64_events_fam10h.h"
Packit 577717
#include "amd64_events_fam15h.h"
Packit 577717
Packit 577717
struct pme_amd64_table {
Packit 577717
	unsigned int		num;
Packit 577717
	pme_amd64_entry_t	*events;
Packit 577717
	unsigned int		cpu_clks;
Packit 577717
	unsigned int		ret_inst;
Packit 577717
};
Packit 577717
Packit 577717
static struct pme_amd64_table amd64_k7_table = {
Packit 577717
	.num	  = PME_AMD64_K7_EVENT_COUNT,
Packit 577717
	.events	  = amd64_k7_pe,
Packit 577717
	.cpu_clks = PME_AMD64_K7_CPU_CLK_UNHALTED,
Packit 577717
	.ret_inst = PME_AMD64_K7_RETIRED_INSTRUCTIONS,
Packit 577717
};
Packit 577717
Packit 577717
static struct pme_amd64_table amd64_k8_table = {
Packit 577717
	.num	  = PME_AMD64_K8_EVENT_COUNT,
Packit 577717
	.events	  = amd64_k8_pe,
Packit 577717
	.cpu_clks = PME_AMD64_K8_CPU_CLK_UNHALTED,
Packit 577717
	.ret_inst = PME_AMD64_K8_RETIRED_INSTRUCTIONS,
Packit 577717
};
Packit 577717
Packit 577717
static struct pme_amd64_table amd64_fam10h_table = {
Packit 577717
	.num      = PME_AMD64_FAM10H_EVENT_COUNT,
Packit 577717
	.events   = amd64_fam10h_pe,
Packit 577717
	.cpu_clks = PME_AMD64_FAM10H_CPU_CLK_UNHALTED,
Packit 577717
	.ret_inst = PME_AMD64_FAM10H_RETIRED_INSTRUCTIONS,
Packit 577717
};
Packit 577717
Packit 577717
static struct pme_amd64_table amd64_fam15h_table = {
Packit 577717
	.num      = PME_AMD64_FAM15H_EVENT_COUNT,
Packit 577717
	.events   = amd64_fam15h_pe,
Packit 577717
	.cpu_clks = PME_AMD64_FAM15H_CPU_CLK_UNHALTED,
Packit 577717
	.ret_inst = PME_AMD64_FAM15H_RETIRED_INSTRUCTIONS,
Packit 577717
};