From: Leo Yan <leo.yan@linaro.org>
To: Mike Leach <mike.leach@linaro.org>
Cc: coresight@lists.linaro.org, mathieu.poirier@linaro.org,
linux-arm-kernel@lists.infradead.org, suzuki.poulose@arm.com
Subject: Re: [PATCH] coresight: etm4x: Ensure default perf settings filter user/kernel
Date: Wed, 19 Aug 2020 10:11:19 +0800 [thread overview]
Message-ID: <20200819021119.GA9556@leoy-ThinkPad-X240s> (raw)
In-Reply-To: <20200818214312.30793-1-mike.leach@linaro.org>
Hi Mike,
On Tue, Aug 18, 2020 at 10:43:12PM +0100, Mike Leach wrote:
> Moving from using an address filter to trace the default "all addresses"
> range to no filtering to acheive the same result, has caused the perf
> filtering of kernel/user address spaces from not working unless an
> explicit address filter was used.
>
> This due to the global TRCVICTLR exception level filtering not being set
> correctly.
>
> This patch fixes this.
Very cool!
> Reported-by: Leo Yan <leo.yan@linaro.org>
> Signed-off-by: Mike Leach <mike.leach@linaro.org>
> ---
> drivers/hwtracing/coresight/coresight-etm4x.c | 11 +++++++++++
> drivers/hwtracing/coresight/coresight-etm4x.h | 3 +++
> 2 files changed, 14 insertions(+)
>
> diff --git a/drivers/hwtracing/coresight/coresight-etm4x.c b/drivers/hwtracing/coresight/coresight-etm4x.c
> index 8b0634ebef77..d0f800753590 100644
> --- a/drivers/hwtracing/coresight/coresight-etm4x.c
> +++ b/drivers/hwtracing/coresight/coresight-etm4x.c
> @@ -52,6 +52,7 @@ static struct etmv4_drvdata *etmdrvdata[NR_CPUS];
> static void etm4_set_default_config(struct etmv4_config *config);
> static int etm4_set_event_filters(struct etmv4_drvdata *drvdata,
> struct perf_event *event);
> +static u64 etm4_get_access_type(struct etmv4_config *config);
>
> static enum cpuhp_state hp_online;
>
> @@ -785,6 +786,8 @@ static void etm4_init_arch_data(void *info)
>
> static void etm4_set_default_config(struct etmv4_config *config)
> {
> + u64 access_type;
> +
> /* disable all events tracing */
> config->eventctrl0 = 0x0;
> config->eventctrl1 = 0x0;
> @@ -800,6 +803,14 @@ static void etm4_set_default_config(struct etmv4_config *config)
>
> /* TRCVICTLR::EVENT = 0x01, select the always on logic */
> config->vinst_ctrl = BIT(0);
> +
> + /*
> + * TRCVICTLR::EXLEVEL_NS:EXLEVELS: Set kernel / user filtering
> + * bits in vinst, same bit pattern as address comparator acc values
> + * but offset in this register
> + */
> + access_type = etm4_get_access_type(config) << ETM_EXLEVEL_VINST_OFFSET;
> + config->vinst_ctrl |= (u32)access_type;
Just a minor comment, here the definition for ETM_EXLEVEL_VINST_OFFSET
is easily to introduce confusion. In the register TRCACATRn,
EXLEVEL_NS:EXLEVELS offset is 8, and in the registser TRCVICTLR the
EXLEVEL_NS:EXLEVELS offset is 16. So for more explict expression, we
need to define below two macros:
#define ETM_EXLEVEL_TRCVICTLR_OFFSET 16
#define ETM_EXLEVEL_TRCACATRn_OFFSET 8
access_type = etm4_get_access_type(config) >> ETM_EXLEVEL_TRCACATRn_OFFSET;
access_type = access_type << ETM_EXLEVEL_VINST_OFFSET;
config->vinst_ctrl |= (u32)access_type;
Otherwise, the change is good for me:
Reviewed-by: Leo Yan <leo.yan@linaro.org>
Tested-by: Leo Yan <leo.yan@linaro.org>
And thanks a lot for the quick fixing!
Leo
> static u64 etm4_get_ns_access_type(struct etmv4_config *config)
> diff --git a/drivers/hwtracing/coresight/coresight-etm4x.h b/drivers/hwtracing/coresight/coresight-etm4x.h
> index b8283e1d6d88..369abc25c597 100644
> --- a/drivers/hwtracing/coresight/coresight-etm4x.h
> +++ b/drivers/hwtracing/coresight/coresight-etm4x.h
> @@ -192,6 +192,9 @@
> #define ETM_EXLEVEL_NS_HYP BIT(14)
> #define ETM_EXLEVEL_NS_NA BIT(15)
>
> +/* access level control in VINST - same bits as TRCACATRn but offset */
> +#define ETM_EXLEVEL_VINST_OFFSET 8
> +
> /* secure / non secure masks - TRCVICTLR, IDR3 */
> #define ETM_EXLEVEL_S_VICTLR_MASK GENMASK(19, 16)
> /* NS MON (EL3) mode never implemented */
> --
> 2.17.1
>
_______________________________________________
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:[~2020-08-19 2:12 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-18 21:43 [PATCH] coresight: etm4x: Ensure default perf settings filter user/kernel Mike Leach
2020-08-19 2:11 ` Leo Yan [this message]
2020-08-19 17:19 ` Mike Leach
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=20200819021119.GA9556@leoy-ThinkPad-X240s \
--to=leo.yan@linaro.org \
--cc=coresight@lists.linaro.org \
--cc=linux-arm-kernel@lists.infradead.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