* [PATCH v2 0/2] ARM: at91: add support for secure suspend on sama5d2
@ 2022-03-07 10:15 Clément Léger
2022-03-07 10:15 ` [PATCH v2 1/2] ARM: at91: add code to handle secure calls Clément Léger
2022-03-07 10:15 ` [PATCH v2 2/2] ARM: at91: pm: add support for sama5d2 secure suspend Clément Léger
0 siblings, 2 replies; 5+ messages in thread
From: Clément Léger @ 2022-03-07 10:15 UTC (permalink / raw)
To: Russell King, Nicolas Ferre, Alexandre Belloni, Ludovic Desroches
Cc: Clément Léger, linux-arm-kernel, linux-kernel,
Thomas Petazzoni
Now that OP-TEE support for sama5d2 is more complete, add support to
execute SMC calls and to set suspend mode. This series adds new files
to be able to execute SMC calls targeting OP-TEE secure monitor and
secure suspend support uses it.
---
Changes V2:
- Add suspend mode SMC in already existing secure support
Clément Léger (2):
ARM: at91: add code to handle secure calls
ARM: at91: pm: add support for sama5d2 secure suspend
arch/arm/mach-at91/Kconfig | 12 ++++++++-
arch/arm/mach-at91/Makefile | 2 +-
arch/arm/mach-at91/pm.c | 38 +++++++++++++++++++++++++++
arch/arm/mach-at91/sam_secure.c | 46 +++++++++++++++++++++++++++++++++
arch/arm/mach-at91/sam_secure.h | 18 +++++++++++++
arch/arm/mach-at91/sama5.c | 2 ++
6 files changed, 116 insertions(+), 2 deletions(-)
create mode 100644 arch/arm/mach-at91/sam_secure.c
create mode 100644 arch/arm/mach-at91/sam_secure.h
--
2.34.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2 1/2] ARM: at91: add code to handle secure calls
2022-03-07 10:15 [PATCH v2 0/2] ARM: at91: add support for secure suspend on sama5d2 Clément Léger
@ 2022-03-07 10:15 ` Clément Léger
2022-03-07 10:15 ` [PATCH v2 2/2] ARM: at91: pm: add support for sama5d2 secure suspend Clément Léger
1 sibling, 0 replies; 5+ messages in thread
From: Clément Léger @ 2022-03-07 10:15 UTC (permalink / raw)
To: Russell King, Nicolas Ferre, Alexandre Belloni, Ludovic Desroches
Cc: Clément Léger, linux-arm-kernel, linux-kernel,
Thomas Petazzoni
Since OP-TEE now has a more complete support for sama5d2, add necessary
code to perform SMC calls. The detection of OP-TEE is based on a
specific device-tree node path (/firmware/optee) such has done by some
other SoC. A check is added to avoid doing SMC calls without having
OP-TEE.
Signed-off-by: Clément Léger <clement.leger@bootlin.com>
---
arch/arm/mach-at91/Makefile | 2 +-
arch/arm/mach-at91/sam_secure.c | 46 +++++++++++++++++++++++++++++++++
arch/arm/mach-at91/sam_secure.h | 14 ++++++++++
arch/arm/mach-at91/sama5.c | 2 ++
4 files changed, 63 insertions(+), 1 deletion(-)
create mode 100644 arch/arm/mach-at91/sam_secure.c
create mode 100644 arch/arm/mach-at91/sam_secure.h
diff --git a/arch/arm/mach-at91/Makefile b/arch/arm/mach-at91/Makefile
index 522b680b6446..0dcc37180588 100644
--- a/arch/arm/mach-at91/Makefile
+++ b/arch/arm/mach-at91/Makefile
@@ -7,7 +7,7 @@
obj-$(CONFIG_SOC_AT91RM9200) += at91rm9200.o
obj-$(CONFIG_SOC_AT91SAM9) += at91sam9.o
obj-$(CONFIG_SOC_SAM9X60) += sam9x60.o
-obj-$(CONFIG_SOC_SAMA5) += sama5.o
+obj-$(CONFIG_SOC_SAMA5) += sama5.o sam_secure.o
obj-$(CONFIG_SOC_SAMA7) += sama7.o
obj-$(CONFIG_SOC_SAMV7) += samv7.o
diff --git a/arch/arm/mach-at91/sam_secure.c b/arch/arm/mach-at91/sam_secure.c
new file mode 100644
index 000000000000..2a01f7a7d13f
--- /dev/null
+++ b/arch/arm/mach-at91/sam_secure.c
@@ -0,0 +1,46 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (C) 2022, Microchip
+ */
+
+#include <linux/arm-smccc.h>
+#include <linux/of.h>
+
+#include "sam_secure.h"
+
+static bool optee_available;
+
+#define SAM_SIP_SMC_STD_CALL_VAL(func_num) \
+ ARM_SMCCC_CALL_VAL(ARM_SMCCC_STD_CALL, ARM_SMCCC_SMC_32, \
+ ARM_SMCCC_OWNER_SIP, (func_num))
+
+struct arm_smccc_res sam_smccc_call(u32 fn, u32 arg0, u32 arg1)
+{
+ struct arm_smccc_res res = {.a0 = -1};
+
+ if (WARN_ON(!optee_available))
+ return res;
+
+ arm_smccc_smc(SAM_SIP_SMC_STD_CALL_VAL(fn), arg0, arg1, 0, 0, 0, 0, 0,
+ &res);
+
+ return res;
+}
+
+void __init sam_secure_init(void)
+{
+ struct device_node *np;
+
+ /*
+ * We only check that the OP-TEE node is present and available. The
+ * OP-TEE kernel driver is not needed for the type of interaction made
+ * with OP-TEE here so the driver's status is not checked.
+ */
+ np = of_find_node_by_path("/firmware/optee");
+ if (np && of_device_is_available(np))
+ optee_available = true;
+ of_node_put(np);
+
+ if (optee_available)
+ pr_info("Running under OP-TEE firmware\n");
+}
diff --git a/arch/arm/mach-at91/sam_secure.h b/arch/arm/mach-at91/sam_secure.h
new file mode 100644
index 000000000000..360036672f52
--- /dev/null
+++ b/arch/arm/mach-at91/sam_secure.h
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+/*
+ * Copyright (C) 2022, Microchip
+ */
+
+#ifndef SAM_SECURE_H
+#define SAM_SECURE_H
+
+#include <linux/arm-smccc.h>
+
+void __init sam_secure_init(void);
+struct arm_smccc_res sam_smccc_call(u32 fn, u32 arg0, u32 arg1);
+
+#endif /* SAM_SECURE_H */
diff --git a/arch/arm/mach-at91/sama5.c b/arch/arm/mach-at91/sama5.c
index 89dab7cf01e8..de5dd28b392e 100644
--- a/arch/arm/mach-at91/sama5.c
+++ b/arch/arm/mach-at91/sama5.c
@@ -14,6 +14,7 @@
#include <asm/system_misc.h>
#include "generic.h"
+#include "sam_secure.h"
static void __init sama5_dt_device_init(void)
{
@@ -47,6 +48,7 @@ MACHINE_END
static void __init sama5d2_init(void)
{
of_platform_default_populate(NULL, NULL, NULL);
+ sam_secure_init();
sama5d2_pm_init();
}
--
2.34.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH v2 2/2] ARM: at91: pm: add support for sama5d2 secure suspend
2022-03-07 10:15 [PATCH v2 0/2] ARM: at91: add support for secure suspend on sama5d2 Clément Léger
2022-03-07 10:15 ` [PATCH v2 1/2] ARM: at91: add code to handle secure calls Clément Léger
@ 2022-03-07 10:15 ` Clément Léger
2022-03-08 8:21 ` Claudiu.Beznea
1 sibling, 1 reply; 5+ messages in thread
From: Clément Léger @ 2022-03-07 10:15 UTC (permalink / raw)
To: Russell King, Nicolas Ferre, Alexandre Belloni, Ludovic Desroches
Cc: Clément Léger, linux-arm-kernel, linux-kernel,
Thomas Petazzoni
When running with OP-TEE, the suspend control is handled securely.
Suspend can be entered using PSCI support. Since the sama5d2 supports
multiple suspend modes, add a new CONFIG_ATMEL_SECURE_PM which will
send a SMC call to select the suspend mode at init time.
"atmel.pm_modes" boot argument is still supported for compatibility
purposes but the standby value is actually ignored since PSCI suspend
is used and it only support one mode (suspend).
Signed-off-by: Clément Léger <clement.leger@bootlin.com>
---
arch/arm/mach-at91/Kconfig | 12 ++++++++++-
arch/arm/mach-at91/pm.c | 38 +++++++++++++++++++++++++++++++++
arch/arm/mach-at91/sam_secure.h | 4 ++++
3 files changed, 53 insertions(+), 1 deletion(-)
diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig
index 02f6b108fd5d..5a6ca38d6303 100644
--- a/arch/arm/mach-at91/Kconfig
+++ b/arch/arm/mach-at91/Kconfig
@@ -208,7 +208,17 @@ config SOC_SAMA5
select SRAM if PM
config ATMEL_PM
- bool
+ bool "Atmel PM support"
+
+config ATMEL_SECURE_PM
+ bool "Atmel Secure PM support"
+ depends on SOC_SAMA5D2 && ATMEL_PM
+ select ARM_PSCI
+ help
+ When running under a TEE, the suspend mode must be requested to be set
+ at TEE level. When enable, this option will use secure monitor calls
+ to set the suspend level. PSCI is then used to enter suspend.
+ NOTE: This support is mutually exclusive with CONFIG_ATMEL_PM
config SOC_SAMA7
bool
diff --git a/arch/arm/mach-at91/pm.c b/arch/arm/mach-at91/pm.c
index dd6f4ce3f766..e40515691540 100644
--- a/arch/arm/mach-at91/pm.c
+++ b/arch/arm/mach-at91/pm.c
@@ -27,6 +27,7 @@
#include "generic.h"
#include "pm.h"
+#include "sam_secure.h"
#define BACKUP_DDR_PHY_CALIBRATION (9)
@@ -856,6 +857,35 @@ static int __init at91_pm_backup_init(void)
return ret;
}
+static void at91_pm_secure_init(void)
+{
+ int suspend_mode;
+ struct arm_smccc_res res;
+
+ suspend_mode = soc_pm.data.suspend_mode;
+
+ res = sam_smccc_call(SAMA5_SMC_SIP_SET_SUSPEND_MODE,
+ suspend_mode, 0);
+ if (res.a0 == 0) {
+ pr_info("AT91: Secure PM: suspend mode set to %s\n",
+ pm_modes[suspend_mode].pattern);
+ return;
+ }
+
+ pr_warn("AT91: Secure PM: %s mode not supported !\n",
+ pm_modes[suspend_mode].pattern);
+
+ res = sam_smccc_call(SAMA5_SMC_SIP_GET_SUSPEND_MODE, 0, 0);
+ if (res.a0 == 0) {
+ pr_warn("AT91: Secure PM: failed to get default mode\n");
+ return;
+ }
+
+ pr_info("AT91: Secure PM: using default suspend mode %s\n",
+ pm_modes[suspend_mode].pattern);
+
+ soc_pm.data.suspend_mode = res.a1;
+}
static const struct of_device_id atmel_shdwc_ids[] = {
{ .compatible = "atmel,sama5d2-shdwc" },
{ .compatible = "microchip,sam9x60-shdwc" },
@@ -1188,6 +1218,11 @@ void __init sama5d2_pm_init(void)
if (!IS_ENABLED(CONFIG_SOC_SAMA5D2))
return;
+ if (IS_ENABLED(CONFIG_ATMEL_SECURE_PM)) {
+ at91_pm_secure_init();
+ return;
+ }
+
at91_pm_modes_validate(modes, ARRAY_SIZE(modes));
at91_pm_modes_init(iomaps, ARRAY_SIZE(iomaps));
ret = at91_dt_ramc(false);
@@ -1262,6 +1297,9 @@ static int __init at91_pm_modes_select(char *str)
soc_pm.data.standby_mode = standby;
soc_pm.data.suspend_mode = suspend;
+ if (IS_ENABLED(CONFIG_ATMEL_SECURE_PM))
+ pr_warn("AT91: Secure PM: ignoring standby mode\n");
+
return 0;
}
early_param("atmel.pm_modes", at91_pm_modes_select);
diff --git a/arch/arm/mach-at91/sam_secure.h b/arch/arm/mach-at91/sam_secure.h
index 360036672f52..1e7d8b20ba1e 100644
--- a/arch/arm/mach-at91/sam_secure.h
+++ b/arch/arm/mach-at91/sam_secure.h
@@ -8,6 +8,10 @@
#include <linux/arm-smccc.h>
+/* Secure Monitor mode APIs */
+#define SAMA5_SMC_SIP_SET_SUSPEND_MODE 0x400
+#define SAMA5_SMC_SIP_GET_SUSPEND_MODE 0x401
+
void __init sam_secure_init(void);
struct arm_smccc_res sam_smccc_call(u32 fn, u32 arg0, u32 arg1);
--
2.34.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2 2/2] ARM: at91: pm: add support for sama5d2 secure suspend
2022-03-07 10:15 ` [PATCH v2 2/2] ARM: at91: pm: add support for sama5d2 secure suspend Clément Léger
@ 2022-03-08 8:21 ` Claudiu.Beznea
2022-03-08 14:03 ` Clément Léger
0 siblings, 1 reply; 5+ messages in thread
From: Claudiu.Beznea @ 2022-03-08 8:21 UTC (permalink / raw)
To: clement.leger, linux, Nicolas.Ferre, alexandre.belloni,
Ludovic.Desroches
Cc: linux-arm-kernel, linux-kernel, thomas.petazzoni
Hi Clément,
On 07.03.2022 12:15, Clément Léger wrote:
> EXTERNAL EMAIL: Do not click links or open attachments unless you know the content is safe
>
> When running with OP-TEE, the suspend control is handled securely.
> Suspend can be entered using PSCI support. Since the sama5d2 supports
> multiple suspend modes, add a new CONFIG_ATMEL_SECURE_PM which will
> send a SMC call to select the suspend mode at init time.
>
> "atmel.pm_modes" boot argument is still supported for compatibility
> purposes but the standby value is actually ignored since PSCI suspend
> is used and it only support one mode (suspend).
>
> Signed-off-by: Clément Léger <clement.leger@bootlin.com>
> ---
> arch/arm/mach-at91/Kconfig | 12 ++++++++++-
> arch/arm/mach-at91/pm.c | 38 +++++++++++++++++++++++++++++++++
> arch/arm/mach-at91/sam_secure.h | 4 ++++
> 3 files changed, 53 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig
> index 02f6b108fd5d..5a6ca38d6303 100644
> --- a/arch/arm/mach-at91/Kconfig
> +++ b/arch/arm/mach-at91/Kconfig
> @@ -208,7 +208,17 @@ config SOC_SAMA5
> select SRAM if PM
>
> config ATMEL_PM
> - bool
> + bool "Atmel PM support"
> +
> +config ATMEL_SECURE_PM
> + bool "Atmel Secure PM support"
> + depends on SOC_SAMA5D2 && ATMEL_PM
> + select ARM_PSCI
> + help
> + When running under a TEE, the suspend mode must be requested to be set
> + at TEE level. When enable, this option will use secure monitor calls
> + to set the suspend level. PSCI is then used to enter suspend.
> + NOTE: This support is mutually exclusive with CONFIG_ATMEL_PM
This note may be a bit confusing as ATMEL_SECURE_PM depends on CONFIG_ATMEL_PM.
>
> config SOC_SAMA7
> bool
> diff --git a/arch/arm/mach-at91/pm.c b/arch/arm/mach-at91/pm.c
> index dd6f4ce3f766..e40515691540 100644
> --- a/arch/arm/mach-at91/pm.c
> +++ b/arch/arm/mach-at91/pm.c
> @@ -27,6 +27,7 @@
>
> #include "generic.h"
> #include "pm.h"
> +#include "sam_secure.h"
>
> #define BACKUP_DDR_PHY_CALIBRATION (9)
>
> @@ -856,6 +857,35 @@ static int __init at91_pm_backup_init(void)
> return ret;
> }
>
> +static void at91_pm_secure_init(void)
> +{
> + int suspend_mode;
> + struct arm_smccc_res res;
> +
> + suspend_mode = soc_pm.data.suspend_mode;
> +
> + res = sam_smccc_call(SAMA5_SMC_SIP_SET_SUSPEND_MODE,
> + suspend_mode, 0);
> + if (res.a0 == 0) {
> + pr_info("AT91: Secure PM: suspend mode set to %s\n",
> + pm_modes[suspend_mode].pattern);
> + return;
> + }
> +
> + pr_warn("AT91: Secure PM: %s mode not supported !\n",
> + pm_modes[suspend_mode].pattern);
> +
> + res = sam_smccc_call(SAMA5_SMC_SIP_GET_SUSPEND_MODE, 0, 0);
> + if (res.a0 == 0) {
> + pr_warn("AT91: Secure PM: failed to get default mode\n");
> + return;
> + }
> +
> + pr_info("AT91: Secure PM: using default suspend mode %s\n",
> + pm_modes[suspend_mode].pattern);
> +
> + soc_pm.data.suspend_mode = res.a1;
> +}
> static const struct of_device_id atmel_shdwc_ids[] = {
> { .compatible = "atmel,sama5d2-shdwc" },
> { .compatible = "microchip,sam9x60-shdwc" },
> @@ -1188,6 +1218,11 @@ void __init sama5d2_pm_init(void)
> if (!IS_ENABLED(CONFIG_SOC_SAMA5D2))
> return;
>
> + if (IS_ENABLED(CONFIG_ATMEL_SECURE_PM)) {
> + at91_pm_secure_init();
> + return;
> + }
> +
> at91_pm_modes_validate(modes, ARRAY_SIZE(modes));
> at91_pm_modes_init(iomaps, ARRAY_SIZE(iomaps));
> ret = at91_dt_ramc(false);
> @@ -1262,6 +1297,9 @@ static int __init at91_pm_modes_select(char *str)
> soc_pm.data.standby_mode = standby;
> soc_pm.data.suspend_mode = suspend;
>
> + if (IS_ENABLED(CONFIG_ATMEL_SECURE_PM))
> + pr_warn("AT91: Secure PM: ignoring standby mode\n");
What happens with soc_pm.data.standby_mode? Can Linux still suspend to it?
If that's the case then the proper data for standby mode is not initialized
as sama5d2_pm_init() returns if CONFIG_ATMEL_SECURE_PM is enabled, thus
system may hang in such a case. Is this intended?
Otherwise, maybe this pr_warn() could be moved in sama5d2_pm_init() as
sama5d2 is the only user at the moment.
Thank you,
Claudiu Beznea
> +
> return 0;
> }
> early_param("atmel.pm_modes", at91_pm_modes_select);
> diff --git a/arch/arm/mach-at91/sam_secure.h b/arch/arm/mach-at91/sam_secure.h
> index 360036672f52..1e7d8b20ba1e 100644
> --- a/arch/arm/mach-at91/sam_secure.h
> +++ b/arch/arm/mach-at91/sam_secure.h
> @@ -8,6 +8,10 @@
>
> #include <linux/arm-smccc.h>
>
> +/* Secure Monitor mode APIs */
> +#define SAMA5_SMC_SIP_SET_SUSPEND_MODE 0x400
> +#define SAMA5_SMC_SIP_GET_SUSPEND_MODE 0x401
> +
> void __init sam_secure_init(void);
> struct arm_smccc_res sam_smccc_call(u32 fn, u32 arg0, u32 arg1);
>
> --
> 2.34.1
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2 2/2] ARM: at91: pm: add support for sama5d2 secure suspend
2022-03-08 8:21 ` Claudiu.Beznea
@ 2022-03-08 14:03 ` Clément Léger
0 siblings, 0 replies; 5+ messages in thread
From: Clément Léger @ 2022-03-08 14:03 UTC (permalink / raw)
To: Claudiu.Beznea
Cc: alexandre.belloni, linux-kernel, linux, Ludovic.Desroches,
thomas.petazzoni, linux-arm-kernel
Le Tue, 8 Mar 2022 08:21:01 +0000,
<Claudiu.Beznea@microchip.com> a écrit :
[...]
> > static const struct of_device_id atmel_shdwc_ids[] = {
> > { .compatible = "atmel,sama5d2-shdwc" },
> > { .compatible = "microchip,sam9x60-shdwc" },
> > @@ -1188,6 +1218,11 @@ void __init sama5d2_pm_init(void)
> > if (!IS_ENABLED(CONFIG_SOC_SAMA5D2))
> > return;
> >
> > + if (IS_ENABLED(CONFIG_ATMEL_SECURE_PM)) {
> > + at91_pm_secure_init();
> > + return;
> > + }
> > +
> > at91_pm_modes_validate(modes, ARRAY_SIZE(modes));
> > at91_pm_modes_init(iomaps, ARRAY_SIZE(iomaps));
> > ret = at91_dt_ramc(false);
> > @@ -1262,6 +1297,9 @@ static int __init at91_pm_modes_select(char *str)
> > soc_pm.data.standby_mode = standby;
> > soc_pm.data.suspend_mode = suspend;
> >
> > + if (IS_ENABLED(CONFIG_ATMEL_SECURE_PM))
> > + pr_warn("AT91: Secure PM: ignoring standby mode\n");
>
> What happens with soc_pm.data.standby_mode? Can Linux still suspend to it?
Unfortunately, no. PSCI suspend support only allows one mode
(SUSPEND_MEM, cf psci_suspend_ops) which should be the deepest suspend
mode supported by the platform. Since the sama5 family support more
than one suspend mode, we added this mechanism to keep the existing
support for atmel,pm_modes support.
We could potentially add a suspend support for sama5d2 that call the
SMC to set the suspend mode and then enters PSCI system suspend by
calling psci_system_suspend_enter(). But I'm not sure it is the idea
behind the PSCI system suspend call.
> If that's the case then the proper data for standby mode is not initialized
> as sama5d2_pm_init() returns if CONFIG_ATMEL_SECURE_PM is enabled, thus
> system may hang in such a case. Is this intended?
Since the platform_suspend_ops won't be registered, there should be no
call to enter sama5d2 suspend (either mem or standby) from this code.
>
> Otherwise, maybe this pr_warn() could be moved in sama5d2_pm_init() as
> sama5d2 is the only user at the moment.
Ok, I will move the print.
Thanks,
Clément
>
> Thank you,
> Claudiu Beznea
>
> > +
> > return 0;
> > }
> > early_param("atmel.pm_modes", at91_pm_modes_select);
> > diff --git a/arch/arm/mach-at91/sam_secure.h b/arch/arm/mach-at91/sam_secure.h
> > index 360036672f52..1e7d8b20ba1e 100644
> > --- a/arch/arm/mach-at91/sam_secure.h
> > +++ b/arch/arm/mach-at91/sam_secure.h
> > @@ -8,6 +8,10 @@
> >
> > #include <linux/arm-smccc.h>
> >
> > +/* Secure Monitor mode APIs */
> > +#define SAMA5_SMC_SIP_SET_SUSPEND_MODE 0x400
> > +#define SAMA5_SMC_SIP_GET_SUSPEND_MODE 0x401
> > +
> > void __init sam_secure_init(void);
> > struct arm_smccc_res sam_smccc_call(u32 fn, u32 arg0, u32 arg1);
> >
> > --
> > 2.34.1
> >
> >
> > _______________________________________________
> > linux-arm-kernel mailing list
> > linux-arm-kernel@lists.infradead.org
> > http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>
--
Clément Léger,
Embedded Linux and Kernel engineer at Bootlin
https://bootlin.com
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-03-08 14:06 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-07 10:15 [PATCH v2 0/2] ARM: at91: add support for secure suspend on sama5d2 Clément Léger
2022-03-07 10:15 ` [PATCH v2 1/2] ARM: at91: add code to handle secure calls Clément Léger
2022-03-07 10:15 ` [PATCH v2 2/2] ARM: at91: pm: add support for sama5d2 secure suspend Clément Léger
2022-03-08 8:21 ` Claudiu.Beznea
2022-03-08 14:03 ` Clément Léger
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).