From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752461AbdF0H4Z (ORCPT ); Tue, 27 Jun 2017 03:56:25 -0400 Received: from szxga02-in.huawei.com ([45.249.212.188]:9302 "EHLO szxga02-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751561AbdF0H4V (ORCPT ); Tue, 27 Jun 2017 03:56:21 -0400 From: Shaokun Zhang To: , CC: , , , , Shaokun Zhang Subject: [PATCH 0/6] Add HiSilicon SoC uncore Performance Monitoring Unit driver Date: Tue, 27 Jun 2017 16:26:35 +0800 Message-ID: <1498552001-182148-1-git-send-email-zhangshaokun@hisilicon.com> X-Mailer: git-send-email 1.9.1 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.67.212.75] X-CFilter-Loop: Reflected X-Mirapoint-Virus-RAPID-Raw: score=unknown(0), refid=str=0001.0A020206.59520FA2.0073,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: f745400741046bb731171b0e9fffb7a9 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patchset adds support for HiSilicon SoC uncore PMUs driver. It includes L3C, Hydra Home Agent (HHA) and DDRC. Shaokun Zhang (6): Documentation: perf: hisi: Documentation for HiSilicon SoC PMU driver drivers: perf: hisi: Add support for HiSilicon SoC uncore PMU driver drivers: perf: hisi: Add support for HiSilicon SoC L3C PMU driver drivers: perf: hisi: Add support for HiSilicon SoC HHA PMU driver drivers: perf: hisi: Add support for HiSilicon SoC DDRC PMU driver arm64: MAINTAINERS: hisi: Add HiSilicon SoC PMU support Documentation/perf/hisi-pmu.txt | 51 +++ MAINTAINERS | 7 + drivers/perf/Kconfig | 7 + drivers/perf/Makefile | 1 + drivers/perf/hisilicon/Makefile | 1 + drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c | 435 ++++++++++++++++++++ drivers/perf/hisilicon/hisi_uncore_hha_pmu.c | 451 +++++++++++++++++++++ drivers/perf/hisilicon/hisi_uncore_l3c_pmu.c | 554 ++++++++++++++++++++++++++ drivers/perf/hisilicon/hisi_uncore_pmu.c | 416 +++++++++++++++++++ drivers/perf/hisilicon/hisi_uncore_pmu.h | 116 ++++++ include/linux/cpuhotplug.h | 1 + 11 files changed, 2040 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 -- 1.9.1 From mboxrd@z Thu Jan 1 00:00:00 1970 From: zhangshaokun@hisilicon.com (Shaokun Zhang) Date: Tue, 27 Jun 2017 16:26:35 +0800 Subject: [PATCH 0/6] Add HiSilicon SoC uncore Performance Monitoring Unit driver Message-ID: <1498552001-182148-1-git-send-email-zhangshaokun@hisilicon.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org This patchset adds support for HiSilicon SoC uncore PMUs driver. It includes L3C, Hydra Home Agent (HHA) and DDRC. Shaokun Zhang (6): Documentation: perf: hisi: Documentation for HiSilicon SoC PMU driver drivers: perf: hisi: Add support for HiSilicon SoC uncore PMU driver drivers: perf: hisi: Add support for HiSilicon SoC L3C PMU driver drivers: perf: hisi: Add support for HiSilicon SoC HHA PMU driver drivers: perf: hisi: Add support for HiSilicon SoC DDRC PMU driver arm64: MAINTAINERS: hisi: Add HiSilicon SoC PMU support Documentation/perf/hisi-pmu.txt | 51 +++ MAINTAINERS | 7 + drivers/perf/Kconfig | 7 + drivers/perf/Makefile | 1 + drivers/perf/hisilicon/Makefile | 1 + drivers/perf/hisilicon/hisi_uncore_ddrc_pmu.c | 435 ++++++++++++++++++++ drivers/perf/hisilicon/hisi_uncore_hha_pmu.c | 451 +++++++++++++++++++++ drivers/perf/hisilicon/hisi_uncore_l3c_pmu.c | 554 ++++++++++++++++++++++++++ drivers/perf/hisilicon/hisi_uncore_pmu.c | 416 +++++++++++++++++++ drivers/perf/hisilicon/hisi_uncore_pmu.h | 116 ++++++ include/linux/cpuhotplug.h | 1 + 11 files changed, 2040 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 -- 1.9.1