Hi Ard,

I tried NonDiscoverablePciDeviceDxe with Xhci today and unfortunately it also 
didnt work.

I didnt debug it much but XhciInitializeDevice() and UsbEnumerateNewDev() is 
failing.


XhcSetBiosOwnership: called to set BIOS ownership
XhcResetHC!
XhcInitSched:DCBAA=0xFE949000
XhcInitSched: Created CMD ring [FE949400~FE94A400) EVENT ring 
[FE94A400~FE94C400)
InstallProtocolInterface: 3E745226-9818-45B6-A2AC-D7CD0E8BA2BC FE959038
XhcDriverBindingStart: XHCI started for controller @ FE9EBD98
InstallProtocolInterface: 240612B7-A063-11D4-9A3A-0090273FC14D FE9D5020
XhcGetCapability: 2 ports, 64 bit 1
UsbRootHubInit: root hub FE9DB918 - max speed 3, 2 ports
XhcClearRootHubPortFeature: status Success
UsbEnumeratePort: port 0 state - 01, change - 01 on FE9DB918
UsbEnumeratePort: Device Connect/Disconnect Normally
UsbEnumeratePort: new device connected at port 0
XhcUsbPortReset!
XhcSetRootHubPortFeature: status Success
XhcClearRootHubPortFeature: status Success
XhcClearRootHubPortFeature: status Success

Wait here for considerable amount of time, then it timeout.

XhcInitializeDeviceSlot64: Enable Slot Failed, Status = Time out
UsbEnumerateNewDev: hub port 0 is reset
UsbEnumerateNewDev: device is of 2 speed
UsbEnumerateNewDev: device uses translator (0, 0)
XhcControlTransfer: error - Device Error, transfer - 100
UsbEnumerateNewDev: failed to set device address - Device Error                 
                                                                                
                                 


Is there some fixed sequence which needs to be followed?

Thanks,
Meenakshi

