From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754766AbcFPVMW (ORCPT ); Thu, 16 Jun 2016 17:12:22 -0400 Received: from mail.skyhub.de ([78.46.96.112]:59583 "EHLO mail.skyhub.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754373AbcFPVMV (ORCPT ); Thu, 16 Jun 2016 17:12:21 -0400 Date: Thu, 16 Jun 2016 23:12:18 +0200 From: Borislav Petkov To: Vince Weaver , Huang Rui Cc: linux-kernel@vger.kernel.org, Peter Zijlstra , Ingo Molnar , Arnaldo Carvalho de Melo , Alexander Shishkin Subject: Re: [patch] events/amd/power add support for fam16h model30h Message-ID: <20160616211218.GC4002@pd.tnic> References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jun 16, 2016 at 05:00:04PM -0400, Vince Weaver wrote: > > According to the BKDG the AMD Family16h Model30h "Jaguar Mullins" > also supports the accumulated power interface. I've tested on > hardware I have and with this patch I indeed get power readings using > perf. > > Signed-off-by: Vince Weaver > > diff --git a/arch/x86/events/amd/power.c b/arch/x86/events/amd/power.c > index 55a3529..778b77d 100644 > --- a/arch/x86/events/amd/power.c > +++ b/arch/x86/events/amd/power.c > @@ -292,6 +292,7 @@ static struct notifier_block power_cpu_notifier_nb = { > > static const struct x86_cpu_id cpu_match[] = { > { .vendor = X86_VENDOR_AMD, .family = 0x15 }, > + { .vendor = X86_VENDOR_AMD, .family = 0x16 }, > {}, Actually, I think we remove that table completely and rely solely on the CPUID bit: if (!boot_cpu_has(X86_FEATURE_ACC_POWER)) return -ENODEV; Rui? -- Regards/Gruss, Boris. ECO tip #101: Trim your mails when you reply.