public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Laszlo Ersek <lersek@redhat.com>
To: shenglei <shenglei.zhang@intel.com>, edk2-devel@lists.01.org
Cc: Eric Dong <eric.dong@intel.com>, Star Zeng <star.zeng@intel.com>
Subject: Re: [PATCH 03/26] MdeModulePkg AtaAtapiPassThru: Remove redundant functions
Date: Wed, 8 Aug 2018 20:11:50 +0200	[thread overview]
Message-ID: <b32419e0-e3de-1839-6cc6-1be4b8e12865@redhat.com> (raw)
In-Reply-To: <20180808084712.34696-4-shenglei.zhang@intel.com>

On 08/08/18 10:46, shenglei wrote:
> The functions that are never called have been removed.
> They are AhciCheckDeviceStatus and AhciPortReset.

There's more. In total:

AhciCheckDeviceStatus, AhciPortReset, DRDYReady, DRDYReady2,
WaitForBSYClear2, AtaSoftReset.

With the commit message update:

Reviewed-by: Laszlo Ersek <lersek@redhat.com>

Thanks
Laszlo

> https://bugzilla.tianocore.org/show_bug.cgi?id=1062
> 
> Cc: Star Zeng <star.zeng@intel.com>
> Cc: Eric Dong <eric.dong@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: shenglei <shenglei.zhang@intel.com>
> ---
>  .../Bus/Ata/AtaAtapiPassThru/AhciMode.c       | 104 -------
>  .../Bus/Ata/AtaAtapiPassThru/IdeMode.c        | 257 ------------------
>  2 files changed, 361 deletions(-)
> 
> diff --git a/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AhciMode.c b/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AhciMode.c
> index 79ae11bd20..d7a8b29666 100644
> --- a/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AhciMode.c
> +++ b/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AhciMode.c
> @@ -294,41 +294,6 @@ AhciCheckMemSet (
>    }
>  }
>  
> -/**
> -  Check if the device is still on port. It also checks if the AHCI controller
> -  supports the address and data count will be transferred.
> -
> -  @param  PciIo            The PCI IO protocol instance.
> -  @param  Port             The number of port.
> -
> -  @retval EFI_SUCCESS      The device is attached to port and the transfer data is
> -                           supported by AHCI controller.
> -  @retval EFI_UNSUPPORTED  The transfer address and count is not supported by AHCI
> -                           controller.
> -  @retval EFI_NOT_READY    The physical communication between AHCI controller and device
> -                           is not ready.
> -
> -**/
> -EFI_STATUS
> -EFIAPI
> -AhciCheckDeviceStatus (
> -  IN  EFI_PCI_IO_PROTOCOL    *PciIo,
> -  IN  UINT8                  Port
> -  )
> -{
> -  UINT32      Data;
> -  UINT32      Offset;
> -
> -  Offset = EFI_AHCI_PORT_START + Port * EFI_AHCI_PORT_REG_WIDTH + EFI_AHCI_PORT_SSTS;
> -
> -  Data   = AhciReadReg (PciIo, Offset) & EFI_AHCI_PORT_SSTS_DET_MASK;
> -
> -  if (Data == EFI_AHCI_PORT_SSTS_DET_PCE) {
> -    return EFI_SUCCESS;
> -  }
> -
> -  return EFI_NOT_READY;
> -}
>  
>  /**
>  
> @@ -1361,75 +1326,6 @@ AhciStartCommand (
>    return EFI_SUCCESS;
>  }
>  
> -/**
> -  Do AHCI port reset.
> -
> -  @param  PciIo              The PCI IO protocol instance.
> -  @param  Port               The number of port.
> -  @param  Timeout            The timeout value of reset, uses 100ns as a unit.
> -
> -  @retval EFI_DEVICE_ERROR   The port reset unsuccessfully
> -  @retval EFI_TIMEOUT        The reset operation is time out.
> -  @retval EFI_SUCCESS        The port reset successfully.
> -
> -**/
> -EFI_STATUS
> -EFIAPI
> -AhciPortReset (
> -  IN  EFI_PCI_IO_PROTOCOL       *PciIo,
> -  IN  UINT8                     Port,
> -  IN  UINT64                    Timeout
> -  )
> -{
> -  EFI_STATUS      Status;
> -  UINT32          Offset;
> -
> -  AhciClearPortStatus (PciIo, Port);
> -
> -  AhciStopCommand (PciIo, Port, Timeout);
> -
> -  AhciDisableFisReceive (PciIo, Port, Timeout);
> -
> -  AhciEnableFisReceive (PciIo, Port, Timeout);
> -
> -  Offset = EFI_AHCI_PORT_START + Port * EFI_AHCI_PORT_REG_WIDTH + EFI_AHCI_PORT_SCTL;
> -
> -  AhciOrReg (PciIo, Offset, EFI_AHCI_PORT_SCTL_DET_INIT);
> -
> -  //
> -  // wait 5 millisecond before de-assert DET
> -  //
> -  MicroSecondDelay (5000);
> -
> -  AhciAndReg (PciIo, Offset, (UINT32)EFI_AHCI_PORT_SCTL_MASK);
> -
> -  //
> -  // wait 5 millisecond before de-assert DET
> -  //
> -  MicroSecondDelay (5000);
> -
> -  //
> -  // Wait for communication to be re-established
> -  //
> -  Offset = EFI_AHCI_PORT_START + Port * EFI_AHCI_PORT_REG_WIDTH + EFI_AHCI_PORT_SSTS;
> -  Status = AhciWaitMmioSet (
> -             PciIo,
> -             Offset,
> -             EFI_AHCI_PORT_SSTS_DET_MASK,
> -             EFI_AHCI_PORT_SSTS_DET_PCE,
> -             Timeout
> -             );
> -
> -  if (EFI_ERROR (Status)) {
> -    DEBUG ((EFI_D_ERROR, "Port %d COMRESET failed: %r\n", Port, Status));
> -    return Status;
> -  }
> -
> -  Offset = EFI_AHCI_PORT_START + Port * EFI_AHCI_PORT_REG_WIDTH + EFI_AHCI_PORT_SERR;
> -  AhciOrReg (PciIo, Offset, EFI_AHCI_PORT_ERR_CLEAR);
> -
> -  return EFI_SUCCESS;
> -}
>  
>  /**
>    Do AHCI HBA reset.
> diff --git a/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/IdeMode.c b/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/IdeMode.c
> index 6478f7be07..79142c330d 100644
> --- a/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/IdeMode.c
> +++ b/MdeModulePkg/Bus/Ata/AtaAtapiPassThru/IdeMode.c
> @@ -627,146 +627,8 @@ DRQReady2 (
>    return EFI_TIMEOUT;
>  }
>  
> -/**
> -  This function is used to poll for the DRDY bit set in the Status Register. DRDY
> -  bit is set when the device is ready to accept command. Most ATA commands must be
> -  sent after DRDY set except the ATAPI Packet Command.
> -
> -  @param PciIo            A pointer to EFI_PCI_IO_PROTOCOL data structure.
> -  @param IdeRegisters     A pointer to EFI_IDE_REGISTERS data structure.
> -  @param Timeout          The time to complete the command, uses 100ns as a unit.
> -
> -  @retval EFI_SUCCESS         DRDY bit set within the time out.
> -  @retval EFI_TIMEOUT         DRDY bit not set within the time out.
> -
> -  @note  Read Status Register will clear interrupt status.
> -**/
> -EFI_STATUS
> -EFIAPI
> -DRDYReady (
> -  IN  EFI_PCI_IO_PROTOCOL  *PciIo,
> -  IN  EFI_IDE_REGISTERS    *IdeRegisters,
> -  IN  UINT64               Timeout
> -  )
> -{
> -  UINT64  Delay;
> -  UINT8   StatusRegister;
> -  UINT8   ErrorRegister;
> -  BOOLEAN InfiniteWait;
> -
> -  ASSERT (PciIo != NULL);
> -  ASSERT (IdeRegisters != NULL);
> -
> -  if (Timeout == 0) {
> -    InfiniteWait = TRUE;
> -  } else {
> -    InfiniteWait = FALSE;
> -  }
> -
> -  Delay = DivU64x32(Timeout, 1000) + 1;
> -  do {
> -    StatusRegister = IdeReadPortB (PciIo, IdeRegisters->CmdOrStatus);
> -    //
> -    // Wait for BSY == 0, then judge if DRDY is set or ERR is set
> -    //
> -    if ((StatusRegister & ATA_STSREG_BSY) == 0) {
> -      if ((StatusRegister & ATA_STSREG_ERR) == ATA_STSREG_ERR) {
> -        ErrorRegister = IdeReadPortB (PciIo, IdeRegisters->ErrOrFeature);
> -
> -        if ((ErrorRegister & ATA_ERRREG_ABRT) == ATA_ERRREG_ABRT) {
> -          return EFI_ABORTED;
> -        }
> -        return EFI_DEVICE_ERROR;
> -      }
> -
> -      if ((StatusRegister & ATA_STSREG_DRDY) == ATA_STSREG_DRDY) {
> -        return EFI_SUCCESS;
> -      } else {
> -        return EFI_DEVICE_ERROR;
> -      }
> -    }
> -
> -    //
> -    // Stall for 100 microseconds.
> -    //
> -    MicroSecondDelay (100);
> -
> -    Delay--;
> -  } while (InfiniteWait || (Delay > 0));
> -
> -  return EFI_TIMEOUT;
> -}
> -
> -/**
> -  This function is used to poll for the DRDY bit set in the Alternate Status Register.
> -  DRDY bit is set when the device is ready to accept command. Most ATA commands must
> -  be sent after DRDY set except the ATAPI Packet Command.
> -
> -  @param PciIo            A pointer to EFI_PCI_IO_PROTOCOL data structure.
> -  @param IdeRegisters     A pointer to EFI_IDE_REGISTERS data structure.
> -  @param Timeout          The time to complete the command, uses 100ns as a unit.
> -
> -  @retval EFI_SUCCESS      DRDY bit set within the time out.
> -  @retval EFI_TIMEOUT      DRDY bit not set within the time out.
> -
> -  @note  Read Alternate Status Register will clear interrupt status.
> -
> -**/
> -EFI_STATUS
> -EFIAPI
> -DRDYReady2 (
> -  IN  EFI_PCI_IO_PROTOCOL  *PciIo,
> -  IN  EFI_IDE_REGISTERS    *IdeRegisters,
> -  IN  UINT64               Timeout
> -  )
> -{
> -  UINT64  Delay;
> -  UINT8   AltRegister;
> -  UINT8   ErrorRegister;
> -  BOOLEAN InfiniteWait;
> -
> -  ASSERT (PciIo != NULL);
> -  ASSERT (IdeRegisters != NULL);
> -
> -  if (Timeout == 0) {
> -    InfiniteWait = TRUE;
> -  } else {
> -    InfiniteWait = FALSE;
> -  }
> -
> -  Delay = DivU64x32(Timeout, 1000) + 1;
> -  do {
> -    AltRegister = IdeReadPortB (PciIo, IdeRegisters->AltOrDev);
> -    //
> -    // Wait for BSY == 0, then judge if DRDY is set or ERR is set
> -    //
> -    if ((AltRegister & ATA_STSREG_BSY) == 0) {
> -      if ((AltRegister & ATA_STSREG_ERR) == ATA_STSREG_ERR) {
> -        ErrorRegister = IdeReadPortB (PciIo, IdeRegisters->ErrOrFeature);
> -
> -        if ((ErrorRegister & ATA_ERRREG_ABRT) == ATA_ERRREG_ABRT) {
> -          return EFI_ABORTED;
> -        }
> -        return EFI_DEVICE_ERROR;
> -      }
> -
> -      if ((AltRegister & ATA_STSREG_DRDY) == ATA_STSREG_DRDY) {
> -        return EFI_SUCCESS;
> -      } else {
> -        return EFI_DEVICE_ERROR;
> -      }
> -    }
> -
> -    //
> -    // Stall for 100 microseconds.
> -    //
> -    MicroSecondDelay (100);
>  
> -    Delay--;
> -  } while (InfiniteWait || (Delay > 0));
>  
> -  return EFI_TIMEOUT;
> -}
>  
>  /**
>    This function is used to poll for the BSY bit clear in the Status Register. BSY
> @@ -822,59 +684,6 @@ WaitForBSYClear (
>    return EFI_TIMEOUT;
>  }
>  
> -/**
> -  This function is used to poll for the BSY bit clear in the Status Register. BSY
> -  is clear when the device is not busy. Every command must be sent after device is not busy.
> -
> -  @param PciIo            A pointer to ATA_ATAPI_PASS_THRU_INSTANCE data structure.
> -  @param IdeRegisters     A pointer to EFI_IDE_REGISTERS data structure.
> -  @param Timeout          The time to complete the command, uses 100ns as a unit.
> -
> -  @retval EFI_SUCCESS          BSY bit clear within the time out.
> -  @retval EFI_TIMEOUT          BSY bit not clear within the time out.
> -
> -  @note Read Status Register will clear interrupt status.
> -**/
> -EFI_STATUS
> -EFIAPI
> -WaitForBSYClear2 (
> -  IN  EFI_PCI_IO_PROTOCOL  *PciIo,
> -  IN  EFI_IDE_REGISTERS    *IdeRegisters,
> -  IN  UINT64               Timeout
> -  )
> -{
> -  UINT64  Delay;
> -  UINT8   AltStatusRegister;
> -  BOOLEAN InfiniteWait;
> -
> -  ASSERT (PciIo != NULL);
> -  ASSERT (IdeRegisters != NULL);
> -
> -  if (Timeout == 0) {
> -    InfiniteWait = TRUE;
> -  } else {
> -    InfiniteWait = FALSE;
> -  }
> -
> -  Delay = DivU64x32(Timeout, 1000) + 1;
> -  do {
> -    AltStatusRegister = IdeReadPortB (PciIo, IdeRegisters->AltOrDev);
> -
> -    if ((AltStatusRegister & ATA_STSREG_BSY) == 0x00) {
> -      return EFI_SUCCESS;
> -    }
> -
> -    //
> -    // Stall for 100 microseconds.
> -    //
> -    MicroSecondDelay (100);
> -
> -    Delay--;
> -
> -  } while (InfiniteWait || (Delay > 0));
> -
> -  return EFI_TIMEOUT;
> -}
>  
>  /**
>    Get IDE i/o port registers' base addresses by mode.
> @@ -1017,72 +826,6 @@ GetIdeRegisterIoAddr (
>    return EFI_SUCCESS;
>  }
>  
> -/**
> -  This function is used to implement the Soft Reset on the specified device. But,
> -  the ATA Soft Reset mechanism is so strong a reset method that it will force
> -  resetting on both devices connected to the same cable.
> -
> -  It is called by IdeBlkIoReset(), a interface function of Block
> -  I/O protocol.
> -
> -  This function can also be used by the ATAPI device to perform reset when
> -  ATAPI Reset command is failed.
> -
> -  @param PciIo            A pointer to ATA_ATAPI_PASS_THRU_INSTANCE data structure.
> -  @param IdeRegisters     A pointer to EFI_IDE_REGISTERS data structure.
> -  @param Timeout          The time to complete the command, uses 100ns as a unit.
> -
> -  @retval EFI_SUCCESS       Soft reset completes successfully.
> -  @retval EFI_DEVICE_ERROR  Any step during the reset process is failed.
> -
> -  @note  The registers initial values after ATA soft reset are different
> -         to the ATA device and ATAPI device.
> -**/
> -EFI_STATUS
> -EFIAPI
> -AtaSoftReset (
> -  IN  EFI_PCI_IO_PROTOCOL  *PciIo,
> -  IN  EFI_IDE_REGISTERS    *IdeRegisters,
> -  IN  UINT64               Timeout
> -  )
> -{
> -  UINT8 DeviceControl;
> -
> -  DeviceControl = 0;
> -  //
> -  // disable Interrupt and set SRST bit to initiate soft reset
> -  //
> -  DeviceControl = ATA_CTLREG_SRST | ATA_CTLREG_IEN_L;
> -
> -  IdeWritePortB (PciIo, IdeRegisters->AltOrDev, DeviceControl);
> -
> -  //
> -  // SRST should assert for at least 5 us, we use 10 us for
> -  // better compatibility
> -  //
> -  MicroSecondDelay (10);
> -
> -  //
> -  // Enable interrupt to support UDMA, and clear SRST bit
> -  //
> -  DeviceControl = 0;
> -  IdeWritePortB (PciIo, IdeRegisters->AltOrDev, DeviceControl);
> -
> -  //
> -  // Wait for at least 10 ms to check BSY status, we use 10 ms
> -  // for better compatibility
> -  //
> -  MicroSecondDelay (10000);
> -
> -  //
> -  // slave device needs at most 31ms to clear BSY
> -  //
> -  if (WaitForBSYClear (PciIo, IdeRegisters, Timeout) == EFI_TIMEOUT) {
> -    return EFI_DEVICE_ERROR;
> -  }
> -
> -  return EFI_SUCCESS;
> -}
>  
>  /**
>    Send ATA Ext command into device with NON_DATA protocol.
> 



  reply	other threads:[~2018-08-08 18:11 UTC|newest]

Thread overview: 94+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-08  8:46 [PATCH 00/26] MdeModulePkg Remove redundant functions shenglei
2018-08-08  8:46 ` [PATCH 01/26] MdeModulePkg CapsuleApp: Remove a redundant function shenglei
2018-08-09 10:10   ` Zeng, Star
2018-08-10  9:13     ` Zeng, Star
2018-08-08  8:46 ` [PATCH 02/26] MdeModulePkg UiApp: Remove redundant functions shenglei
2018-08-08 18:06   ` Laszlo Ersek
2018-08-09  3:25     ` Zeng, Star
2018-08-08  8:46 ` [PATCH 03/26] MdeModulePkg AtaAtapiPassThru: " shenglei
2018-08-08 18:11   ` Laszlo Ersek [this message]
2018-08-09 10:15     ` Zeng, Star
2018-08-08  8:46 ` [PATCH 04/26] MdeModulePkg EhciDxe: " shenglei
2018-08-08 18:08   ` Laszlo Ersek
2018-08-09  3:14   ` Ni, Ruiyu
2018-08-09 10:18   ` Zeng, Star
2018-08-08  8:46 ` [PATCH 05/26] MdeModulePkg NvmExpressDxe: " shenglei
2018-08-09 10:19   ` Zeng, Star
2018-08-09 13:33   ` Laszlo Ersek
2018-08-10  2:45   ` Wu, Hao A
2018-08-08  8:46 ` [PATCH 06/26] MdeModulePkg PciBusDxe: " shenglei
2018-08-09  3:09   ` Ni, Ruiyu
2018-08-09 13:35   ` Laszlo Ersek
2018-08-10  8:54   ` Zeng, Star
2018-08-08  8:46 ` [PATCH 07/26] MdeModulePkg SdMmcPciHcDxe: " shenglei
2018-08-08  8:46 ` [PATCH 08/26] MdeModulePkg UhciPei: " shenglei
2018-08-09  3:10   ` Ni, Ruiyu
2018-08-10  8:57   ` Zeng, Star
2018-08-08  8:46 ` [PATCH 09/26] MdeModulePkg XhciDxe: " shenglei
2018-08-09  3:09   ` Ni, Ruiyu
2018-08-09 13:47   ` Laszlo Ersek
2018-08-10  9:01   ` Zeng, Star
2018-08-08  8:46 ` [PATCH 10/26] MdeModulePkg XhciPei: " shenglei
2018-08-09  3:12   ` Ni, Ruiyu
2018-08-10  9:01   ` Zeng, Star
2018-08-08  8:46 ` [PATCH 11/26] MdeModulePkg UfsBlockIoPei: " shenglei
2018-08-10  2:57   ` Wu, Hao A
2018-08-10  9:04     ` Zeng, Star
2018-08-08  8:46 ` [PATCH 12/26] MdeModulePkg UfsPassThruDxe: " shenglei
2018-08-10  2:45   ` Wu, Hao A
2018-08-10  9:05   ` Zeng, Star
2018-08-08  8:46 ` [PATCH 13/26] MdeModulePkg UsbBotPei: " shenglei
2018-08-10  9:08   ` Zeng, Star
2018-08-08  8:47 ` [PATCH 14/26] MdeModulePkg UsbBusDxe: " shenglei
2018-08-09  3:12   ` Ni, Ruiyu
2018-08-09 13:52   ` Laszlo Ersek
2018-08-10  9:09   ` Zeng, Star
2018-08-08  8:47 ` [PATCH 15/26] MdeModulePkg UsbBusPei: " shenglei
2018-08-09  3:12   ` Ni, Ruiyu
2018-08-10  9:08   ` Zeng, Star
2018-08-08  8:47 ` [PATCH 16/26] MdeModulePkg Core/Dxe: " shenglei
2018-08-09  3:10   ` Ni, Ruiyu
2018-08-09  3:43     ` Wang, Jian J
2018-08-09 13:56   ` Laszlo Ersek
2018-08-10  9:10   ` Zeng, Star
2018-08-08  8:47 ` [PATCH 17/26] MdeModulePkg PiSmmCore: " shenglei
2018-08-09  3:12   ` Ni, Ruiyu
2018-08-09  3:44     ` Wang, Jian J
2018-08-09 14:07   ` Laszlo Ersek
2018-08-10  9:12   ` Zeng, Star
2018-08-08  8:47 ` [PATCH 18/26] MdeModulePkg Ps2KeyboardDxe: Remove a redundant function shenglei
2018-08-09  3:12   ` Ni, Ruiyu
2018-08-09 14:10   ` Laszlo Ersek
2018-08-10  9:15   ` Zeng, Star
2018-08-08  8:47 ` [PATCH 19/26] MdeModulePkg EmmcBlockIoPei: " shenglei
2018-08-10  2:57   ` Wu, Hao A
2018-08-10  9:16     ` Zeng, Star
2018-08-08  8:47 ` [PATCH 20/26] MdeModulePkg SdBlockIoPei: " shenglei
2018-08-10  2:57   ` Wu, Hao A
2018-08-10  9:16     ` Zeng, Star
2018-08-08  8:47 ` [PATCH 21/26] MdeModulePkg TerminalDxe: " shenglei
2018-08-09  3:13   ` Ni, Ruiyu
2018-08-09 10:25   ` Zeng, Star
2018-08-10  9:14     ` Zeng, Star
2018-08-09 14:12   ` Laszlo Ersek
2018-08-08  8:47 ` [PATCH 22/26] MdeModulePkg HiiDatabaseDxe: " shenglei
2018-08-09 10:23   ` Zeng, Star
2018-08-10  9:14     ` Zeng, Star
2018-08-09 14:15   ` Laszlo Ersek
2018-08-08  8:47 ` [PATCH 23/26] MdeModulePkg Ip4Dxe: " shenglei
2018-08-09 10:21   ` Zeng, Star
2018-08-09 14:16   ` Laszlo Ersek
2018-08-08  8:47 ` [PATCH 24/26] MdeModulePkg IScsiDxe: " shenglei
2018-08-09 10:21   ` Zeng, Star
2018-08-09 14:18   ` Laszlo Ersek
2018-08-08  8:47 ` [PATCH 25/26] MdeModulePkg Tcp4Dxe: Remove redundant functions shenglei
2018-08-09 10:21   ` Zeng, Star
2018-08-09 14:21   ` Laszlo Ersek
2018-08-08  8:47 ` [PATCH 26/26] MdeModulePkg SetupBrowserDxe: Remove a redundant function shenglei
2018-08-09 10:22   ` Zeng, Star
2018-08-09 14:26   ` Laszlo Ersek
2018-08-08 14:55 ` [PATCH 00/26] MdeModulePkg Remove redundant functions Leif Lindholm
2018-08-08 16:05   ` Carsey, Jaben
2018-08-08 17:21     ` Laszlo Ersek
2018-08-09  3:44       ` Zeng, Star
2018-08-09  3:33   ` Zeng, Star

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=b32419e0-e3de-1839-6cc6-1be4b8e12865@redhat.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