From: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com>
To: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: "star.zeng@intel.com" <star.zeng@intel.com>,
"eric.dong@intel.com" <eric.dong@intel.com>,
Leif Lindholm <leif.lindholm@linaro.org>,
"Kinney, Michael D" <michael.d.kinney@intel.com>,
"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>,
Udit Kumar <udit.kumar@nxp.com>, Varun Sethi <V.Sethi@nxp.com>
Subject: Re: [PATCH edk2-platforms 0/3] Cover letter:Pci Emulation and SATA support
Date: Thu, 4 Jan 2018 12:56:29 +0000 [thread overview]
Message-ID: <DB5PR04MB0998C684E92FF263F36B83F88E1F0@DB5PR04MB0998.eurprd04.prod.outlook.com> (raw)
In-Reply-To: <CAKv+Gu_2oUxtmw+J4=kBrCFV4qzHqcaYY7q2wZR5uxEBiU-cQA@mail.gmail.com>
> -----Original Message-----
> From: Ard Biesheuvel [mailto:ard.biesheuvel@linaro.org]
> Sent: Thursday, January 04, 2018 5:03 PM
> To: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com>
> Cc: star.zeng@intel.com; eric.dong@intel.com; Leif Lindholm
> <leif.lindholm@linaro.org>; Kinney, Michael D
> <michael.d.kinney@intel.com>; edk2-devel@lists.01.org; Udit Kumar
> <udit.kumar@nxp.com>; Varun Sethi <V.Sethi@nxp.com>
> Subject: Re: [PATCH edk2-platforms 0/3] Cover letter:Pci Emulation and SATA
> support
>
> On 4 January 2018 at 11:27, Meenakshi Aggarwal
> <meenakshi.aggarwal@nxp.com> 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:ard.biesheuvel@linaro.org]
> >> Sent: Friday, December 22, 2017 9:02 PM
> >> To: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com>
> >> Cc: Leif Lindholm <leif.lindholm@linaro.org>; Kinney, Michael D
> >> <michael.d.kinney@intel.com>; edk2-devel@lists.01.org; Udit Kumar
> >> <udit.kumar@nxp.com>; Varun Sethi <V.Sethi@nxp.com>
> >> Subject: Re: [PATCH edk2-platforms 0/3] Cover letter:Pci Emulation and
> SATA
> >> support
> >>
> >> On 22 December 2017 at 12:16, Meenakshi Aggarwal
> >> <meenakshi.aggarwal@nxp.com> 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
> >> >
next prev parent reply other threads:[~2018-01-04 12:51 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-22 12:16 [PATCH edk2-platforms 0/3] Cover letter:Pci Emulation and SATA support Meenakshi Aggarwal
2017-12-22 12:16 ` [PATCH edk2-platforms 1/3] USB: Added Support of DWC3 USB controller Meenakshi Aggarwal
2017-12-22 12:16 ` [PATCH edk2-platforms 2/3] PciEmulation : Add support for Pci Emulation layer Meenakshi Aggarwal
2017-12-22 12:16 ` [PATCH edk2-platforms 3/3] SATA : Added SATA controller initialization driver Meenakshi Aggarwal
2017-12-22 15:31 ` [PATCH edk2-platforms 0/3] Cover letter:Pci Emulation and SATA support Ard Biesheuvel
2018-01-04 11:27 ` Meenakshi Aggarwal
2018-01-04 11:33 ` Ard Biesheuvel
2018-01-04 12:56 ` Meenakshi Aggarwal [this message]
2018-01-05 6:47 ` Meenakshi Aggarwal
2018-01-05 7:40 ` Ard Biesheuvel
2018-01-05 8:53 ` Meenakshi Aggarwal
2018-01-05 9:16 ` Ard Biesheuvel
2018-01-08 15:55 ` [PATCH edk2-platforms v2 0/2] Cover letter:SATA controller support Meenakshi Aggarwal
2018-01-08 15:55 ` [PATCH edk2-platforms v2 1/2] SATA : Added SATA controller driver Meenakshi Aggarwal
2018-01-08 15:05 ` Ard Biesheuvel
2018-01-09 4:50 ` Meenakshi Aggarwal
2018-01-09 8:26 ` Ard Biesheuvel
2018-01-08 15:55 ` [PATCH edk2-platforms v2 2/2] LS1046 : Enable support of SATA controller Meenakshi Aggarwal
2018-01-08 15:11 ` Ard Biesheuvel
2018-01-09 4:37 ` Meenakshi Aggarwal
2018-01-09 8:27 ` Ard Biesheuvel
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=DB5PR04MB0998C684E92FF263F36B83F88E1F0@DB5PR04MB0998.eurprd04.prod.outlook.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