public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Zeng, Star" <star.zeng@intel.com>
To: "Ni, Ruiyu" <ruiyu.ni@Intel.com>, edk2-devel@lists.01.org
Cc: Hao Wu <hao.a.wu@intel.com>, Jiewen Yao <jiewen.yao@intel.com>,
	star.zeng@intel.com
Subject: Re: [PATCH 1/4] MdeModulePkg XhciDxe: Extract new XhciInsertAsyncIntTransfer function
Date: Fri, 26 Oct 2018 13:05:23 +0800	[thread overview]
Message-ID: <2808ea61-0fdf-d954-ffcd-315e0dd19b54@intel.com> (raw)
In-Reply-To: <ed16b8b7-e2e9-3de3-eb63-eccfd27d21de@Intel.com>

On 2018/10/26 12:57, Ni, Ruiyu wrote:
> On 10/25/2018 6:58 PM, Star Zeng wrote:
>> REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1274
>>
>> Extract new XhciInsertAsyncIntTransfer function from
>> XhcAsyncInterruptTransfer.
>>
>> It is code preparation for following patch,
>> no essential functional change.
>>
>> Cc: Ruiyu Ni <ruiyu.ni@intel.com>
>> Cc: Hao Wu <hao.a.wu@intel.com>
>> Cc: Jian J Wang <jian.j.wang@intel.com>
>> Cc: Jiewen Yao <jiewen.yao@intel.com>
>> Contributed-under: TianoCore Contribution Agreement 1.1
>> Signed-off-by: Star Zeng <star.zeng@intel.com>
>> ---
>>   MdeModulePkg/Bus/Pci/XhciDxe/Xhci.c      | 18 +-------
>>   MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c | 74 
>> +++++++++++++++++++++++++++++---
>>   MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.h | 28 ++++++++++++
>>   3 files changed, 98 insertions(+), 22 deletions(-)
>>
>> diff --git a/MdeModulePkg/Bus/Pci/XhciDxe/Xhci.c 
>> b/MdeModulePkg/Bus/Pci/XhciDxe/Xhci.c
>> index f1c60bef01c0..7f64f9c7c982 100644
>> --- a/MdeModulePkg/Bus/Pci/XhciDxe/Xhci.c
>> +++ b/MdeModulePkg/Bus/Pci/XhciDxe/Xhci.c
>> @@ -1346,7 +1346,6 @@ XhcAsyncInterruptTransfer (
>>     EFI_STATUS              Status;
>>     UINT8                   SlotId;
>>     UINT8                   Index;
>> -  UINT8                   *Data;
>>     EFI_TPL                 OldTpl;
>>     //
>> @@ -1413,36 +1412,21 @@ XhcAsyncInterruptTransfer (
>>       goto ON_EXIT;
>>     }
>> -  Data = AllocateZeroPool (DataLength);
>> -
>> -  if (Data == NULL) {
>> -    DEBUG ((EFI_D_ERROR, "XhcAsyncInterruptTransfer: failed to 
>> allocate buffer\n"));
>> -    Status = EFI_OUT_OF_RESOURCES;
>> -    goto ON_EXIT;
>> -  }
>> -
>> -  Urb = XhcCreateUrb (
>> +  Urb = XhciInsertAsyncIntTransfer (
>>             Xhc,
>>             DeviceAddress,
>>             EndPointAddress,
>>             DeviceSpeed,
>>             MaximumPacketLength,
>> -          XHC_INT_TRANSFER_ASYNC,
>> -          NULL,
>> -          Data,
>>             DataLength,
>>             CallBackFunction,
>>             Context
>>             );
>> -
>>     if (Urb == NULL) {
>> -    DEBUG ((EFI_D_ERROR, "XhcAsyncInterruptTransfer: failed to create 
>> URB\n"));
>> -    FreePool (Data);
>>       Status = EFI_OUT_OF_RESOURCES;
>>       goto ON_EXIT;
>>     }
>> -  InsertHeadList (&Xhc->AsyncIntTransfers, &Urb->UrbList);
>>     //
>>     // Ring the doorbell
>>     //
>> diff --git a/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c 
>> b/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c
>> index 166c44bf5e66..2d7c08dc5bfa 100644
>> --- a/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c
>> +++ b/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.c
>> @@ -264,11 +264,11 @@ XhcCreateTransferTrb (
>>     // No need to remap.
>>     //
>>     if ((Urb->Data != NULL) && (Urb->DataMap == NULL)) {
>> -    if (((UINT8) (Urb->Ep.Direction)) == EfiUsbDataIn) {
>> -      MapOp = EfiPciIoOperationBusMasterWrite;
>> -    } else {
>> -      MapOp = EfiPciIoOperationBusMasterRead;
>> -    }
>> +      if (((UINT8) (Urb->Ep.Direction)) == EfiUsbDataIn) {
>> +        MapOp = EfiPciIoOperationBusMasterWrite;
>> +      } else {
>> +        MapOp = EfiPciIoOperationBusMasterRead;
>> +      }
> 
> Unnecessary change, right?

Yes, it happened when I was splitting the patches.
It should be no change here.

Thanks,
Star

> 
>>       Len = Urb->DataLen;
>>       Status  = Xhc->PciIo->Map (Xhc->PciIo, MapOp, Urb->Data, &Len, 
>> &PhyAddr, &Map);
>> @@ -1411,6 +1411,70 @@ XhciDelAllAsyncIntTransfers (
>>   }
>>   /**
>> +  Insert a single asynchronous interrupt transfer for
>> +  the device and endpoint.
>> +
>> +  @param Xhc            The XHCI Instance
>> +  @param BusAddr        The logical device address assigned by UsbBus 
>> driver
>> +  @param EpAddr         Endpoint addrress
>> +  @param DevSpeed       The device speed
>> +  @param MaxPacket      The max packet length of the endpoint
>> +  @param DataLen        The length of data buffer
>> +  @param Callback       The function to call when data is transferred
>> +  @param Context        The context to the callback
>> +
>> +  @return Created URB or NULL
>> +
>> +**/
>> +URB *
>> +XhciInsertAsyncIntTransfer (
>> +  IN USB_XHCI_INSTANCE                  *Xhc,
>> +  IN UINT8                              BusAddr,
>> +  IN UINT8                              EpAddr,
>> +  IN UINT8                              DevSpeed,
>> +  IN UINTN                              MaxPacket,
>> +  IN UINTN                              DataLen,
>> +  IN EFI_ASYNC_USB_TRANSFER_CALLBACK    Callback,
>> +  IN VOID                               *Context
>> +  )
>> +{
>> +  VOID      *Data;
>> +  URB       *Urb;
>> +
>> +  Data = AllocateZeroPool (DataLen);
>> +  if (Data == NULL) {
>> +    DEBUG ((DEBUG_ERROR, "%a: failed to allocate buffer\n", 
>> __FUNCTION__));
>> +    return NULL;
>> +  }
>> +
>> +  Urb = XhcCreateUrb (
>> +          Xhc,
>> +          BusAddr,
>> +          EpAddr,
>> +          DevSpeed,
>> +          MaxPacket,
>> +          XHC_INT_TRANSFER_ASYNC,
>> +          NULL,
>> +          Data,
>> +          DataLen,
>> +          Callback,
>> +          Context
>> +          );
>> +  if (Urb == NULL) {
>> +    DEBUG ((DEBUG_ERROR, "%a: failed to create URB\n", __FUNCTION__));
> 
> FreePool (Data) is needed.
> 
>> +    return NULL;
>> +  }
>> +
>> +  //
>> +  // New asynchronous transfer must inserted to the head.
>> +  // Check the comments in XhcMoniteAsyncRequests
>> +  //
>> +  InsertHeadList (&Xhc->AsyncIntTransfers, &Urb->UrbList);
>> +
>> +  return Urb;
>> +}
>> +
>> +/**
>>     Update the queue head for next round of asynchronous transfer
>>     @param  Xhc     The XHCI Instance.
>> diff --git a/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.h 
>> b/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.h
>> index 097408828a1f..cd1403f2842a 100644
>> --- a/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.h
>> +++ b/MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.h
>> @@ -853,6 +853,34 @@ XhciDelAllAsyncIntTransfers (
>>     );
>>   /**
>> +  Insert a single asynchronous interrupt transfer for
>> +  the device and endpoint.
>> +
>> +  @param Xhc            The XHCI Instance
>> +  @param BusAddr        The logical device address assigned by UsbBus 
>> driver
>> +  @param EpAddr         Endpoint addrress
>> +  @param DevSpeed       The device speed
>> +  @param MaxPacket      The max packet length of the endpoint
>> +  @param DataLen        The length of data buffer
>> +  @param Callback       The function to call when data is transferred
>> +  @param Context        The context to the callback
>> +
>> +  @return Created URB or NULL
>> +
>> +**/
>> +URB *
>> +XhciInsertAsyncIntTransfer (
>> +  IN USB_XHCI_INSTANCE                  *Xhc,
>> +  IN UINT8                              DeviceAddress,
>> +  IN UINT8                              EndPointAddress,
>> +  IN UINT8                              DeviceSpeed,
>> +  IN UINTN                              MaximumPacketLength,
>> +  IN UINTN                              DataLength,
>> +  IN EFI_ASYNC_USB_TRANSFER_CALLBACK    CallBackFunction,
>> +  IN VOID                               *Context
>> +  );
>> +
>> +/**
>>     Set Bios Ownership
>>     @param  Xhc          The XHCI Instance.
>>
> 
> 



  parent reply	other threads:[~2018-10-26  5:05 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-25 10:58 [PATCH 0/4] Remove unnecessary Map/Unmap in XhciDxe/EhciDxe for AsyncInterruptTransfer Star Zeng
2018-10-25 10:58 ` [PATCH 1/4] MdeModulePkg XhciDxe: Extract new XhciInsertAsyncIntTransfer function Star Zeng
2018-10-26  4:57   ` Ni, Ruiyu
2018-10-26  5:01     ` Zeng, Star
2018-10-26  5:05     ` Zeng, Star [this message]
2018-10-25 10:58 ` [PATCH 2/4] MdeModulePkg EhciDxe: Extract new EhciInsertAsyncIntTransfer function Star Zeng
2018-10-26  4:59   ` Ni, Ruiyu
2018-10-25 10:58 ` [PATCH 3/4] MdeModulePkg XhciDxe: Use common buffer for AsyncInterruptTransfer Star Zeng
2018-10-26  5:36   ` Ni, Ruiyu
2018-10-25 10:58 ` [PATCH 4/4] MdeModulePkg EhciDxe: " Star Zeng
2018-10-26  5:36   ` Ni, Ruiyu

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=2808ea61-0fdf-d954-ffcd-315e0dd19b54@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