From: James Clark <james.clark@arm.com>
To: Suzuki K Poulose <suzuki.poulose@arm.com>,
mathieu.poirier@linaro.org, coresight@lists.linaro.org
Cc: leo.yan@linaro.com, mike.leach@linaro.org,
Leo Yan <leo.yan@linaro.org>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 01/15] coresight: Make ETM4x TRCIDR0 register accesses consistent with sysreg.h
Date: Thu, 3 Feb 2022 12:08:03 +0000 [thread overview]
Message-ID: <83349132-eac4-d05d-ff47-204fa8914922@arm.com> (raw)
In-Reply-To: <3df77ddd-31df-c2d8-7aac-e21c7ba48f1e@arm.com>
On 03/02/2022 10:54, Suzuki K Poulose wrote:
> On 03/02/2022 10:40, James Clark wrote:
>>
>>
>> On 02/02/2022 17:05, Suzuki K Poulose wrote:
>>> Hi James
>>>
>>> Thanks for taking this tedious task of cleaning the code and making
>>> this robust and readable.
>>>
>>> One minor comment below.
>>>
>>> On 02/02/2022 16:02, James Clark wrote:
>>>> This is a no-op change for style and consistency and has no effect on the
>>>> binary produced by gcc-11.
>>>>
>>>> Signed-off-by: James Clark <james.clark@arm.com>
>>>> ---
>>>> .../coresight/coresight-etm4x-core.c | 37 +++++--------------
>>>> drivers/hwtracing/coresight/coresight-etm4x.h | 17 +++++++++
>>>> drivers/hwtracing/coresight/coresight-priv.h | 1 +
>>>> 3 files changed, 27 insertions(+), 28 deletions(-)
>>>>
>>>> diff --git a/drivers/hwtracing/coresight/coresight-etm4x-core.c b/drivers/hwtracing/coresight/coresight-etm4x-core.c
>>>> index bf18128cf5de..8aefee4e72fd 100644
>>>> --- a/drivers/hwtracing/coresight/coresight-etm4x-core.c
>>>> +++ b/drivers/hwtracing/coresight/coresight-etm4x-core.c
>>>> @@ -1091,41 +1091,22 @@ static void etm4_init_arch_data(void *info)
>>>> etmidr0 = etm4x_relaxed_read32(csa, TRCIDR0);
>>>> /* INSTP0, bits[2:1] P0 tracing support field */
>>>> - if (BMVAL(etmidr0, 1, 1) && BMVAL(etmidr0, 2, 2))
>>>> - drvdata->instrp0 = true;
>>>> - else
>>>> - drvdata->instrp0 = false;
>>>> -
>>>> + drvdata->instrp0 = !!((REG_VAL(etmidr0, TRCIDR0_INSTP0) & 0b01) &&
>>>> + (REG_VAL(etmidr0, TRCIDR0_INSTP0) & 0b10));
>>>
>>> I don't understand this check. For ETMv4, here is what I find in the spec (ARM IHI 0064C)
>>>
>>> P0 tracing support field. The permitted values are:
>>> 0b00 Tracing of load and store instructions as P0 elements is not
>>> supported.
>>> 0b11 Tracing of load and store instructions as P0 elements is
>>> supported, so TRCCONFIGR.INSTP0 is supported.
>>>
>>> All other values are reserved.
>>>
>>> So the check could simply be :
>>>
>>> drvdata->instrp0 = (REG_VAL(emtidr0, TRCIDR0_INSTP0) == 0b11;
>>
>> Yes I can make this change, but it does make the compiler emit a slightly different binary
>> so we can't rely on that to check the refactor is ok.
>>
>> Should I change it in this commit or stick it on the very end? Probably the end is best
>> in case I have to do any rebases and I still need to validate there are no mistakes.
>
> I would say, fix the existing check first and then convert to use the
> updated symbols.
>
> That way we could queue the fix separately and you may be able to rebase
> your next version on the updated tree ?
Good idea, I've resubmitted v2 with that and the other comments you left.
>
>
> Cheers
> Suzuki
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2022-02-03 12:27 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-02 16:02 [PATCH 00/15] Make ETM register accesses consistent with sysreg.h James Clark
2022-02-02 16:02 ` [PATCH 01/15] coresight: Make ETM4x TRCIDR0 " James Clark
2022-02-02 17:05 ` Suzuki K Poulose
2022-02-03 10:40 ` James Clark
2022-02-03 10:54 ` Suzuki K Poulose
2022-02-03 12:08 ` James Clark [this message]
2022-02-02 16:02 ` [PATCH 02/15] coresight: Make ETM4x TRCIDR2 " James Clark
2022-02-03 13:58 ` Suzuki K Poulose
2022-02-03 14:27 ` Suzuki K Poulose
2022-02-02 16:02 ` [PATCH 03/15] coresight: Make ETM4x TRCIDR3 " James Clark
2022-02-02 16:02 ` [PATCH 04/15] coresight: Make ETM4x TRCIDR4 " James Clark
2022-02-02 16:02 ` [PATCH 05/15] coresight: Make ETM4x TRCIDR5 " James Clark
2022-02-02 16:02 ` [PATCH 06/15] coresight: Make ETM4x TRCCONFIGR " James Clark
2022-02-02 16:02 ` [PATCH 07/15] coresight: Make ETM4x TRCEVENTCTL1R " James Clark
2022-02-02 16:02 ` [PATCH 08/15] coresight: Make ETM4x TRCSTALLCTLR " James Clark
2022-02-02 16:02 ` [PATCH 09/15] coresight: Make ETM4x TRCVICTLR " James Clark
2022-02-02 16:02 ` [PATCH 10/15] coresight: Make ETM3x ETMTECR1 " James Clark
2022-02-02 16:02 ` [PATCH 11/15] coresight: Make ETM4x TRCACATRn " James Clark
2022-02-02 16:02 ` [PATCH 12/15] coresight: Make ETM4x TRCSSCCRn and TRCSSCSRn " James Clark
2022-02-02 16:02 ` [PATCH 13/15] coresight: Make ETM4x TRCSSPCICRn " James Clark
2022-02-02 16:02 ` [PATCH 14/15] coresight: Make ETM4x TRCBBCTLR " James Clark
2022-02-02 16:02 ` [PATCH 15/15] coresight: Make ETM4x TRCRSCTLRn " James Clark
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=83349132-eac4-d05d-ff47-204fa8914922@arm.com \
--to=james.clark@arm.com \
--cc=coresight@lists.linaro.org \
--cc=leo.yan@linaro.com \
--cc=leo.yan@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mathieu.poirier@linaro.org \
--cc=mike.leach@linaro.org \
--cc=suzuki.poulose@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).