From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752035AbdH2M3s (ORCPT ); Tue, 29 Aug 2017 08:29:48 -0400 Received: from szxga04-in.huawei.com ([45.249.212.190]:5487 "EHLO szxga04-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751285AbdH2M3q (ORCPT ); Tue, 29 Aug 2017 08:29:46 -0400 Subject: Re: [PATCH v5 0/6] Add HiSilicon SoC uncore Performance Monitoring Unit driver To: , References: <1503389277-134131-1-git-send-email-zhangshaokun@hisilicon.com> CC: , , , , From: Zhangshaokun Message-ID: Date: Tue, 29 Aug 2017 20:28:47 +0800 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <1503389277-134131-1-git-send-email-zhangshaokun@hisilicon.com> Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.74.221.148] X-CFilter-Loop: Reflected X-Mirapoint-Virus-RAPID-Raw: score=unknown(0), refid=str=0001.0A090201.59A55E11.02E4,ss=1,re=0.000,recu=0.000,reip=0.000,cl=1,cld=1,fgs=0, ip=0.0.0.0, so=2014-11-16 11:51:01, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: 7f1bb6aa56a7b86be5d12b88d81eabe1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Mark/Will, Do you have any comments on this patch set? Appreciate your comments. Thanks, Shaokun On 2017/8/22 16:07, Shaokun Zhang wrote: > This patchset adds support for HiSilicon SoC uncore PMUs driver. It > includes L3C, Hydra Home Agent (HHA) and DDRC. > > Changes in v5: > * remove unnecessary name/num_events member in hisi_pmu > * refactor hisi_pmu_hwevents structure > * remove hisi_pmu_alloc function > * revise cpuhotplug for L3C PMUs > * add cpuhotplug for HHA/DDRC PMUs > * fix the name format of uncore PMUs > * remove unnecessary variants > > Changes in v4: > * remove redundant code and comments > * reverse the functions order in exit function > * remove some GPL information > * revise including header file > * fix Jonathan's other comments > > Changes in v3: > * rebase to 4.13-rc1 > * add dev_err if ioremap fails for PMUs > > Changes in v2: > * fix kbuild test robot error > * make hisi_uncore_ops static > > Shaokun Zhang (6): > Documentation: perf: hisi: Documentation for HiSilicon SoC PMU driver > perf: hisi: Add support for HiSilicon SoC uncore PMU driver > perf: hisi: Add support for HiSilicon SoC L3C PMU driver > perf: hisi: Add support for HiSilicon SoC HHA PMU driver > perf: hisi: Add support for HiSilicon SoC DDRC PMU driver > arm64: MAINTAINERS: hisi: Add HiSilicon SoC PMU support > > Documentation/perf/hisi-pmu.txt | 53 +++ > MAINTAINERS | 7 + > drivers/perf/Kconfig | 7 + > drivers/perf/Makefile | 1 + > drivers/perf/hisilicon/Makefile | 1 + > drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c | 467 +++++++++++++++++++++++++ > drivers/perf/hisilicon/hisi_uncore_hha_pmu.c | 477 +++++++++++++++++++++++++ > drivers/perf/hisilicon/hisi_uncore_l3c_pmu.c | 482 ++++++++++++++++++++++++++ > drivers/perf/hisilicon/hisi_uncore_pmu.c | 440 +++++++++++++++++++++++ > drivers/perf/hisilicon/hisi_uncore_pmu.h | 107 ++++++ > include/linux/cpuhotplug.h | 3 + > 11 files changed, 2045 insertions(+) > create mode 100644 Documentation/perf/hisi-pmu.txt > create mode 100644 drivers/perf/hisilicon/Makefile > create mode 100644 drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c > create mode 100644 drivers/perf/hisilicon/hisi_uncore_hha_pmu.c > create mode 100644 drivers/perf/hisilicon/hisi_uncore_l3c_pmu.c > create mode 100644 drivers/perf/hisilicon/hisi_uncore_pmu.c > create mode 100644 drivers/perf/hisilicon/hisi_uncore_pmu.h > From mboxrd@z Thu Jan 1 00:00:00 1970 From: zhangshaokun@hisilicon.com (Zhangshaokun) Date: Tue, 29 Aug 2017 20:28:47 +0800 Subject: [PATCH v5 0/6] Add HiSilicon SoC uncore Performance Monitoring Unit driver In-Reply-To: <1503389277-134131-1-git-send-email-zhangshaokun@hisilicon.com> References: <1503389277-134131-1-git-send-email-zhangshaokun@hisilicon.com> Message-ID: To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hi Mark/Will, Do you have any comments on this patch set? Appreciate your comments. Thanks, Shaokun On 2017/8/22 16:07, Shaokun Zhang wrote: > This patchset adds support for HiSilicon SoC uncore PMUs driver. It > includes L3C, Hydra Home Agent (HHA) and DDRC. > > Changes in v5: > * remove unnecessary name/num_events member in hisi_pmu > * refactor hisi_pmu_hwevents structure > * remove hisi_pmu_alloc function > * revise cpuhotplug for L3C PMUs > * add cpuhotplug for HHA/DDRC PMUs > * fix the name format of uncore PMUs > * remove unnecessary variants > > Changes in v4: > * remove redundant code and comments > * reverse the functions order in exit function > * remove some GPL information > * revise including header file > * fix Jonathan's other comments > > Changes in v3: > * rebase to 4.13-rc1 > * add dev_err if ioremap fails for PMUs > > Changes in v2: > * fix kbuild test robot error > * make hisi_uncore_ops static > > Shaokun Zhang (6): > Documentation: perf: hisi: Documentation for HiSilicon SoC PMU driver > perf: hisi: Add support for HiSilicon SoC uncore PMU driver > perf: hisi: Add support for HiSilicon SoC L3C PMU driver > perf: hisi: Add support for HiSilicon SoC HHA PMU driver > perf: hisi: Add support for HiSilicon SoC DDRC PMU driver > arm64: MAINTAINERS: hisi: Add HiSilicon SoC PMU support > > Documentation/perf/hisi-pmu.txt | 53 +++ > MAINTAINERS | 7 + > drivers/perf/Kconfig | 7 + > drivers/perf/Makefile | 1 + > drivers/perf/hisilicon/Makefile | 1 + > drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c | 467 +++++++++++++++++++++++++ > drivers/perf/hisilicon/hisi_uncore_hha_pmu.c | 477 +++++++++++++++++++++++++ > drivers/perf/hisilicon/hisi_uncore_l3c_pmu.c | 482 ++++++++++++++++++++++++++ > drivers/perf/hisilicon/hisi_uncore_pmu.c | 440 +++++++++++++++++++++++ > drivers/perf/hisilicon/hisi_uncore_pmu.h | 107 ++++++ > include/linux/cpuhotplug.h | 3 + > 11 files changed, 2045 insertions(+) > create mode 100644 Documentation/perf/hisi-pmu.txt > create mode 100644 drivers/perf/hisilicon/Makefile > create mode 100644 drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c > create mode 100644 drivers/perf/hisilicon/hisi_uncore_hha_pmu.c > create mode 100644 drivers/perf/hisilicon/hisi_uncore_l3c_pmu.c > create mode 100644 drivers/perf/hisilicon/hisi_uncore_pmu.c > create mode 100644 drivers/perf/hisilicon/hisi_uncore_pmu.h >