Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752340AbdF1S6j (ORCPT ); Wed, 28 Jun 2017 14:58:39 -0400 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:38147 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752368AbdF1S6E (ORCPT ); Wed, 28 Jun 2017 14:58:04 -0400 From: Anju T Sudhakar To: mpe@ellerman.id.au Cc: linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, ego@linux.vnet.ibm.com, bsingharora@gmail.com, anton@samba.org, sukadev@linux.vnet.ibm.com, mikey@neuling.org, stewart@linux.vnet.ibm.com, dja@axtens.net, eranian@google.com, hemant@linux.vnet.ibm.com, maddy@linux.vnet.ibm.com, anju@linux.vnet.ibm.com Subject: [PATCH v11 08/10] powerpc/powernv: Thread IMC events detection Date: Thu, 29 Jun 2017 00:27:11 +0530 X-Mailer: git-send-email 2.7.4 In-Reply-To: <1498676232-23841-1-git-send-email-anju@linux.vnet.ibm.com> References: <1498676232-23841-1-git-send-email-anju@linux.vnet.ibm.com> X-TM-AS-MML: disable x-cbid: 17062818-0048-0000-0000-0000024BDE9C X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 17062818-0049-0000-0000-000047FCC2DC Message-Id: <1498676232-23841-7-git-send-email-anju@linux.vnet.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-06-28_12:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 spamscore=0 suspectscore=1 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1703280000 definitions=main-1706280300 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2153 Lines: 56 Code to add support for detection of thread IMC events. It adds a new domain IMC_DOMAIN_THREAD and it is determined with the help of the "type" property in the imc device-tree. Signed-off-by: Anju T Sudhakar Signed-off-by: Hemant Kumar Signed-off-by: Madhavan Srinivasan --- arch/powerpc/include/asm/imc-pmu.h | 2 ++ arch/powerpc/platforms/powernv/opal-imc.c | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/arch/powerpc/include/asm/imc-pmu.h b/arch/powerpc/include/asm/imc-pmu.h index 74cbb47..a18ecb2 100644 --- a/arch/powerpc/include/asm/imc-pmu.h +++ b/arch/powerpc/include/asm/imc-pmu.h @@ -98,6 +98,7 @@ struct imc_pmu { /* In-Memory Collection Counters Type */ enum { + IMC_COUNTER_PER_THREAD = 0x1, IMC_COUNTER_PER_CORE = 0x4, IMC_COUNTER_PER_CHIP = 0x10, }; @@ -107,6 +108,7 @@ enum { */ #define IMC_DOMAIN_NEST 1 #define IMC_DOMAIN_CORE 2 +#define IMC_DOMAIN_THREAD 3 extern struct imc_pmu *per_nest_pmu_arr[IMC_MAX_PMUS]; extern struct imc_pmu *core_imc_pmu; diff --git a/arch/powerpc/platforms/powernv/opal-imc.c b/arch/powerpc/platforms/powernv/opal-imc.c index 62add4f..6d24dfb 100644 --- a/arch/powerpc/platforms/powernv/opal-imc.c +++ b/arch/powerpc/platforms/powernv/opal-imc.c @@ -380,7 +380,7 @@ static int imc_get_mem_addr_nest(struct device_node *node, /* * imc_pmu_create : Takes the parent device which is the pmu unit, pmu_index * and domain as the inputs. - * Allocates memory for the pmu, sets up its domain (NEST/CORE), and + * Allocates memory for the pmu, sets up its domain (NEST/CORE/THREAD), and * calls imc_events_setup() to allocate memory for the events supported * by this pmu. Assigns a name for the pmu. * @@ -516,6 +516,8 @@ static int opal_imc_counters_probe(struct platform_device *pdev) domain = IMC_DOMAIN_NEST; else if (type == IMC_COUNTER_PER_CORE) domain = IMC_DOMAIN_CORE; + else if (type == IMC_COUNTER_PER_THREAD) + domain = IMC_DOMAIN_THREAD; else continue; if (!imc_pmu_create(imc_dev, pmu_count, domain)) -- 2.7.4