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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 433E7C74A5B for ; Tue, 21 Mar 2023 10:19:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229684AbjCUKTI (ORCPT ); Tue, 21 Mar 2023 06:19:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35312 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229487AbjCUKTG (ORCPT ); Tue, 21 Mar 2023 06:19:06 -0400 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id BF1D2A1 for ; Tue, 21 Mar 2023 03:19:04 -0700 (PDT) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 55E93AD7; Tue, 21 Mar 2023 03:19:48 -0700 (PDT) Received: from [10.57.53.10] (unknown [10.57.53.10]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 43C393F766; Tue, 21 Mar 2023 03:19:03 -0700 (PDT) Message-ID: <74d57e87-a32a-1a55-6ff6-6ad7f5cbec49@arm.com> Date: Tue, 21 Mar 2023 10:19:01 +0000 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.9.0 Subject: Re: [PATCH] coresight: etm4x: Do not access TRCIDR1 for identification To: Anshuman Khandual , coresight@lists.linaro.org Cc: mike.leach@linaro.org, james.clark@arm.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Steve Clevenger References: <20230317115728.1358368-1-suzuki.poulose@arm.com> <8aef166f-da97-f01d-ee80-9aef7d15c56e@arm.com> From: Suzuki K Poulose In-Reply-To: <8aef166f-da97-f01d-ee80-9aef7d15c56e@arm.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 21/03/2023 10:17, Anshuman Khandual wrote: > > > On 3/17/23 17:27, Suzuki K Poulose wrote: >> CoreSight ETM4x architecture clearly provides ways to identify a device >> via registers in the "Management" class, TRCDEVARCH and TRCDEVTYPE. These >> registers can be accessed without the Trace domain being powered on. >> We additionally added TRCIDR1 as fallback in order to cover for any >> ETMs that may not have implemented TRCDEVARCH. So far, nobody has >> reported hitting a WARNING we placed to catch such systems. >> >> Also, more importantly it is problematic to access TRCIDR1, which is a "Trace" >> register via MMIO access, without clearing the OSLK. But we cannot >> mess with the OSLK until we know for sure that this is an ETMv4 device. >> Thus, this kind of creates a chicken and egg problem unnecessarily for systems >> "which are compliant" to the ETMv4 architecture. >> >> Let us remove the TRCIDR1 fall back check and rely only on TRCDEVARCH. >> >> Reported-by: Steve Clevenger >> Link: https://lore.kernel.org/all/143540e5623d4c7393d24833f2b80600d8d745d2.1677881753.git.scclevenger@os.amperecomputing.com/ >> Cc: Mike Leach >> Cc: James Clark >> Fixes: 8b94db1edaee ("coresight: etm4x: Use TRCDEVARCH for component discovery") >> Signed-off-by: Suzuki K Poulose >> --- >> .../hwtracing/coresight/coresight-etm4x-core.c | 18 +++++------------- >> 1 file changed, 5 insertions(+), 13 deletions(-) >> >> diff --git a/drivers/hwtracing/coresight/coresight-etm4x-core.c b/drivers/hwtracing/coresight/coresight-etm4x-core.c >> index 104333c2c8a3..c1b72d892d7d 100644 >> --- a/drivers/hwtracing/coresight/coresight-etm4x-core.c >> +++ b/drivers/hwtracing/coresight/coresight-etm4x-core.c >> @@ -1070,25 +1070,17 @@ static bool etm4_init_iomem_access(struct etmv4_drvdata *drvdata, >> struct csdev_access *csa) >> { >> u32 devarch = readl_relaxed(drvdata->base + TRCDEVARCH); >> - u32 idr1 = readl_relaxed(drvdata->base + TRCIDR1); >> >> /* >> * All ETMs must implement TRCDEVARCH to indicate that >> - * the component is an ETMv4. To support any broken >> - * implementations we fall back to TRCIDR1 check, which >> - * is not really reliable. >> + * the component is an ETMv4 >> */ >> - if ((devarch & ETM_DEVARCH_ID_MASK) == ETM_DEVARCH_ETMv4x_ARCH) { >> - drvdata->arch = etm_devarch_to_arch(devarch); >> - } else { >> - pr_warn("CPU%d: ETM4x incompatible TRCDEVARCH: %x, falling back to TRCIDR1\n", >> - smp_processor_id(), devarch); >> - >> - if (ETM_TRCIDR1_ARCH_MAJOR(idr1) != ETM_TRCIDR1_ARCH_ETMv4) >> - return false; >> - drvdata->arch = etm_trcidr_to_arch(idr1); > > etm_trcidr_to_arch() does not seem to be used else where, should be dropped ? Good point, will drop it. Thanks for the review. Suzuki