Blame src/libpfm4/lib/events/intel_snbep_unc_ubo_events.h

Packit Service a1973e
/*
Packit Service a1973e
 * Copyright (c) 2012 Google, Inc
Packit Service a1973e
 * Contributed by Stephane Eranian <eranian@gmail.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
 * This file is part of libpfm, a performance monitoring support library for
Packit Service a1973e
 * applications on Linux.
Packit Service a1973e
 *
Packit Service a1973e
 * PMU: snbep_unc_ubo (Intel SandyBridge-EP U-Box uncore PMU)
Packit Service a1973e
 */
Packit Service a1973e
Packit Service a1973e
static const intel_x86_umask_t snbep_unc_u_event_msg[]={
Packit Service a1973e
  { .uname = "DOORBELL_RCVD",
Packit Service a1973e
    .udesc  = "TBD",
Packit Service a1973e
    .ucode  = 0x800,
Packit Service a1973e
    .uflags = INTEL_X86_NCOMBO,
Packit Service a1973e
  },
Packit Service a1973e
  { .uname = "INT_PRIO",
Packit Service a1973e
    .udesc  = "TBD",
Packit Service a1973e
    .ucode  = 0x1000,
Packit Service a1973e
    .uflags = INTEL_X86_NCOMBO,
Packit Service a1973e
  },
Packit Service a1973e
  { .uname = "IPI_RCVD",
Packit Service a1973e
    .udesc  = "TBD",
Packit Service a1973e
    .ucode  = 0x400,
Packit Service a1973e
    .uflags = INTEL_X86_NCOMBO,
Packit Service a1973e
  },
Packit Service a1973e
  { .uname = "MSI_RCVD",
Packit Service a1973e
    .udesc  = "TBD",
Packit Service a1973e
    .ucode  = 0x200,
Packit Service a1973e
    .uflags = INTEL_X86_NCOMBO,
Packit Service a1973e
  },
Packit Service a1973e
  { .uname = "VLW_RCVD",
Packit Service a1973e
    .udesc  = "TBD",
Packit Service a1973e
    .ucode  = 0x100,
Packit Service a1973e
    .uflags = INTEL_X86_NCOMBO,
Packit Service a1973e
  },
Packit Service a1973e
};
Packit Service a1973e
Packit Service a1973e
static const intel_x86_entry_t intel_snbep_unc_u_pe[]={
Packit Service a1973e
  { .name = "UNC_U_EVENT_MSG",
Packit Service a1973e
    .desc = "VLW Received",
Packit Service a1973e
    .code = 0x42,
Packit Service a1973e
    .cntmsk = 0x3,
Packit Service a1973e
    .ngrp = 1,
Packit Service a1973e
    .modmsk = SNBEP_UNC_UBO_ATTRS,
Packit Service a1973e
    .numasks = LIBPFM_ARRAY_SIZE(snbep_unc_u_event_msg),
Packit Service a1973e
    .umasks  = snbep_unc_u_event_msg
Packit Service a1973e
  },
Packit Service a1973e
  { .name = "UNC_U_LOCK_CYCLES",
Packit Service a1973e
    .desc = "IDI Lock/SplitLock Cycles",
Packit Service a1973e
    .code = 0x44,
Packit Service a1973e
    .cntmsk = 0x3,
Packit Service a1973e
    .modmsk = SNBEP_UNC_UBO_ATTRS,
Packit Service a1973e
  },
Packit Service a1973e
};