From: Mark Rutland <mark.rutland@arm.com>
To: Rakesh Babu Saladi <rsaladi2@marvell.com>
Cc: lpieralisi@kernel.org, sudeep.holla@arm.com,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, sgoutham@marvell.com,
gcherian@marvell.com, naveenm@marvell.com
Subject: Re: [PATCH] arm64: smccc: Add trace events to SMC calls.
Date: Mon, 6 Mar 2023 14:47:55 +0000 [thread overview]
Message-ID: <ZAX9G5mqGqzTZZ5N@FVFF77S0Q05N> (raw)
In-Reply-To: <20230304125850.32687-1-rsaladi2@marvell.com>
On Sat, Mar 04, 2023 at 06:28:50PM +0530, Rakesh Babu Saladi wrote:
> This patch adds start and end trace events to an SMC call sent from
> kernel to ATF. The start trace event prints the smc_id and the end
> trace event prints the smc_id and the time taken to process the SMC
> call.
>
> Signed-off-by: Rakesh Babu Saladi <rsaladi2@marvell.com>
We've said no to this in the past:
https://lore.kernel.org/lkml/20210923112058.GA14893@C02TD0UTHF1T.local/
I don't think anything has changed, and this has all the same problems as
before, so I do not think we should do this.
Which SMC calls do you want to trace, and why?
Thanks,
Mark.
> ---
> drivers/firmware/smccc/Makefile | 3 +-
> drivers/firmware/smccc/smccc.c | 14 ++++++++++
> drivers/firmware/smccc/smccc_trace.c | 7 +++++
> drivers/firmware/smccc/smccc_trace.h | 41 ++++++++++++++++++++++++++++
> include/linux/arm-smccc.h | 4 ++-
> kernel/time/timekeeping.c | 7 +++++
> 6 files changed, 74 insertions(+), 2 deletions(-)
> create mode 100644 drivers/firmware/smccc/smccc_trace.c
> create mode 100644 drivers/firmware/smccc/smccc_trace.h
>
> diff --git a/drivers/firmware/smccc/Makefile b/drivers/firmware/smccc/Makefile
> index 40d19144a860..e74c35191b49 100644
> --- a/drivers/firmware/smccc/Makefile
> +++ b/drivers/firmware/smccc/Makefile
> @@ -1,4 +1,5 @@
> # SPDX-License-Identifier: GPL-2.0
> #
> -obj-$(CONFIG_HAVE_ARM_SMCCC_DISCOVERY) += smccc.o kvm_guest.o
> +ccflags-y += -I$(src)
> +obj-$(CONFIG_HAVE_ARM_SMCCC_DISCOVERY) += smccc_trace.o smccc.o kvm_guest.o
> obj-$(CONFIG_ARM_SMCCC_SOC_ID) += soc_id.o
> diff --git a/drivers/firmware/smccc/smccc.c b/drivers/firmware/smccc/smccc.c
> index 60ccf3e90d7d..7631a16479e9 100644
> --- a/drivers/firmware/smccc/smccc.c
> +++ b/drivers/firmware/smccc/smccc.c
> @@ -11,6 +11,7 @@
> #include <linux/kernel.h>
> #include <linux/platform_device.h>
> #include <asm/archrandom.h>
> +#include "smccc_trace.h"
>
> static u32 smccc_version = ARM_SMCCC_VERSION_1_0;
> static enum arm_smccc_conduit smccc_conduit = SMCCC_CONDUIT_NONE;
> @@ -59,3 +60,16 @@ static int __init smccc_devices_init(void)
> return 0;
> }
> device_initcall(smccc_devices_init);
> +
> +void arm_smccc_smc(unsigned long a0, unsigned long a1, unsigned long a2, unsigned long a3,
> + unsigned long a4, unsigned long a5, unsigned long a6, unsigned long a7,
> + struct arm_smccc_res *res)
> +{
> + u64 start, elapsed;
> +
> + trace_arm_smccc_smc_start(a0);
> + start = ktime_get_ns();
> + __arm_smccc_smc(a0, a1, a2, a3, a4, a5, a6, a7, res, NULL);
> + elapsed = ktime_get_ns() - start;
> + trace_arm_smccc_smc_end(a0, elapsed);
> +}
> diff --git a/drivers/firmware/smccc/smccc_trace.c b/drivers/firmware/smccc/smccc_trace.c
> new file mode 100644
> index 000000000000..6b94d5d9c0f4
> --- /dev/null
> +++ b/drivers/firmware/smccc/smccc_trace.c
> @@ -0,0 +1,7 @@
> +// SPDX-License-Identifier: GPL-2.0
> +
> +#define CREATE_TRACE_POINTS
> +#include "smccc_trace.h"
> +
> +EXPORT_TRACEPOINT_SYMBOL(arm_smccc_smc_start);
> +EXPORT_TRACEPOINT_SYMBOL(arm_smccc_smc_end);
> diff --git a/drivers/firmware/smccc/smccc_trace.h b/drivers/firmware/smccc/smccc_trace.h
> new file mode 100644
> index 000000000000..c0ef836bc093
> --- /dev/null
> +++ b/drivers/firmware/smccc/smccc_trace.h
> @@ -0,0 +1,41 @@
> +/* SPDX-License-Identifier: GPL-2.0 */
> +
> +#undef TRACE_SYSTEM
> +#define TRACE_SYSTEM smccc
> +
> +#if !defined(__SMCCC_TRACE_H) || defined(TRACE_HEADER_MULTI_READ)
> +#define __SMCCC_TRACE_H
> +
> +#include <linux/types.h>
> +#include <linux/tracepoint.h>
> +
> +TRACE_EVENT(arm_smccc_smc_start,
> + TP_PROTO(unsigned long smc_id),
> + TP_ARGS(smc_id),
> + TP_STRUCT__entry(__field(unsigned long, smc_id)),
> + TP_fast_assign(__entry->smc_id = smc_id;),
> + TP_printk("SMC ID: 0x%lx", __entry->smc_id)
> +);
> +
> +TRACE_EVENT(arm_smccc_smc_end,
> + TP_PROTO(unsigned long smc_id, u64 elapsed_time),
> + TP_ARGS(smc_id, elapsed_time),
> + TP_STRUCT__entry(__field(unsigned long, smc_id)
> + __field(u64, elapsed_time)
> + ),
> + TP_fast_assign(__entry->smc_id = smc_id;
> + __entry->elapsed_time = elapsed_time;
> + ),
> + TP_printk("SMC ID: 0x%lx time taken to process : %llu ns",
> + __entry->smc_id, __entry->elapsed_time)
> +);
> +
> +#endif /* __SMCCC_TRACE_H */
> +
> +#undef TRACE_INCLUDE_PATH
> +#define TRACE_INCLUDE_PATH .
> +
> +#undef TRACE_INCLUDE_FILE
> +#define TRACE_INCLUDE_FILE smccc_trace
> +
> +#include <trace/define_trace.h>
> diff --git a/include/linux/arm-smccc.h b/include/linux/arm-smccc.h
> index 220c8c60e021..39588c3db486 100644
> --- a/include/linux/arm-smccc.h
> +++ b/include/linux/arm-smccc.h
> @@ -358,7 +358,9 @@ asmlinkage void __arm_smccc_hvc(unsigned long a0, unsigned long a1,
> unsigned long a5, unsigned long a6, unsigned long a7,
> struct arm_smccc_res *res, struct arm_smccc_quirk *quirk);
>
> -#define arm_smccc_smc(...) __arm_smccc_smc(__VA_ARGS__, NULL)
> +void arm_smccc_smc(unsigned long a0, unsigned long a1, unsigned long a2,
> + unsigned long a3, unsigned long a4, unsigned long a5,
> + unsigned long a6, unsigned long a7, struct arm_smccc_res *res);
>
> #define arm_smccc_smc_quirk(...) __arm_smccc_smc(__VA_ARGS__)
>
> diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
> index 5579ead449f2..3a3bf2d674a3 100644
> --- a/kernel/time/timekeeping.c
> +++ b/kernel/time/timekeeping.c
> @@ -192,6 +192,13 @@ static inline u64 tk_clock_read(const struct tk_read_base *tkr)
> {
> struct clocksource *clock = READ_ONCE(tkr->clock);
>
> + /* At the time of kernel booting some SMC calls are called before the
> + * clock is initialized, in such cases it would lead to kernel crash.
> + * To prevent kernel crash in such cases this check is included.
> + */
> + if (unlikely(!clock))
> + return 0;
> +
> return clock->read(clock);
> }
>
> --
> 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:[~2023-03-06 14:54 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-04 12:58 [PATCH] arm64: smccc: Add trace events to SMC calls Rakesh Babu Saladi
2023-03-04 17:38 ` kernel test robot
2023-03-04 17:38 ` kernel test robot
2023-03-06 14:47 ` Mark Rutland [this message]
2023-03-08 12:25 ` [EXT] " Rakesh Babu Saladi
2023-03-08 13:42 ` Sudeep Holla
2023-03-08 13:58 ` Mark Rutland
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=ZAX9G5mqGqzTZZ5N@FVFF77S0Q05N \
--to=mark.rutland@arm.com \
--cc=gcherian@marvell.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=lpieralisi@kernel.org \
--cc=naveenm@marvell.com \
--cc=rsaladi2@marvell.com \
--cc=sgoutham@marvell.com \
--cc=sudeep.holla@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).