From patchwork Mon Mar 21 07:01:22 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "liuqi (BA)" X-Patchwork-Id: 12786882 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 8A86CC433EF for ; Mon, 21 Mar 2022 07:04:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date:Subject:CC :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=TjfE3sA1G/nhMnucU7MzZ4i60a6b9DOrD7jGjlDRJZQ=; b=Y07N5glNoMVaf6 sXzKbIgfh3siqL9r46eEi8sRFL9wQDPTBLQWWxGLBxUAa47qAxGv9SGiuENIT86q0KNlM3r0UDFvj Asy3z57A8EsPl/U/37MwaBPPhrcjynNYsfU8K1o6hfeTkv26sqfPGqJUE56a+HLFl2Z8T8xnTCRs7 ec0vREt5GT/5DqzsWmgdK99nTUpS9UPLTB9ESKkwsP6xM9iUspmBPUHFPF5KPvE6Mc6LOGPOsWPek kRpA1xjg4MG5CgUC7wguZI/ZhQqik6/+HRUoIvnt6wAZmCxBhzGJ1Ff2MuuvMd/DqM7nVz4UDILZ1 ArtSyH6F1To/OvbYLINg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nWC4B-006jV0-Tq; Mon, 21 Mar 2022 07:03:00 +0000 Received: from szxga02-in.huawei.com ([45.249.212.188]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nWC47-006jPy-Qh for linux-arm-kernel@lists.infradead.org; Mon, 21 Mar 2022 07:02:57 +0000 Received: from kwepemi100022.china.huawei.com (unknown [172.30.72.53]) by szxga02-in.huawei.com (SkyGuard) with ESMTP id 4KMQVt5GcjzCqvP; Mon, 21 Mar 2022 15:00:38 +0800 (CST) Received: from kwepemm600003.china.huawei.com (7.193.23.202) by kwepemi100022.china.huawei.com (7.221.188.126) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Mon, 21 Mar 2022 15:02:43 +0800 Received: from localhost.localdomain (10.67.164.66) by kwepemm600003.china.huawei.com (7.193.23.202) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2308.21; Mon, 21 Mar 2022 15:02:43 +0800 From: Qi Liu To: , CC: , , , Subject: [PATCH v3 0/2] Add Support for HiSilicon CPA PMU Date: Mon, 21 Mar 2022 15:01:22 +0800 Message-ID: <20220321070124.41338-1-liuqi115@huawei.com> X-Mailer: git-send-email 2.24.0 MIME-Version: 1.0 X-Originating-IP: [10.67.164.66] X-ClientProxiedBy: dggems703-chm.china.huawei.com (10.3.19.180) To kwepemm600003.china.huawei.com (7.193.23.202) X-CFilter-Loop: Reflected X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220321_000256_048616_8EBC27C8 X-CRM114-Status: UNSURE ( 8.03 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Add Support for HiSilicon CPA PMU driver. Json file in perf tool is applied in https://lore.kernel.org/linux-arm-kernel/YhkhSZp+a715Ldzr@kernel.org/. Change since v2: - Associate CPA PMUs with CPUs online, rather than CPUs in the nearest SCCL. - Move CPA power management to probe and remove function. - Address the comments from John. - Link: https://lore.kernel.org/linux-arm-kernel/20220224111129.41416-1-liuqi115@huawei.com/ Change since v1: - Address the comments from John. - Link: https://lore.kernel.org/linux-arm-kernel/20220214114228.40859-1-liuqi115@huawei.com/ Qi Liu (2): drivers/perf: hisi: Associate PMUs in SICL with CPUs online drivers/perf: hisi: Add Support for CPA PMU drivers/perf/hisilicon/Makefile | 2 +- drivers/perf/hisilicon/hisi_uncore_cpa_pmu.c | 400 +++++++++++++++++++ drivers/perf/hisilicon/hisi_uncore_pa_pmu.c | 18 +- drivers/perf/hisilicon/hisi_uncore_pmu.c | 4 + drivers/perf/hisilicon/hisi_uncore_pmu.h | 1 + include/linux/cpuhotplug.h | 1 + 6 files changed, 414 insertions(+), 12 deletions(-) create mode 100644 drivers/perf/hisilicon/hisi_uncore_cpa_pmu.c