From: "Ard Biesheuvel" <ardb@kernel.org>
To: devel@edk2.groups.io, Sughosh Ganu <sughosh.ganu@linaro.org>
Cc: Sami Mujawar <sami.mujawar@arm.com>,
Ard Biesheuvel <ard.biesheuvel@arm.com>,
Leif Lindholm <leif@nuviainc.com>,
Sahil Malhotra <sahil.malhotra@linaro.org>,
Ilias Apalodimas <ilias.apalodimas@linaro.org>,
Achin Gupta <achin.gupta@arm.com>
Subject: Re: [edk2-devel] [PATCH v3 01/13] ArmPkg/IndustryStandard: Add barebones FF-A header
Date: Sat, 13 Feb 2021 11:28:44 +0100 [thread overview]
Message-ID: <CAMj1kXGo8YeM_tZ5LzCK4sUMUd_YJ4LjxqWOegROFgtZGm7NTA@mail.gmail.com> (raw)
In-Reply-To: <20210115061404.13552-2-sughosh.ganu@linaro.org>
On Fri, 15 Jan 2021 at 07:14, Sughosh Ganu <sughosh.ganu@linaro.org> wrote:
>
> From: Achin Gupta <achin.gupta@arm.com>
>
> This patch adds a rudimentary header file with defines for FF-A ABIs
> that will be used as the transport between S-EL0 and the SPM
>
> Signed-off-by: Achin Gupta <achin.gupta@arm.com>
> Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
> ---
>
> Changes since V2: None
>
> ArmPkg/Include/IndustryStandard/ArmFfaSvc.h | 23 ++++++++++++++++++++
> 1 file changed, 23 insertions(+)
>
> diff --git a/ArmPkg/Include/IndustryStandard/ArmFfaSvc.h b/ArmPkg/Include/IndustryStandard/ArmFfaSvc.h
> new file mode 100644
> index 0000000000..1eadf48ab5
> --- /dev/null
> +++ b/ArmPkg/Include/IndustryStandard/ArmFfaSvc.h
> @@ -0,0 +1,23 @@
> +/** @file
> + Header file for FF-A ABI's that will be used for
> + communication between S-EL0 and the Secure Partition
> + Manager(SPM)
> +
> + Copyright (c) 2020, ARM Limited. All rights reserved.
> +
> + SPDX-License-Identifier: BSD-2-Clause-Patent
> +
> + @par Revision Reference:
> + - FF-A Version 1.0
> +
> +
> +**/
> +
> +#ifndef ARM_FFA_SVC_H_
> +#define ARM_FFA_SVC_H_
> +
> +#define ARM_SVC_ID_FFA_VERSION_AARCH32 0x84000063
> +#define ARM_SVC_ID_FFA_MSG_SEND_DIRECT_REQ_AARCH64 0xC400006F
> +#define ARM_SVC_ID_FFA_MSG_SEND_DIRECT_RESP_AARCH64 0xC4000070
> +
> +#endif // ARM_FFA_SVC_H_
> --
> 2.17.1
>
>
>
>
>
>
next prev parent reply other threads:[~2021-02-13 10:28 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-15 6:13 [PATCH v3 00/13] Add support for using FF-A calls Sughosh Ganu
2021-01-15 6:13 ` [PATCH v3 01/13] ArmPkg/IndustryStandard: Add barebones FF-A header Sughosh Ganu
2021-02-13 10:28 ` Ard Biesheuvel [this message]
2021-01-15 6:13 ` [PATCH v3 02/13] ArmPkg/ArmSvcLib: Return x4-x7 in output parameters Sughosh Ganu
2021-02-13 10:28 ` [edk2-devel] " Ard Biesheuvel
2021-01-15 6:13 ` [PATCH v3 03/13] StandaloneMmPkg: Use FF-A header file in Standalone MM Core entry point Sughosh Ganu
2021-01-15 6:13 ` [PATCH v3 04/13] ArmPkg: Introduce support for PcdFfaEnable Sughosh Ganu
2021-02-13 10:29 ` [edk2-devel] " Ard Biesheuvel
2021-01-15 6:13 ` [PATCH v3 05/13] StandaloneMmPkg: Add macros for SPM version Sughosh Ganu
2021-01-20 18:34 ` [edk2-devel] " Sami Mujawar
2021-01-15 6:13 ` [PATCH v3 06/13] StandaloneMmPkg: Add the SPM version for FF-A Sughosh Ganu
2021-01-20 18:38 ` [edk2-devel] " Sami Mujawar
2021-01-15 6:13 ` [PATCH v3 07/13] StandaloneMmPkg: Add option to use FF-A calls for getting SPM version Sughosh Ganu
2021-01-15 6:13 ` [PATCH v3 08/13] StandaloneMmPkg: Add option to use FF-A calls for communication with SPM Sughosh Ganu
2021-01-20 18:44 ` [edk2-devel] " Sami Mujawar
2021-01-15 6:14 ` [PATCH v3 09/13] StandaloneMmPkg: Use FF-A header file in Standalone MM Arm MMU library Sughosh Ganu
2021-01-15 6:14 ` [PATCH v3 10/13] StandaloneMmMmuLib: Allow FF-A calls to get memory region's attributes Sughosh Ganu
2021-01-20 18:49 ` [edk2-devel] " Sami Mujawar
2021-01-15 6:14 ` [PATCH v3 11/13] StandaloneMmMmuLib: Allow FF-A calls to set " Sughosh Ganu
2021-01-20 18:52 ` [edk2-devel] " Sami Mujawar
2021-01-15 6:14 ` [PATCH v3 12/13] MdeModulePkg/VariableStandaloneMm: Set PcdFlashNvStorageVariableBase to Pcd Sughosh Ganu
2021-01-15 6:14 ` [PATCH v3 13/13] StandaloneMmPkg: Allow sending FFA Direct Request message to StandaloneMm Sughosh Ganu
2021-02-18 3:34 ` 回复: [edk2-devel] [PATCH v3 00/13] Add support for using FF-A calls gaoliming
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-list 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=CAMj1kXGo8YeM_tZ5LzCK4sUMUd_YJ4LjxqWOegROFgtZGm7NTA@mail.gmail.com \
--to=devel@edk2.groups.io \
/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