From: Dietmar Hahn <dietmar.hahn@ts.fujitsu.com>
To: xen-devel@lists.xen.org
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>,
eddie.dong@intel.com, jun.nakajima@intel.com
Subject: Re: [PATCH] Intel/VPMU: Add support for full-width PMC writes
Date: Mon, 29 Jul 2013 11:56:56 +0200 [thread overview]
Message-ID: <1448815.0nKLeCxeCq@amur> (raw)
In-Reply-To: <1374519271-1400-1-git-send-email-boris.ostrovsky@oracle.com>
Am Montag 22 Juli 2013, 14:54:31 schrieb Boris Ostrovsky:
> A recent Linux commit (069e0c3c405814778c7475d95b9fff5318f39834) added
> support for full-width PMC writes to performance counter registers,
> making these registers default for perf. Since current Xen VPMU does
> not support these new MSRs perf will fail to initialise in guests.
>
> Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
>
> Question to Intel folks: Do we need to update MSR bitmap for both original
> (0xc1) and alias (0x4c1) registers or will either one suffice?
>
> ---
> xen/arch/x86/hvm/vmx/vpmu_core2.c | 44 +++++++++++++++++++++++++++++++++++----
> xen/include/asm-x86/msr-index.h | 1 +
> 2 files changed, 41 insertions(+), 4 deletions(-)
>
> diff --git a/xen/arch/x86/hvm/vmx/vpmu_core2.c b/xen/arch/x86/hvm/vmx/vpmu_core2.c
> index 15b2036..823d364 100644
> --- a/xen/arch/x86/hvm/vmx/vpmu_core2.c
> +++ b/xen/arch/x86/hvm/vmx/vpmu_core2.c
> @@ -64,6 +64,10 @@
> #define PMU_FIXED_WIDTH_BITS 8 /* 8 bits 5..12 */
> #define PMU_FIXED_WIDTH_MASK (((1 << PMU_FIXED_WIDTH_BITS) -1) << PMU_FIXED_WIDTH_SHIFT)
>
> +/* Alias registers (0x4c1) for full-width writes to PMCs */
> +#define MSR_PMC_ALIAS_MASK (~0x400)
> +bool_t __read_mostly fw_write;
Why not use "full_width_write" (or similar) like in the original linux kernel
patch for better readability?
> +
> /*
> * QUIRK to workaround an issue on various family 6 cpus.
> * The issue leads to endless PMC interrupt loops on the processor.
> @@ -195,6 +199,7 @@ static int core2_get_bitwidth_fix_count(void)
> static int is_core2_vpmu_msr(u32 msr_index, int *type, int *index)
> {
> int i;
> + u32 msr_index_pmc;
>
> for ( i = 0; i < core2_fix_counters.num; i++ )
> {
> @@ -224,11 +229,12 @@ static int is_core2_vpmu_msr(u32 msr_index, int *type, int *index)
> return 1;
> }
>
> - if ( (msr_index >= MSR_IA32_PERFCTR0) &&
> - (msr_index < (MSR_IA32_PERFCTR0 + core2_get_pmc_count())) )
> + msr_index_pmc = msr_index & MSR_PMC_ALIAS_MASK;
> + if ( (msr_index_pmc >= MSR_IA32_PERFCTR0) &&
> + (msr_index_pmc < (MSR_IA32_PERFCTR0 + core2_get_pmc_count())) )
> {
> *type = MSR_TYPE_ARCH_COUNTER;
> - *index = msr_index - MSR_IA32_PERFCTR0;
> + *index = msr_index_pmc - MSR_IA32_PERFCTR0;
> return 1;
> }
>
> @@ -260,6 +266,15 @@ static void core2_vpmu_set_msr_bitmap(unsigned long *msr_bitmap)
> clear_bit(msraddr_to_bitpos(MSR_IA32_PERFCTR0+i),
> msr_bitmap + 0x800/BYTES_PER_LONG);
> }
> + if ( fw_write )
> + {
> + for ( i = 0; i < core2_get_pmc_count(); i++ )
> + {
> + clear_bit(msraddr_to_bitpos(MSR_IA32_A_PERFCTR0+i), msr_bitmap);
> + clear_bit(msraddr_to_bitpos(MSR_IA32_A_PERFCTR0+i),
> + msr_bitmap + 0x800/BYTES_PER_LONG);
> + }
> + }
>
> /* Allow Read PMU Non-global Controls Directly. */
> for ( i = 0; i < core2_ctrls.num; i++ )
> @@ -284,6 +299,16 @@ static void core2_vpmu_unset_msr_bitmap(unsigned long *msr_bitmap)
> set_bit(msraddr_to_bitpos(MSR_IA32_PERFCTR0+i),
> msr_bitmap + 0x800/BYTES_PER_LONG);
> }
> + if ( fw_write )
> + {
> + for ( i = 0; i < core2_get_pmc_count(); i++ )
> + {
> + set_bit(msraddr_to_bitpos(MSR_IA32_A_PERFCTR0+i), msr_bitmap);
> + set_bit(msraddr_to_bitpos(MSR_IA32_A_PERFCTR0+i),
> + msr_bitmap + 0x800/BYTES_PER_LONG);
> + }
> + }
> +
> for ( i = 0; i < core2_ctrls.num; i++ )
> set_bit(msraddr_to_bitpos(core2_ctrls.msr[i]), msr_bitmap);
> for ( i = 0; i < core2_get_pmc_count(); i++ )
> @@ -324,11 +349,17 @@ static inline void __core2_vpmu_load(struct vcpu *v)
> {
> int i;
> struct core2_vpmu_context *core2_vpmu_cxt = vcpu_vpmu(v)->context;
> + int pmc_start;
>
> for ( i = 0; i < core2_fix_counters.num; i++ )
> wrmsrl(core2_fix_counters.msr[i], core2_vpmu_cxt->fix_counters[i]);
> +
Leading spaces.
Reviewed-by: Dietmar Hahn <dietmar.hahn@ts.fujitsu.com>
> + if ( fw_write )
> + pmc_start = MSR_IA32_A_PERFCTR0;
> + else
> + pmc_start = MSR_IA32_PERFCTR0;
> for ( i = 0; i < core2_get_pmc_count(); i++ )
> - wrmsrl(MSR_IA32_PERFCTR0+i, core2_vpmu_cxt->arch_msr_pair[i].counter);
> + wrmsrl(pmc_start+i, core2_vpmu_cxt->arch_msr_pair[i].counter);
>
> for ( i = 0; i < core2_ctrls.num; i++ )
> wrmsrl(core2_ctrls.msr[i], core2_vpmu_cxt->ctrls[i]);
> @@ -855,6 +886,11 @@ int vmx_vpmu_initialise(struct vcpu *v, unsigned int vpmu_flags)
>
> if ( family == 6 )
> {
> + u64 caps;
> +
> + rdmsrl(MSR_IA32_PERF_CAPABILITIES, caps);
> + fw_write = (caps >> 13) & 1;
> +
> switch ( cpu_model )
> {
> /* Core2: */
> diff --git a/xen/include/asm-x86/msr-index.h b/xen/include/asm-x86/msr-index.h
> index f500efd..5acaee8 100644
> --- a/xen/include/asm-x86/msr-index.h
> +++ b/xen/include/asm-x86/msr-index.h
> @@ -34,6 +34,7 @@
> /* Intel MSRs. Some also available on other CPUs */
> #define MSR_IA32_PERFCTR0 0x000000c1
> #define MSR_IA32_PERFCTR1 0x000000c2
> +#define MSR_IA32_A_PERFCTR0 0x000004c1
> #define MSR_FSB_FREQ 0x000000cd
>
> #define MSR_NHM_SNB_PKG_CST_CFG_CTL 0x000000e2
>
--
Company details: http://ts.fujitsu.com/imprint.html
next prev parent reply other threads:[~2013-07-29 9:56 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-22 18:54 [PATCH] Intel/VPMU: Add support for full-width PMC writes Boris Ostrovsky
2013-07-29 9:56 ` Dietmar Hahn [this message]
2013-08-05 20:11 ` Boris Ostrovsky
2013-08-06 7:21 ` Jan Beulich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1448815.0nKLeCxeCq@amur \
--to=dietmar.hahn@ts.fujitsu.com \
--cc=boris.ostrovsky@oracle.com \
--cc=eddie.dong@intel.com \
--cc=jun.nakajima@intel.com \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).