From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756502Ab2LNPqf (ORCPT ); Fri, 14 Dec 2012 10:46:35 -0500 Received: from am1ehsobe003.messaging.microsoft.com ([213.199.154.206]:33864 "EHLO am1outboundpool.messaging.microsoft.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932089Ab2LNPqe (ORCPT ); Fri, 14 Dec 2012 10:46:34 -0500 X-Forefront-Antispam-Report: CIP:163.181.249.108;KIP:(null);UIP:(null);IPV:NLI;H:ausb3twp01.amd.com;RD:none;EFVD:NLI X-SpamScore: -15 X-BigFish: VPS-15(zz98dI103dK1432Ia65Rzz1de0h1202h1e76h1d1ah1d2ahzz8275dhz2dh668h839h944hd25hd2bhf0ah1220h1288h12a5h12a9h12bdh137ah13b6h1441h1504h1537h153bh162dh1631h1758h1155h) X-WSS-ID: 0MF12HB-01-50Z-02 X-M-MSG: Date: Fri, 14 Dec 2012 09:46:22 -0600 From: Jacob Shin To: Peter Zijlstra , Paul Mackerras , Ingo Molnar , Arnaldo Carvalho de Melo CC: Thomas Gleixner , "H. Peter Anvin" , Stephane Eranian , Robert Richter , , Subject: Re: [PATCH V4 0/6] perf, amd: Enable AMD family 15h northbridge counters Message-ID: <20121214154622.GA26540@jshin-Toonie> References: <1354748658-30567-1-git-send-email-jacob.shin@amd.com> <20121210185100.GA31713@jshin-Toonie> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline In-Reply-To: <20121210185100.GA31713@jshin-Toonie> User-Agent: Mutt/1.5.21 (2010-09-15) X-OriginatorOrg: amd.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Dec 10, 2012 at 12:51:00PM -0600, Jacob Shin wrote: > On Wed, Dec 05, 2012 at 05:04:12PM -0600, Jacob Shin wrote: > > The following patchset enables 4 additional performance counters in > > AMD family 15h processors that count northbridge events -- such as > > number of DRAM accesses. > > > > This patchset is based on previous work done by Robert Richter > > : > > > > https://lkml.org/lkml/2012/6/19/324 > > > > The main differences are: > > > > * The northbridge counters are indexed contiguously right above the > > core performance counters. > > > > * MSR address offset calculations are moved to architecture specific > > files. > > > > * Interrups are set up to be delivered only to a single core. > > > > V4: > > * Moved interrupt core select set up back to event constraints > > function, sicne during ->hw_config time we do not yet know on which > > CPU the the event will run on. > > * Tested on and made minor revisions to make sure that the patchset is > > compatible with upcoming AMD Family 16h processors, and will support > > core and NB counters without any further patches. > > > > V3: > > Addressed the following feedback/comments from Robert's review > > * https://lkml.org/lkml/2012/11/16/484 > > * https://lkml.org/lkml/2012/11/26/162 > > > > V2: > > Separate out Robert's patches, and add properly ordered certificate of > > origins. > > > > Jacob Shin (4): > > perf, amd: Use proper naming scheme for AMD bit field definitions > > perf, x86: Move MSR address offset calculation to architecture > > specific files > > perf, x86: Allow for architecture specific RDPMC indexes > > perf, amd: Enable northbridge performance counters on AMD family 15h > > > > Robert Richter (2): > > perf, amd: Rework northbridge event constraints handler > > perf, amd: Generalize northbridge constraints code for family 15h > > > > arch/x86/include/asm/cpufeature.h | 2 + > > arch/x86/include/asm/msr-index.h | 2 + > > arch/x86/include/asm/perf_event.h | 13 +- > > arch/x86/kernel/cpu/perf_event.c | 2 +- > > arch/x86/kernel/cpu/perf_event.h | 25 ++- > > arch/x86/kernel/cpu/perf_event_amd.c | 318 ++++++++++++++++++++++++++-------- > > 6 files changed, 268 insertions(+), 94 deletions(-) > > > > -- > > Ping .. ? any comments/feedback ? If things look okay, could you > please commit to tip perf/core ? Ping #2 .. ? Thanks! -Jacob