> -----Original Message-----
> From: Meenakshi Aggarwal
> Sent: Thursday, January 04, 2018 6:26 PM
> To: 'Ard Biesheuvel' <[email protected]>
> Cc: [email protected]; [email protected]; Leif Lindholm
> <[email protected]>; Kinney, Michael D
> <[email protected]>; [email protected]; Udit Kumar
> <[email protected]>; Varun Sethi <[email protected]>
> Subject: RE: [PATCH edk2-platforms 0/3] Cover letter:Pci Emulation and SATA
> support
> 
> 
> 
> > -----Original Message-----
> > From: Ard Biesheuvel [mailto:[email protected]]
> > Sent: Thursday, January 04, 2018 5:03 PM
> > To: Meenakshi Aggarwal <[email protected]>
> > Cc: [email protected]; [email protected]; Leif Lindholm
> > <[email protected]>; Kinney, Michael D
> > <[email protected]>; [email protected]; Udit Kumar
> > <[email protected]>; Varun Sethi <[email protected]>
> > Subject: Re: [PATCH edk2-platforms 0/3] Cover letter:Pci Emulation and
> SATA
> > support
> >
> > On 4 January 2018 at 11:27, Meenakshi Aggarwal
> > <[email protected]> wrote:
> > > Hi Ard,
> > >
> > >
> > > I tried using NonDiscoverablePciDeviceDxe driver for SATA (AHCI), but on
> > using this my SATA drive is not been detected by UEFI.
> > >
> > > Below is the reason of error:
> > >
> > > From EnumerateAttachedDevice() function AhciModeInitialization()
> > function gets called.
> > >
> > > In AhciModeInitialization() under else loop i am receiving EFI_TIMEOUT
> > from AhciIdentify()
> > >
> > >       } else if ((Data & EFI_AHCI_ATAPI_SIG_MASK) ==
> > EFI_AHCI_ATA_DEVICE_SIG) {
> > >         Status = AhciIdentify (PciIo, AhciRegisters, Port, 0, &Buffer);
> > >
> > >         if (EFI_ERROR (Status)) {
> > >           REPORT_STATUS_CODE (EFI_PROGRESS_CODE,
> > (EFI_PERIPHERAL_FIXED_MEDIA | EFI_P_EC_NOT_DETECTED));
> > >           continue;
> > >         }
> > >
> > >         DeviceType = EfiIdeHarddisk;
> > >
> > > Then i check In AhciIdentify() function.
> > > Here, AhciPioTransfer() calls AhciCheckMemSet() to read PioFisReceived
> > and D2hFisReceived.
> > > And AhciCheckMemSet() returns EFI_NOT_READY for both cases.
> > > So timeout occurs.
> > >
> > > I tried to compare PciEmulation layer and NonDiscoverablePciDeviceDxe
> > but not able to find much difference.
> > >
> > > Please suggest what can possibly i am missing.
> > >
> >
> > Does it work for XHCI?
> >
> I have not tried XHCI yet.
> >
> > >> -----Original Message-----
> > >> From: Ard Biesheuvel [mailto:[email protected]]
> > >> Sent: Friday, December 22, 2017 9:02 PM
> > >> To: Meenakshi Aggarwal <[email protected]>
> > >> Cc: Leif Lindholm <[email protected]>; Kinney, Michael D
> > >> <[email protected]>; [email protected]; Udit Kumar
> > >> <[email protected]>; Varun Sethi <[email protected]>
> > >> Subject: Re: [PATCH edk2-platforms 0/3] Cover letter:Pci Emulation and
> > SATA
> > >> support
> > >>
> > >> On 22 December 2017 at 12:16, Meenakshi Aggarwal
> > >> <[email protected]> wrote:
> > >> > Following patches add support for pci emulation layer
> > >> > and SATA on NXP boards.
> > >> >
> > >> > Null Library for USB is also present to give completeness
> > >> > to Pci Emulation layer.
> > >> >
> > >> > Meenakshi Aggarwal (3):
> > >> >   USB: Added Support of DWC3 USB controller.
> > >> >   PciEmulation : Add support for Pci Emulation layer.
> > >> >   SATA : Added SATA controller initialization driver.
> > >> >
> > >>
> > >> Please don't add PCI emulation drivers. Instead, we have
> > >> NonDiscoverablePciDeviceDxe that supports AHCI, XHCI, EHCI, OHCI,
> > >> UHCI, UFS, NVME and SDHCI platform devices.
> > >>
> > >> >  Platform/NXP/Drivers/PciEmulation/PciEmulation.c   | 624
> > >> +++++++++++++++++++++
> > >> >  Platform/NXP/Drivers/PciEmulation/PciEmulation.h   | 306
> ++++++++++
> > >> >  Platform/NXP/Drivers/PciEmulation/PciEmulation.inf |  54 ++
> > >> >  .../NXP/Drivers/PciEmulation/PciRootBridgeIo.c     | 286 ++++++++++
> > >> >  Platform/NXP/Drivers/SataInitDxe/SataInit.c        | 122 ++++
> > >> >  Platform/NXP/Drivers/SataInitDxe/SataInit.h        |  32 ++
> > >> >  Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf   |  43 ++
> > >> >  .../NXP/Library/UsbHcdNullLibrary/UsbHcdLibNull.c  |  25 +
> > >> >  .../NXP/Library/UsbHcdNullLibrary/UsbHcdNull.inf   |  28 +
> > >> >  Platform/NXP/NxpQoriqLs.dec                        |  14 +-
> > >> >  Platform/NXP/NxpQoriqLs.dsc                        |  15 +
> > >> >  11 files changed, 1547 insertions(+), 2 deletions(-)
> > >> >  create mode 100644
> > Platform/NXP/Drivers/PciEmulation/PciEmulation.c
> > >> >  create mode 100755
> > Platform/NXP/Drivers/PciEmulation/PciEmulation.h
> > >> >  create mode 100644
> > Platform/NXP/Drivers/PciEmulation/PciEmulation.inf
> > >> >  create mode 100644
> > >> Platform/NXP/Drivers/PciEmulation/PciRootBridgeIo.c
> > >> >  create mode 100644 Platform/NXP/Drivers/SataInitDxe/SataInit.c
> > >> >  create mode 100644 Platform/NXP/Drivers/SataInitDxe/SataInit.h
> > >> >  create mode 100644
> Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf
> > >> >  create mode 100644
> > >> Platform/NXP/Library/UsbHcdNullLibrary/UsbHcdLibNull.c
> > >> >  create mode 100644
> > >> Platform/NXP/Library/UsbHcdNullLibrary/UsbHcdNull.inf
> > >> >
> > >> > --
> > >> > 1.9.1
> > >> >
_______________________________________________
edk2-devel mailing list
[email protected]
https://lists.01.org/mailman/listinfo/edk2-devel

Reply via email to