From: Ard Biesheuvel <ard.biesheuvel@linaro.org>
To: Evan Lloyd <evan.lloyd@arm.com>
Cc: "edk2-devel@lists.01.org" <edk2-devel@lists.01.org>,
Arvind Chauhan <Arvind.Chauhan@arm.com>,
Daniil Egranov <Daniil.Egranov@arm.com>,
Thomas Panakamattam Abraham <thomas.abraham@arm.com>,
<"ard.biesheuvel@linaro.org"@arm.com>,
<"leif.lindholm@linaro.org"@arm.com>,
<"Matteo.Carlini@arm.com"@arm.com>, <"nd@arm.com"@arm.com>
Subject: Re: [PATCH edk2-platforms v2 17/18] ARM/JunoPkg: Adding SCMI MTL library
Date: Sat, 23 Dec 2017 16:12:54 +0000 [thread overview]
Message-ID: <CAKv+Gu9DUT-qxvBjBQyzOPg4ve_G_yQJCj5cqXrQZUvJFpkFhA@mail.gmail.com> (raw)
In-Reply-To: <20171222190821.12440-18-evan.lloyd@arm.com>
On 22 December 2017 at 19:08, <evan.lloyd@arm.com> wrote:
> From: Girish Pathak <girish.pathak@arm.com>
>
> This change adds a new Mailbox Transport Layer library for the Juno
> platform. This library is required for ArmScmiDxe driver communication
> with the SCP.
>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Girish Pathak <girish.pathak@arm.com>
> ---
> Platform/ARM/JunoPkg/ArmJuno.dec | 9 +-
> Platform/ARM/JunoPkg/ArmJuno.dsc | 3 +
> Platform/ARM/JunoPkg/Library/ArmMtl/ArmMtl.inf | 39 ++++
> Platform/ARM/JunoPkg/Library/ArmMtl/ArmMtlPrivate.h | 94 ++++++++++
> Platform/ARM/JunoPkg/Library/ArmMtl/ArmMtl.c | 195 ++++++++++++++++++++
> 5 files changed, 339 insertions(+), 1 deletion(-)
>
> diff --git a/Platform/ARM/JunoPkg/ArmJuno.dec b/Platform/ARM/JunoPkg/ArmJuno.dec
> index 60cef6d23a2d904103b9806d871fd2b89fff51c3..b733480c3198d135df16ca024b5e85ff350e11c7 100644
> --- a/Platform/ARM/JunoPkg/ArmJuno.dec
> +++ b/Platform/ARM/JunoPkg/ArmJuno.dec
> @@ -1,5 +1,5 @@
> #
> -# Copyright (c) 2013-2015, ARM Limited. All rights reserved.
> +# Copyright (c) 2013-2017, ARM Limited. All rights reserved.
> #
> # This program and the accompanying materials
> # are licensed and made available under the terms and conditions of the BSD License
> @@ -46,3 +46,10 @@ [PcdsFixedAtBuild.common]
> # Juno Device Trees are loaded from NOR Flash
> gArmJunoTokenSpaceGuid.PcdJunoFdtDevicePath|L"VenHw(E7223039-5836-41E1-B542-D7EC736C5E59)/board.dtb"|VOID*|0x00000008
>
> + # MHU Register base used by SCMI Mailbox transport
> + gArmJunoTokenSpaceGuid.PcdArmMtlDoorBell|0x2B1F0000|UINT64|0x00000024
> +
> + # ARM_JUNO_NON_SECURE_SRAM_BASE used by SCMI Mailbox transport
> + gArmJunoTokenSpaceGuid.PcdArmMtlMailBoxBase|0x2E000000|UINT64|0x00000025
> + gArmJunoTokenSpaceGuid.PcdArmMtlMailBoxSize|0x80|UINT32|0x00000026
> +
> diff --git a/Platform/ARM/JunoPkg/ArmJuno.dsc b/Platform/ARM/JunoPkg/ArmJuno.dsc
> index 5c2a29fe8330bbf308e31e34b617517a5aebcf6d..fe860956a4dc497cac52be70bab3657246a08bd0 100644
> --- a/Platform/ARM/JunoPkg/ArmJuno.dsc
> +++ b/Platform/ARM/JunoPkg/ArmJuno.dsc
> @@ -47,6 +47,9 @@ [LibraryClasses.common]
> # USB Requirements
> UefiUsbLib|MdePkg/Library/UefiUsbLib/UefiUsbLib.inf
>
> + # SCMI Mailbox Transport Layer
> + ArmMtl|Platform/ARM/JunoPkg/Library/ArmMtl/ArmMtl.inf
> +
> [LibraryClasses.common.SEC]
> PrePiLib|EmbeddedPkg/Library/PrePiLib/PrePiLib.inf
> ExtractGuidedSectionLib|EmbeddedPkg/Library/PrePiExtractGuidedSectionLib/PrePiExtractGuidedSectionLib.inf
> diff --git a/Platform/ARM/JunoPkg/Library/ArmMtl/ArmMtl.inf b/Platform/ARM/JunoPkg/Library/ArmMtl/ArmMtl.inf
> new file mode 100644
> index 0000000000000000000000000000000000000000..69e845f93f9332205fd5d36af2753681304058e3
> --- /dev/null
> +++ b/Platform/ARM/JunoPkg/Library/ArmMtl/ArmMtl.inf
> @@ -0,0 +1,39 @@
> +#/** @file
> +# Copyright (c) 2017, ARM Limited. All rights reserved.
> +#
> +# This program and the accompanying materials
> +# are licensed and made available under the terms and conditions of the BSD License
> +# which accompanies this distribution. The full text of the license may be found at
> +# http://opensource.org/licenses/bsd-license.php
> +#
> +# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
> +# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
> +#**/
> +
> +[Defines]
> + INF_VERSION = 0x00010019
> + BASE_NAME = ArmMtl
Please rename this library *instance* to something Juno-specific,
e.g., ArmJunoMtlLib
> + FILE_GUID = 21FB2D8F-C6C8-4B2C-A616-A30CB2FBA277
> + MODULE_TYPE = BASE
> + VERSION_STRING = 1.0
> + LIBRARY_CLASS = ArmMtl
> +
Please rename to ArmMtlLib (as mentioned in the related EDK2 patch)
> +[Sources.common]
> + ArmMtl.c
> +
> +[Packages]
> + ArmPkg/ArmPkg.dec
> + ArmPlatformPkg/ArmPlatformPkg.dec
> + MdePkg/MdePkg.dec
> + Platform/ARM/JunoPkg/ArmJuno.dec
> +
> +[LibraryClasses]
> + ArmLib
> + DebugLib
> + IoLib
> + UefiBootServicesTableLib
> +
> +[FixedPcd.common]
> + gArmJunoTokenSpaceGuid.PcdArmMtlDoorBell
> + gArmJunoTokenSpaceGuid.PcdArmMtlMailBoxBase
> + gArmJunoTokenSpaceGuid.PcdArmMtlMailBoxSize
> diff --git a/Platform/ARM/JunoPkg/Library/ArmMtl/ArmMtlPrivate.h b/Platform/ARM/JunoPkg/Library/ArmMtl/ArmMtlPrivate.h
> new file mode 100644
> index 0000000000000000000000000000000000000000..825fc788722bbe01ede24d9f867565c4c1dc938b
> --- /dev/null
> +++ b/Platform/ARM/JunoPkg/Library/ArmMtl/ArmMtlPrivate.h
> @@ -0,0 +1,94 @@
> +/** @file
> +
> + Copyright (c) 2017, ARM Limited. All rights reserved.
> +
> + This program and the accompanying materials
> + are licensed and made available under the terms and conditions of the BSD License
> + which accompanies this distribution. The full text of the license may be found at
> + http://opensource.org/licenses/bsd-license.php
> +
> + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
> + WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
> +
> + System Control and Management Interface V1.0
> + http://infocenter.arm.com/help/topic/com.arm.doc.den0056a/
> + DEN0056A_System_Control_and_Management_Interface.pdf
> +
> + Juno ARM Development Platform SoC
> + https://www.arm.com/files/pdf/
> + DDI0515D1a_juno_arm_development_platform_soc_trm.pdf
> +**/
> +
> +#ifndef ARM_MTL_PRIVATE_H_
> +#define ARM_MTL_PRIVATE_H_
> +
> +// Mailbox transport layer.
> +#define MTL_DOORBELL_MODIFY_MASK (0x00000001U)
> +#define MTL_DOORBELL_PRESERVE_MASK (~MTL_DOORBELL_MODIFY_MASK)
> +
> +#define MTL_DOORBELL_BASE (FixedPcdGet64 (PcdArmMtlDoorBell))
> +#define MTL_MAILBOX_BASE (FixedPcdGet64 (PcdArmMtlMailBoxBase))
> +#define MTL_MAILBOX_SIZE (FixedPcdGet32 (PcdArmMtlMailBoxSize))
> +
> +#define MTL_POLL 0
> +#define MTL_INTR 1
> +
> +/* For Juno, the mailbox for high priority is non-trusted SRAM + 256.
> +
> + NOTE: Below is not documented anywhere (yet)
> +
> + The payload sizes are 128 bytes.
> +
> + There are two channels:
> +
> + Channel 0
> + - Agent (OS) to Platform (SCP) memory base: non-trusted SRAM + 0
> + - Platform (SCP) to Agent (OS) memory base: non-trusted SRAM + 128
> + - Doorbell (both directions): MHU, bit 0
> +
> + Channel 1
> + - Agent (OS) to Platform (SCP) memory base: non-trusted SRAM + 256
> + - Platform (SCP) to Agent (OS) memory base: non-trusted SRAM + 384
> + - Doorbell (both directions): MHU, bit 0
> +*/
> +#define MTL_MAILBOX_HIGH_PRIORITY_OFFSET (MTL_MAILBOX_SIZE * 2)
> +
> +// ARM MHU interrupt registers.
> +#define CPU_INTR_L_SET 0x108
> +#define CPU_INTR_H_SET 0x128
> +
> +// MTL uses MHU interrupt registers for communication with the SCP.
> +#define MTL_DOORBELL_REGISTER_LOW (MTL_DOORBELL_BASE + CPU_INTR_L_SET)
> +#define MTL_DOORBELL_REGISTER_HIGH (MTL_DOORBELL_BASE + CPU_INTR_H_SET)
> +
> +#define MTL_CHANNEL_BUSY 0
> +#define MTL_CHANNEL_FREE 1
> +
> +// Response timeout value on a MHU channel 20ms.
> +#define RESPONSE_TIMEOUT 20000
> +
> +/* As per SCMI spec. as a agent UEFI(or OS) can access only two channels
> + (low or high priority) secure channel is only accessible
> + to ARM Trusted firmware. */
> +#define NUM_CHANNELS 2
> +
> +/* Each channel must use a doorbell register to interrupt the SCP firmware.
> + on Juno these are MHU interrupt registers for low and high priority
> + channels. */
> +#define DOORBELL_LOW { \
> + MTL_DOORBELL_REGISTER_LOW, \
> + MTL_DOORBELL_MODIFY_MASK, \
> + MTL_DOORBELL_PRESERVE_MASK \
> + }
> +
> +#define DOORBELL_HIGH { \
> + MTL_DOORBELL_REGISTER_HIGH, \
> + MTL_DOORBELL_MODIFY_MASK, \
> + MTL_DOORBELL_PRESERVE_MASK \
> + }
> +
> +// Arbitarary poll time.
> +#define MTL_POLL_WAIT_TIME 100
> +
> +#endif /* ARM_MTL_PRIVATE_H_ */
> +
> diff --git a/Platform/ARM/JunoPkg/Library/ArmMtl/ArmMtl.c b/Platform/ARM/JunoPkg/Library/ArmMtl/ArmMtl.c
> new file mode 100644
> index 0000000000000000000000000000000000000000..b5e469f9a51a8f739526c7eeb873c32403d191f9
> --- /dev/null
> +++ b/Platform/ARM/JunoPkg/Library/ArmMtl/ArmMtl.c
> @@ -0,0 +1,195 @@
> +/** @file
> +
> + Copyright (c) 2017, ARM Limited. All rights reserved.
> +
> + This program and the accompanying materials
> + are licensed and made available under the terms and conditions of the BSD License
> + which accompanies this distribution. The full text of the license may be found at
> + http://opensource.org/licenses/bsd-license.php
> +
> + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
> + WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
> +
> + System Control and Management Interface V1.0
> + http://infocenter.arm.com/help/topic/com.arm.doc.den0056a/
> + DEN0056A_System_Control_and_Management_Interface.pdf
> +**/
> +
> +#include <Uefi.h>
For a BASE library, you should include <Base.h> and possibly
<Uefi/UefiBaseType.h> if you are using UEFI types. Uefi.h is intended
for UEFI drivers and applications
> +#include <Library/ArmMtl.h>
> +#include <Library/DebugLib.h>
> +#include <Library/IoLib.h>
> +#include <Library/MemoryAllocationLib.h>
> +#include <Library/PcdLib.h>
> +#include <Library/UefiBootServicesTableLib.h>
> +
> +#include "ArmMtlPrivate.h"
> +
> +// Each channel has a shared mailbox and a doorbell register.
> +STATIC CONST MTL_CHANNEL Channels[NUM_CHANNELS] = {
> + // Low priority channel.
> + {
> + MTL_CHANNEL_TYPE_LOW,
> + (MTL_MAILBOX*)(MTL_MAILBOX_BASE),
> + DOORBELL_LOW
> + },
> + // High priority channel
> + {
> + MTL_CHANNEL_TYPE_HIGH,
> + (MTL_MAILBOX*)(MTL_MAILBOX_BASE + MTL_MAILBOX_HIGH_PRIORITY_OFFSET),
> + DOORBELL_HIGH
> + }
> + };
> +
> +/** Wait until channel is free.
> +
> + @param[in] Channel Pointer to a channel.
> + @param[in] TimeOutInMicroSeconds Time out in micro seconds.
> +
> + @retval EFI_SUCCESS Channel is free.
> + @retval EFI_TIMOUT Time out error.
> +**/
> +EFI_STATUS
> +MtlWaitUntilChannelFree (
> + IN MTL_CHANNEL *Channel,
> + IN UINTN TimeOutInMicroSeconds
> + )
> +{
> + while (TimeOutInMicroSeconds != 0) {
> + // If channel is free then we have received the reply.
> + if (Channel->MailBox->ChannelStatus == MTL_CHANNEL_FREE) {
> + return EFI_SUCCESS;
> + }
> + if (TimeOutInMicroSeconds < MTL_POLL_WAIT_TIME) {
> + gBS->Stall (TimeOutInMicroSeconds);
> + break;
> + }
> + // Wait for some arbitrary time.
> + gBS->Stall (MTL_POLL_WAIT_TIME);
> + TimeOutInMicroSeconds -= MTL_POLL_WAIT_TIME;
> + }
> +
> + // No response from SCP.
> + if (Channel->MailBox->ChannelStatus != MTL_CHANNEL_FREE) {
> + ASSERT (FALSE);
> + return EFI_TIMEOUT;
> + }
> +
> + return EFI_SUCCESS;
> +}
> +
> +/** Return the address of the message payload.
> +
> + @param[in] Channel Pointer to a channel.
> +
> + @retval UINT32* Pointer to the payload.
> +**/
> +UINT32*
> +MtlGetChannelPayload (
> + IN MTL_CHANNEL *Channel
> + )
> +{
> + return Channel->MailBox->Payload;
> +}
> +
> +/** Return pointer to a channel for the requested channel type.
> +
> + @param[in] ChannelType ChannelType, Low or High priority channel.
> + MTL_CHANNEL_TYPE_LOW or
> + MTL_CHANNEL_TYPE_HIGH
> +
> + @param[out] Channel Holds pointer to the channel.
> +
> + @retval EFI_SUCCESS Pointer to channel is returned.
> + @retval EFI_UNSUPPORTED Requested channel type not supported.
> +**/
> +EFI_STATUS
> +MtlGetChannel (
> + IN MTL_CHANNEL_TYPE ChannelType,
> + OUT MTL_CHANNEL **Channel
> + )
> +{
> + if (ChannelType != MTL_CHANNEL_TYPE_LOW
> + && ChannelType != MTL_CHANNEL_TYPE_HIGH) {
> + return EFI_UNSUPPORTED;
> + }
> +
> + *Channel = (MTL_CHANNEL*)&Channels[ChannelType];
> +
> + return EFI_SUCCESS;
> +}
> +
> +/** Mark the channel busy and ring the doorbell.
> +
> + @param[in] Channel Pointer to a channel.
> + @param[in] MessageHeader Message header.
> +
> + @param[out] PayloadLength Message length.
> +
> + @retval EFI_SUCCESS Message sent successfully.
> + @retval EFI_DEVICE_ERROR Channel is busy.
> +**/
> +EFI_STATUS
> +MtlSendMessage (
> + IN MTL_CHANNEL *Channel,
> + IN UINT32 MessageHeader,
> + OUT UINT32 PayloadLength
> + )
> +{
> + MTL_MAILBOX *MailBox = Channel->MailBox;
> +
> + if (Channel->MailBox->ChannelStatus != MTL_CHANNEL_FREE) {
> + return EFI_DEVICE_ERROR;
> + }
> +
> + // Mark the channel busy before ringing doorbell.
> + Channel->MailBox->ChannelStatus = MTL_CHANNEL_BUSY;
> +
> + MailBox->Flags = MTL_POLL;
> + MailBox->MessageHeader = MessageHeader;
> +
> + // Add length of message header.
> + MailBox->Length = PayloadLength + sizeof (MessageHeader);
> +
> + // Ring the doorbell. It sets SET bit of the MHU register.
> + MmioWrite32 (
> + Channel->DoorBell.PhysicalAddress,
> + Channel->DoorBell.ModifyMask
> + );
> +
> + return EFI_SUCCESS;
> +}
> +
> +/** Wait for a response on a channel.
> +
> + If channel is free after sending message, it implies SCP responded
> + with a response on the channel.
> +
> + @param[in] Channel Pointer to a channel.
> +
> + @retval EFI_SUCCESS Message received successfully.
> + @retval EFI_TIMOUT Timeout error.
> +**/
> +EFI_STATUS
> +MtlReceiveMessage (
> + IN MTL_CHANNEL *Channel,
> + OUT UINT32 *MessageHeader,
> + OUT UINT32 *PayloadLength
> + )
> +{
> + EFI_STATUS Status;
> +
> + MTL_MAILBOX *MailBox = Channel->MailBox;
> +
> + Status = MtlWaitUntilChannelFree (Channel, RESPONSE_TIMEOUT);
> + if (EFI_ERROR (Status)) {
> + return Status;
> + }
> +
> + *MessageHeader = MailBox->MessageHeader;
> +
> + // Deduct message header length.
> + *PayloadLength = MailBox->Length - sizeof (*MessageHeader);
> +
> + return EFI_SUCCESS;
> +}
> --
> Guid("CE165669-3EF3-493F-B85D-6190EE5B9759")
>
next prev parent reply other threads:[~2017-12-23 16:08 UTC|newest]
Thread overview: 57+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-22 19:08 [PATCH edk2-platforms v2 00/18] ARM: Update GOP evan.lloyd
2017-12-22 19:08 ` [PATCH edk2-platforms v2 01/18] ARM/VExpressPkg: Fix MODULE_TYPE of HDLCD/PL111 platform libraries evan.lloyd
2017-12-22 19:08 ` [PATCH edk2-platforms v2 02/18] ARM/VExpressPkg: Tidy HDLCD and PL11LCD platform Lib: Coding standard evan.lloyd
2017-12-23 14:07 ` Ard Biesheuvel
2017-12-22 19:08 ` [PATCH edk2-platforms v2 03/18] ARM/VExpressPkg: Tidy HdLcd/PL111Lcd code: Updated comments evan.lloyd
2017-12-23 14:08 ` Ard Biesheuvel
2017-12-22 19:08 ` [PATCH edk2-platforms v2 04/18] ARM/VExpressPkg: Remove unused PcdPL111LcdMaxMode from HDLCD inf evan.lloyd
2017-12-23 14:08 ` Ard Biesheuvel
2017-12-22 19:08 ` [PATCH edk2-platforms v2 05/18] ARM/VExpressPkg: PL111 and HDLCD: add const qualifier evan.lloyd
2017-12-23 14:09 ` Ard Biesheuvel
2017-12-22 19:08 ` [PATCH edk2-platforms v2 06/18] ARM/VExpressPkg: Add and update debug ASSERTS evan.lloyd
2017-12-23 14:12 ` Ard Biesheuvel
2018-01-04 18:55 ` Girish Pathak
2018-01-04 19:24 ` Ard Biesheuvel
2018-01-04 19:51 ` Evan Lloyd
2018-01-04 19:54 ` Ard Biesheuvel
2018-02-28 20:27 ` Evan Lloyd
2018-03-02 19:07 ` Ard Biesheuvel
2018-03-05 15:08 ` Evan Lloyd
2018-03-06 11:16 ` Ard Biesheuvel
2018-03-14 12:24 ` Leif Lindholm
2018-03-14 12:35 ` Ard Biesheuvel
2018-03-14 12:39 ` Leif Lindholm
2017-12-22 19:08 ` [PATCH edk2-platforms v2 07/18] ARM/VExpressPkg: PL111LcdArmVExpressLib: Minor code cleanup evan.lloyd
2017-12-23 14:13 ` Ard Biesheuvel
2017-12-22 19:08 ` [PATCH edk2-platforms v2 08/18] ARM/VExpressPkg: PL111 and HDLCD: Use FixedPcdGet32 evan.lloyd
2017-12-23 14:14 ` Ard Biesheuvel
2017-12-22 19:08 ` [PATCH edk2-platforms v2 09/18] ARM/VExpressPkg: PL11LcdArmVExpressLib: Improvement conditional evan.lloyd
2017-12-23 14:16 ` Ard Biesheuvel
2017-12-22 19:08 ` [PATCH edk2-platforms v2 10/18] ARM/VExpressPkg: HdLcdArmVExpressLib: Remove status check EFI_TIMEOUT evan.lloyd
2017-12-23 14:16 ` Ard Biesheuvel
2017-12-22 19:08 ` [PATCH edk2-platforms v2 11/18] ARM/VExpressPkg: HdLcdArmVExpressLib: Remove redundant Bpp evan.lloyd
2017-12-23 14:17 ` Ard Biesheuvel
2017-12-22 19:08 ` [PATCH edk2-platforms v2 12/18] ARM/VExpressPkg: Redefine LcdPlatformGetTimings function evan.lloyd
2017-12-23 14:18 ` Ard Biesheuvel
2017-12-22 19:08 ` [PATCH edk2-platforms v2 13/18] ARM/VExpressPkg: PL111 and HDLCD: Add PCD to select pixel format evan.lloyd
2017-12-23 16:00 ` Ard Biesheuvel
2017-12-22 19:08 ` [PATCH edk2-platforms v2 14/18] ARM/VExpressPkg: Reserving framebuffer at build evan.lloyd
2017-12-23 16:02 ` Ard Biesheuvel
2018-01-03 11:04 ` Evan Lloyd
2017-12-22 19:08 ` [PATCH edk2-platforms v2 15/18] ARM/VExpressPkg: New DP500/DP550/DP650 platform library evan.lloyd
2017-12-23 16:07 ` Ard Biesheuvel
2018-01-08 18:51 ` Evan Lloyd
2018-01-24 11:27 ` Alexei Fedorov
2018-01-24 11:34 ` Ard Biesheuvel
2017-12-22 19:08 ` [PATCH edk2-platforms v2 16/18] ARM/JunoPkg: Mapping Non-Trused SRAM as device memory evan.lloyd
2017-12-23 16:08 ` Ard Biesheuvel
2017-12-22 19:08 ` [PATCH edk2-platforms v2 17/18] ARM/JunoPkg: Adding SCMI MTL library evan.lloyd
2017-12-23 16:12 ` Ard Biesheuvel [this message]
2017-12-22 19:08 ` [PATCH edk2-platforms v2 18/18] ARM/JunoPkg: Add HDLCD platform library evan.lloyd
2017-12-23 16:22 ` Ard Biesheuvel
2018-01-09 18:21 ` Evan Lloyd
2018-01-09 18:26 ` Ard Biesheuvel
2018-01-10 11:45 ` Alexei Fedorov
2018-01-10 12:02 ` Ard Biesheuvel
2017-12-22 19:29 ` [PATCH edk2-platforms v2 00/18] ARM: Update GOP Ard Biesheuvel
2018-01-02 10:28 ` Evan Lloyd
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=CAKv+Gu9DUT-qxvBjBQyzOPg4ve_G_yQJCj5cqXrQZUvJFpkFhA@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