Received: by 2002:a05:6a10:6744:0:0:0:0 with SMTP id w4csp382306pxu; Fri, 23 Oct 2020 03:26:35 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyKLf8300rShlhsKF7Z/st2pCSYT+0E+0uqJMNhEtSOZMFvKmSyLbWca/jiqd2dYbkNZ+St X-Received: by 2002:a50:d0d0:: with SMTP id g16mr1429538edf.18.1603448795406; Fri, 23 Oct 2020 03:26:35 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1603448795; cv=none; d=google.com; s=arc-20160816; b=sbyxjuwheSqPshwECglNNgwnkYZF1PKigyYQXy7X6GZjEgaVLBC+rP3xLSV/rrBb/z 3NC1P6cvUhWTFfhZD7310mGyaPn5P4AaoDTxclC97J3iCjkzKNfX15pGTB29ijPbYtJP DKuAgAcH3e83tWLrQOCmDQMBdymtv2D9M07+oarB0+sO5CbmFjmOhV0ACcCUnYJ2Y/Ni OgxwVUil42SwB5dlIr93z3l2xPycnrEUA5B3T/nh8RgYkUt2GwbxPU1EdjoV93oJTQvF 8iAwMYEpPbHJw0OZb+dcq7mqUeetcHfwN0kAsKia78sOzOO56a6ozjNVxZKdcRW+6Th2 vJ7A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:mime-version:message-id:date:subject:cc:to:from; bh=vzlUiwTHdg1tISjDS+tIj78gQETswSZAjTJf2KIh0v0=; b=eQRyfgai7zDeiXHlSY1ct2paYlAZVxnZJh58cuLuVo1NZOsZfE6O1MIbJ+7Fx7WmEK Kz1uK95AP7WFHOe6FMIjp+DZOHUMpjNCXsh+KjPS1RQC9xh8bc23yWSJw1JewMBSRrng f8ivpr2NgnSD/cRZbNh7bEWmMci9GYP1iALw7IvQ3PKQmSoWP2TPgU0JDmjLitqN17x9 cMMcwlN5JmsNrfNB8r3iH+4FVm6oKLdCCbkpvKiEIS54VcDycn5xcGuvbVzRkSy5pKgu 5pVEog/+4KHg2QqumRna9J3fm4/yZG17BOPuwKtPU7oPZoE+QPTbQ52trMYVRTKdFFQO rNyw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id t14si521145ejd.338.2020.10.23.03.26.13; Fri, 23 Oct 2020 03:26:35 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S462136AbgJWKYp (ORCPT + 99 others); Fri, 23 Oct 2020 06:24:45 -0400 Received: from szxga04-in.huawei.com ([45.249.212.190]:15767 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S375931AbgJWKYo (ORCPT ); Fri, 23 Oct 2020 06:24:44 -0400 Received: from DGGEMS411-HUB.china.huawei.com (unknown [172.30.72.58]) by Forcepoint Email with ESMTP id B89FF6F81F2CAD284A06; Fri, 23 Oct 2020 18:24:42 +0800 (CST) Received: from localhost.localdomain (10.67.165.24) by DGGEMS411-HUB.china.huawei.com (10.3.19.211) with Microsoft SMTP Server id 14.3.487.0; Fri, 23 Oct 2020 18:24:36 +0800 From: Qi Liu To: , , , CC: , , Subject: [PATCH v3] coresight: etm4x: Modify core-commit of cpu to avoid the overflow of HiSilicon ETM Date: Fri, 23 Oct 2020 18:23:15 +0800 Message-ID: <1603448595-22615-1-git-send-email-liuqi115@huawei.com> X-Mailer: git-send-email 2.8.1 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.67.165.24] X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The ETM device can't keep up with the core pipeline when cpu core is at full speed. This may cause overflow within core and its ETM. This is a common phenomenon on ETM devices. On HiSilicon Hip08 platform, a specific feature is added to set core pipeline. So commit rate can be reduced manually to avoid ETM overflow. Signed-off-by: Qi Liu --- Change since v1: - add CONFIG_ETM4X_IMPDEF_FEATURE and CONFIG_ETM4X_IMPDEF_HISILICON to keep specific feature off platforms which don't use it. Change since v2: - remove some unused variable. drivers/hwtracing/coresight/Kconfig | 18 ++++++++ drivers/hwtracing/coresight/coresight-etm4x-core.c | 50 ++++++++++++++++++++++ 2 files changed, 68 insertions(+) diff --git a/drivers/hwtracing/coresight/Kconfig b/drivers/hwtracing/coresight/Kconfig index c119824..9665d70 100644 --- a/drivers/hwtracing/coresight/Kconfig +++ b/drivers/hwtracing/coresight/Kconfig @@ -110,6 +110,24 @@ config CORESIGHT_SOURCE_ETM4X To compile this driver as a module, choose M here: the module will be called coresight-etm4x. +config ETM4X_IMPDEF_FEATURE + bool "Control overflow impdef support in CoreSight ETM 4.x driver " + depends on CORESIGHT_SOURCE_ETM4X + help + This control provides overflow implement define for CoreSight + ETM 4.x tracer module which could not reduce commit race + automatically, and could avoid overflow within ETM tracer module + and its cpu core. + +config ETM4X_IMPDEF_HISILICON + bool "Control overflow impdef support in HiSilicon ETM 4.x driver " + depends on ETM4X_IMPDEF_FEATURE + help + This control provides overflow implement define for HiSilicon + ETM 4.x tracer module of Hip08 platform. Overflow within ETM + tracer module and its cpu core can be avoided by reducing core + commit manually. + config CORESIGHT_STM tristate "CoreSight System Trace Macrocell driver" depends on (ARM && !(CPU_32v3 || CPU_32v4 || CPU_32v4T)) || ARM64 diff --git a/drivers/hwtracing/coresight/coresight-etm4x-core.c b/drivers/hwtracing/coresight/coresight-etm4x-core.c index abd706b..35f4333 100644 --- a/drivers/hwtracing/coresight/coresight-etm4x-core.c +++ b/drivers/hwtracing/coresight/coresight-etm4x-core.c @@ -103,12 +103,61 @@ struct etm4_enable_arg { int rc; }; +#ifdef CONFIG_ETM4X_IMPDEF_FEATURE + +#ifdef CONFIG_ETM4X_IMPDEF_HISILICON + +#define HISI_HIP08_CORE_COMMIT_CLEAR 0x3000 +#define HISI_HIP08_CORE_COMMIT_SHIFT 12 +static void etm4_hisi_config_core_commit(int flag) +{ + u64 val; + + asm volatile("mrs %0,s3_1_c15_c2_5" : "=r"(val)); + val &= ~HISI_HIP08_CORE_COMMIT_CLEAR; + val |= flag << HISI_HIP08_CORE_COMMIT_SHIFT; + asm volatile("msr s3_1_c15_c2_5,%0" : : "r"(val)); +} +#else +static void etm4_hisi_config_core_commit(int flag) +{ +} +#endif /* CONFIG_ETM4X_IMPDEF_HISILICON */ + +static void etm4_enable_arch_specific(void) +{ + /* + * If ETM device is HiSilicon ETM device, reduce the + * core-commit to avoid ETM overflow. + */ + etm4_hisi_config_core_commit(1); +} + +static void etm4_disable_arch_specific(void) +{ + /* + * If ETM device is HiSilicon ETM device, resume the + * core-commit after ETM trace is complete. + */ + etm4_hisi_config_core_commit(0); +} +#else +static void etm4_enable_arch_specific(void) +{ +} + +static void etm4_disable_arch_specific(void) +{ +} +#endif /* CONFIG_ETM4X_IMPDEF_FEATURE */ + static int etm4_enable_hw(struct etmv4_drvdata *drvdata) { int i, rc; struct etmv4_config *config = &drvdata->config; struct device *etm_dev = &drvdata->csdev->dev; + etm4_enable_arch_specific(); CS_UNLOCK(drvdata->base); etm4_os_unlock(drvdata); @@ -475,6 +524,7 @@ static void etm4_disable_hw(void *info) struct device *etm_dev = &drvdata->csdev->dev; int i; + etm4_disable_arch_specific(); CS_UNLOCK(drvdata->base); if (!drvdata->skip_power_up) { -- 2.8.1