public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Wu, Hao A" <hao.a.wu@intel.com>
To: "devel@edk2.groups.io" <devel@edk2.groups.io>,
	"Albecki, Mateusz" <mateusz.albecki@intel.com>
Cc: Marcin Wojtas <mw@semihalf.com>,
	"Gao, Zhichao" <zhichao.gao@intel.com>,
	"Gao, Liming" <liming.gao@intel.com>
Subject: Re: [edk2-devel] [PATCH 3/4] MdeModulePkg/SdMmcPciHcDxe: Refactor data transfer completion
Date: Wed, 5 Feb 2020 03:16:20 +0000	[thread overview]
Message-ID: <B80AF82E9BFB8E4FBD8C89DA810C6A093C9A41B1@SHSMSX104.ccr.corp.intel.com> (raw)
In-Reply-To: <20200203141858.3236-4-mateusz.albecki@intel.com>

Just a similar question to PATCH 2/4 below:


> -----Original Message-----
> From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
> Albecki, Mateusz
> Sent: Monday, February 03, 2020 10:19 PM
> To: devel@edk2.groups.io
> Cc: Albecki, Mateusz; Wu, Hao A; Marcin Wojtas; Gao, Zhichao; Gao, Liming
> Subject: [edk2-devel] [PATCH 3/4] MdeModulePkg/SdMmcPciHcDxe:
> Refactor data transfer completion
> 
> This patch refactors the way in which the driver will check
> the data transfer completion. Data transfer related
> functionalities have been moved to separate function.
> 
> Cc: Hao A Wu <hao.a.wu@intel.com>
> Cc: Marcin Wojtas <mw@semihalf.com>
> Cc: Zhichao Gao <zhichao.gao@intel.com>
> Cc: Liming Gao <liming.gao@intel.com>
> 
> Signed-off-by: Mateusz Albecki <mateusz.albecki@intel.com>
> ---
>  MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHci.c | 181
> ++++++++++++++---------
>  1 file changed, 112 insertions(+), 69 deletions(-)
> 
> diff --git a/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHci.c
> b/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHci.c
> index 3dfaae8542..480a1664ea 100644
> --- a/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHci.c
> +++ b/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHci.c
> @@ -2447,6 +2447,112 @@ SdMmcCheckCommandComplete (
>    return EFI_NOT_READY;
>  }
> 
> +/**
> +  Update the SDMA address on the SDMA buffer boundary interrupt.
> +
> +  @param[in] Private    A pointer to the SD_MMC_HC_PRIVATE_DATA
> instance.
> +  @param[in] Trb        The pointer to the SD_MMC_HC_TRB instance.
> +
> +  @retval EFI_SUCCESS  Updated SDMA buffer address.
> +  @retval Others       Failed to update SDMA buffer address.
> +**/
> +EFI_STATUS
> +SdMmcUpdateSdmaAddress (
> +  IN SD_MMC_HC_PRIVATE_DATA  *Private,
> +  IN SD_MMC_HC_TRB           *Trb
> +  )
> +{
> +  UINT64      SdmaAddr;
> +  EFI_STATUS  Status;
> +
> +  SdmaAddr = SD_MMC_SDMA_ROUND_UP ((UINTN)Trb->DataPhy,
> SD_MMC_SDMA_BOUNDARY);
> +
> +  if (Private->ControllerVersion[Trb->Slot] >= SD_MMC_HC_CTRL_VER_400)
> {
> +    Status = SdMmcHcRwMmio (
> +               Private->PciIo,
> +               Trb->Slot,
> +               SD_MMC_HC_ADMA_SYS_ADDR,
> +               FALSE,
> +               sizeof (UINT64),
> +               &SdmaAddr
> +               );
> +  } else {
> +    Status = SdMmcHcRwMmio (
> +               Private->PciIo,
> +               Trb->Slot,
> +               SD_MMC_HC_SDMA_ADDR,
> +               FALSE,
> +               sizeof (UINT32),
> +               &SdmaAddr
> +               );
> +  }
> +
> +  if (EFI_ERROR (Status)) {
> +    return Status;
> +  }
> +
> +  Trb->DataPhy = (UINT64)(UINTN)SdmaAddr;
> +  return EFI_SUCCESS;
> +}
> +
> +/**
> +  Checks if the data transfer completed and performs any actions
> +  neccessary to continue the data transfer such as SDMA system
> +  address fixup or PIO data transfer.
> +
> +  @param[in] Private    A pointer to the SD_MMC_HC_PRIVATE_DATA
> instance.
> +  @param[in] Trb        The pointer to the SD_MMC_HC_TRB instance.
> +  @param[in] IntStatus  Snapshot of the normal interrupt status register.
> +
> +  @retval EFI_SUCCESS   Data transfer completed successfully.
> +  @retval EFI_NOT_READY Data transfer completion still pending.
> +  @retval Others        Data transfer failed to complete.
> +**/
> +EFI_STATUS
> +SdMmcCheckDataTransfer (
> +  IN SD_MMC_HC_PRIVATE_DATA  *Private,
> +  IN SD_MMC_HC_TRB           *Trb,
> +  IN UINT16                  IntStatus
> +  )
> +{
> +  UINT16      Data16;
> +  EFI_STATUS  Status;
> +
> +  if ((IntStatus & BIT1) != 0) {
> +    Data16 = BIT1;
> +    Status = SdMmcHcRwMmio (
> +               Private->PciIo,
> +               Trb->Slot,
> +               SD_MMC_HC_NOR_INT_STS,
> +               FALSE,
> +               sizeof (Data16),
> +               &Data16
> +               );


Cleaning the Transfer Complete (BIT1) right after checking it is more aligned
with the spec, right?

Best Regards,
Hao Wu


> +    return Status;
> +  }
> +
> +  if ((Trb->Mode == SdMmcSdmaMode) && ((IntStatus & BIT3) != 0)) {
> +    Data16 = BIT3;
> +    Status = SdMmcHcRwMmio (
> +               Private->PciIo,
> +               Trb->Slot,
> +               SD_MMC_HC_NOR_INT_STS,
> +               FALSE,
> +               sizeof (Data16),
> +               &Data16
> +               );
> +    if (EFI_ERROR (Status)) {
> +      return Status;
> +    }
> +    Status = SdMmcUpdateSdmaAddress (Private, Trb);
> +    if (EFI_ERROR (Status)) {
> +      return Status;
> +    }
> +  }
> +
> +  return EFI_NOT_READY;
> +}
> +
>  /**
>    Check the TRB execution result.
> 
> @@ -2467,7 +2573,6 @@ SdMmcCheckTrbResult (
>    EFI_STATUS                          Status;
>    EFI_SD_MMC_PASS_THRU_COMMAND_PACKET *Packet;
>    UINT16                              IntStatus;
> -  UINT64                              SdmaAddr;
>    UINT32                              PioLength;
> 
>    Packet  = Trb->Packet;
> @@ -2530,80 +2635,18 @@ SdMmcCheckTrbResult (
>      Status = SdMmcCheckCommandComplete (Private, Trb, IntStatus);
>      if (EFI_ERROR (Status)) {
>        goto Done;
> -    } else {
> -      //
> -      // If the command doesn't require data transfer skip the transfer
> -      // complete checking.
> -      //
> -      if ((Packet->SdMmcCmdBlk->CommandType !=
> SdMmcCommandTypeAdtc) &&
> -          (Packet->SdMmcCmdBlk->ResponseType != SdMmcResponseTypeR1b)
> &&
> -          (Packet->SdMmcCmdBlk->ResponseType != SdMmcResponseTypeR5b))
> {
> -        goto Done;
> -      }
>      }
>    }
> 
> -  //
> -  // Check Transfer Complete bit is set or not.
> -  //
> -  if ((IntStatus & BIT1) == BIT1) {
> -    goto Done;
> -  }
> -
> -  //
> -  // Check if DMA interrupt is signalled for the SDMA transfer.
> -  //
> -  if ((Trb->Mode == SdMmcSdmaMode) && ((IntStatus & BIT3) == BIT3)) {
> -    //
> -    // Clear DMA interrupt bit.
> -    //
> -    IntStatus = BIT3;
> -    Status    = SdMmcHcRwMmio (
> -                  Private->PciIo,
> -                  Trb->Slot,
> -                  SD_MMC_HC_NOR_INT_STS,
> -                  FALSE,
> -                  sizeof (IntStatus),
> -                  &IntStatus
> -                  );
> -    if (EFI_ERROR (Status)) {
> -      goto Done;
> -    }
> -    //
> -    // Update SDMA Address register.
> -    //
> -    SdmaAddr = SD_MMC_SDMA_ROUND_UP ((UINTN)Trb->DataPhy,
> SD_MMC_SDMA_BOUNDARY);
> -
> -    if (Private->ControllerVersion[Trb->Slot] >= SD_MMC_HC_CTRL_VER_400)
> {
> -      Status = SdMmcHcRwMmio (
> -                 Private->PciIo,
> -                 Trb->Slot,
> -                 SD_MMC_HC_ADMA_SYS_ADDR,
> -                 FALSE,
> -                 sizeof (UINT64),
> -                 &SdmaAddr
> -                 );
> -    } else {
> -      Status = SdMmcHcRwMmio (
> -                 Private->PciIo,
> -                 Trb->Slot,
> -                 SD_MMC_HC_SDMA_ADDR,
> -                 FALSE,
> -                 sizeof (UINT32),
> -                 &SdmaAddr
> -                 );
> -    }
> -
> -    if (EFI_ERROR (Status)) {
> -      goto Done;
> -    }
> -    Trb->DataPhy = (UINT64)(UINTN)SdmaAddr;
> +  if (Packet->SdMmcCmdBlk->CommandType == SdMmcCommandTypeAdtc
> ||
> +      Packet->SdMmcCmdBlk->ResponseType == SdMmcResponseTypeR1b ||
> +      Packet->SdMmcCmdBlk->ResponseType == SdMmcResponseTypeR5b) {
> +    Status = SdMmcCheckDataTransfer (Private, Trb, IntStatus);
> +  } else {
> +    Status = EFI_SUCCESS;
>    }
> 
> -
> -  Status = EFI_NOT_READY;
>  Done:
> -
>    if (Status != EFI_NOT_READY) {
>      SdMmcHcLedOnOff (Private->PciIo, Trb->Slot, FALSE);
>      if (EFI_ERROR (Status)) {
> --
> 2.14.1.windows.1
> 
> --------------------------------------------------------------------
> 
> Intel Technology Poland sp. z o.o.
> ul. Slowackiego 173 | 80-298 Gdansk | Sad Rejonowy Gdansk Polnoc | VII
> Wydzial Gospodarczy Krajowego Rejestru Sadowego - KRS 101882 | NIP 957-
> 07-52-316 | Kapital zakladowy 200.000 PLN.
> 
> Ta wiadomosc wraz z zalacznikami jest przeznaczona dla okreslonego
> adresata i moze zawierac informacje poufne. W razie przypadkowego
> otrzymania tej wiadomosci, prosimy o powiadomienie nadawcy oraz trwale
> jej usuniecie; jakiekolwiek
> przegladanie lub rozpowszechnianie jest zabronione.
> This e-mail and any attachments may contain confidential material for the
> sole use of the intended recipient(s). If you are not the intended recipient,
> please contact the sender and delete all copies; any review or distribution by
> others is strictly prohibited.
> 
> 
> 


  reply	other threads:[~2020-02-05  3:16 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-03 14:18 [PATCH 0/4] MdeModulePkg/SdMmcPciHcDxe: Refactor command processing Albecki, Mateusz
2020-02-03 14:18 ` [PATCH 1/4] MdeModulePkg/SdMmcPciHcDxe: Enhance driver traces Albecki, Mateusz
2020-02-05  3:16   ` Wu, Hao A
2020-02-03 14:18 ` [PATCH 2/4] MdeModulePkg/SdMmcPciHcDxe: Read response on command completion Albecki, Mateusz
2020-02-05  3:16   ` [edk2-devel] " Wu, Hao A
2020-02-06 12:33     ` Albecki, Mateusz
2020-02-03 14:18 ` [PATCH 3/4] MdeModulePkg/SdMmcPciHcDxe: Refactor data transfer completion Albecki, Mateusz
2020-02-05  3:16   ` Wu, Hao A [this message]
2020-02-06 12:37     ` [edk2-devel] " Albecki, Mateusz
2020-02-03 14:18 ` [PATCH 4/4] MdeModulePkg/SdMmcPciHcDxe: Fix PIO transfer mode Albecki, Mateusz
2020-02-05  3:16   ` [edk2-devel] " Wu, Hao A
2020-02-10 13:11     ` Albecki, Mateusz
2020-02-04  7:58 ` [PATCH 0/4] MdeModulePkg/SdMmcPciHcDxe: Refactor command processing Wu, Hao A

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=B80AF82E9BFB8E4FBD8C89DA810C6A093C9A41B1@SHSMSX104.ccr.corp.intel.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