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
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. 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 edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
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 > _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
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. > -----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 > > _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
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? >> -----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 >> > _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
> -----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 > >> > _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
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' <ard.biesheuvel@linaro.org> > 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 > > > > > -----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 > > >> > _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
On 5 January 2018 at 06:47, Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> wrote: > 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. > Are you using the correct DMA type for your device? (coherent vs non-coherent) > > 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' <ard.biesheuvel@linaro.org> >> 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 >> >> >> >> > -----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 >> > >> > _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
> -----Original Message----- > From: Ard Biesheuvel [mailto:ard.biesheuvel@linaro.org] > Sent: Friday, January 05, 2018 1:11 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 5 January 2018 at 06:47, Meenakshi Aggarwal > <meenakshi.aggarwal@nxp.com> wrote: > > 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. > > > > Are you using the correct DMA type for your device? (coherent vs non- > coherent) > I assumed i was but i was not :(. Correcting DMA type resolved the problem. Thanks a lot Ard. > > > > 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' <ard.biesheuvel@linaro.org> > >> 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 > >> > >> > >> > >> > -----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 > >> > >> > _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
On 5 January 2018 at 08:53, Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> wrote: > > >> -----Original Message----- >> From: Ard Biesheuvel [mailto:ard.biesheuvel@linaro.org] >> Sent: Friday, January 05, 2018 1:11 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 5 January 2018 at 06:47, Meenakshi Aggarwal >> <meenakshi.aggarwal@nxp.com> wrote: >> > 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. >> > >> >> Are you using the correct DMA type for your device? (coherent vs non- >> coherent) >> > I assumed i was but i was not :(. > Correcting DMA type resolved the problem. Glad to hear that! >> > >> > 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' <ard.biesheuvel@linaro.org> >> >> 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 >> >> >> >> >> >> >> >> > -----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 >> >> > >> > _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
V2: 1. Pci Emulation layer removed. 2. Made SATA driver as NonDiscoverablePciDevice. 3. Add support of SATA on LS1046RDB board. Meenakshi Aggarwal (2): SATA : Added SATA controller driver. LS1046 : Enable support of SATA controller Platform/NXP/Drivers/SataInitDxe/SataInit.c | 285 +++++++++++++++++++++ Platform/NXP/Drivers/SataInitDxe/SataInit.h | 36 +++ Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf | 52 ++++ Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc | 8 + Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf | 12 + .../Library/PlatformLib/ArmPlatformLib.inf | 2 + .../Library/PlatformLib/NxpQoriqLsMem.c | 8 + Platform/NXP/NxpQoriqLs.dec | 14 +- Platform/NXP/NxpQoriqLs.dsc | 13 + Silicon/NXP/LS1046A/LS1046A.dsc | 5 + 10 files changed, 433 insertions(+), 2 deletions(-) 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 V1 : 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. 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 -- 1.9.1 _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
This patch adds support of SATA controller, which
Initialize SATA controller,
apply platform specific errata and
Register itself as NonDiscoverableMmioDevice
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com>
---
Platform/NXP/Drivers/SataInitDxe/SataInit.c | 285 +++++++++++++++++++++++
Platform/NXP/Drivers/SataInitDxe/SataInit.h | 36 +++
Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf | 52 +++++
Platform/NXP/NxpQoriqLs.dec | 14 +-
Platform/NXP/NxpQoriqLs.dsc | 13 ++
5 files changed, 398 insertions(+), 2 deletions(-)
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
diff --git a/Platform/NXP/Drivers/SataInitDxe/SataInit.c b/Platform/NXP/Drivers/SataInitDxe/SataInit.c
new file mode 100644
index 0000000..bac390b
--- /dev/null
+++ b/Platform/NXP/Drivers/SataInitDxe/SataInit.c
@@ -0,0 +1,285 @@
+/** @file
+ This driver module adds SATA controller support.
+
+ Copyright 2017 NXP
+
+ This program and the accompanying materials
+ are licensed and made available under the terms and conditions of the BSD License
+ which accompanies this distribution. The full text of the license may be found
+ http://opensource.org/licenses/bsd-license.php
+
+ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+
+ **/
+
+#include <IndustryStandard/Pci.h>
+#include <Library/BeIoLib.h>
+#include <Library/DebugLib.h>
+#include <Library/NonDiscoverableDeviceRegistrationLib.h>
+#include <Library/UefiBootServicesTableLib.h>
+#include <Library/UefiLib.h>
+#include <Protocol/PciIo.h>
+
+#include "SataInit.h"
+
+STATIC VOID *mDriverEventRegistration;
+
+/**
+ Read AHCI Operation register.
+
+ @param PciIo The PCI IO protocol instance.
+ @param Offset The operation register offset.
+
+ @return The register content read.
+**/
+
+UINT32
+EFIAPI
+AhciReadReg (
+ IN EFI_PCI_IO_PROTOCOL *PciIo,
+ IN UINT32 Offset
+ )
+{
+ UINT32 Data;
+
+ ASSERT (PciIo != NULL);
+
+ Data = 0;
+
+ PciIo->Mem.Read (
+ PciIo,
+ EfiPciIoWidthUint32,
+ AHCI_BAR_INDEX,
+ (UINT64) Offset,
+ 1,
+ &Data
+ );
+
+ return Data;
+}
+
+/**
+ Write AHCI Operation register.
+
+ @param PciIo The PCI IO protocol instance.
+ @param Offset The operation register offset.
+ @param Data The data used to write down.
+
+**/
+VOID
+EFIAPI
+AhciWriteReg (
+ IN EFI_PCI_IO_PROTOCOL *PciIo,
+ IN UINT32 Offset,
+ IN UINT32 Data
+ )
+{
+ ASSERT (PciIo != NULL);
+
+ PciIo->Mem.Write (
+ PciIo,
+ EfiPciIoWidthUint32,
+ AHCI_BAR_INDEX,
+ (UINT64) Offset,
+ 1,
+ &Data
+ );
+
+ return;
+}
+
+STATIC
+VOID
+PciIoRegistrationEvent (
+ IN EFI_EVENT Event,
+ IN VOID *Context
+ )
+{
+ EFI_STATUS Status;
+ UINTN HandleCount;
+ UINTN Address;
+ UINT32 Count;
+ UINT32 Data;
+ UINT8 PciClass;
+ UINT8 PciSubClass;
+ EFI_PCI_IO_PROTOCOL *PciIo;
+ EFI_HANDLE *HandleBuf;
+
+ PciIo = NULL;
+
+ Status = gBS->LocateHandleBuffer (
+ ByProtocol,
+ &gEfiPciIoProtocolGuid,
+ NULL,
+ &HandleCount,
+ &HandleBuf);
+ if (EFI_ERROR (Status)) {
+ DEBUG ((DEBUG_ERROR, "Sata controller is not able to locate gEfiPciIoProtocolGuid 0x%x\n",
+ Status));
+ return;
+ }
+
+ for (Count = 0; Count < HandleCount; Count++) {
+ Status = gBS->OpenProtocol (
+ HandleBuf[Count],
+ &gEfiPciIoProtocolGuid,
+ (VOID **) &PciIo,
+ NULL,
+ NULL,
+ EFI_OPEN_PROTOCOL_GET_PROTOCOL);
+ if (EFI_ERROR (Status)) {
+ continue;
+ }
+
+ //
+ // Now further check the PCI header: Base class (offset 0x0B) and
+ // Sub Class (offset 0x0A). This controller should be an Ide controller
+ //
+ Status = PciIo->Pci.Read (
+ PciIo,
+ EfiPciIoWidthUint8,
+ PCI_CLASSCODE_OFFSET + 2,
+ 1,
+ &PciClass
+ );
+ if (EFI_ERROR (Status)) {
+ continue;
+ }
+
+ Status = PciIo->Pci.Read (
+ PciIo,
+ EfiPciIoWidthUint8,
+ PCI_CLASSCODE_OFFSET + 1,
+ 1,
+ &PciSubClass
+ );
+ if (EFI_ERROR (Status)) {
+ continue;
+ }
+
+ //
+ // Examine Ide PCI Configuration table fields
+ //
+ if ((PciClass != PCI_CLASS_MASS_STORAGE) ||
+ (PciSubClass != PCI_CLASS_MASS_STORAGE_SATADPA)) {
+ continue;
+ }
+
+ Status = PciIo->Pci.Read (
+ PciIo,
+ EfiPciIoWidthUint32,
+ PCI_AHCI_BASE_ADDRESS,
+ 1,
+ &Address
+ );
+ if (EFI_ERROR (Status)) {
+ continue;
+ } else if (Address == (UINTN)Context) {
+ gBS->CloseEvent (Event);
+
+ //
+ // configuring Physical Control Layer parameters for Port 0
+ //
+ AhciWriteReg (PciIo, SATA_PPCFG, PORT_PHYSICAL);
+
+ //
+ // This register controls the configuration of the
+ // Transport Layer for Port 0
+ // Errata Description : The default Rx watermark value may be insufficient for some
+ // hard drives and result in a false CRC or internal errors.
+ // Workaround: Change PTC[RXWM] field at offset 0xC8 to 0x29. Do not change
+ // the other reserved fields of the register.
+ //
+
+ Data = AhciReadReg (PciIo, SATA_PTC);
+ if (PcdGetBool (PcdSataErratumA009185)) {
+ Data |= PORT_RXWM;
+ } else {
+ Data |= PORT_TRANSPORT;
+ }
+ AhciWriteReg (PciIo, SATA_PTC, Data);
+
+ break;
+ }
+ }
+
+ gBS->FreePool (HandleBuf);
+
+ return;
+}
+
+/**
+ The Entry Point of module. It follows the standard UEFI driver model.
+
+ @param[in] ImageHandle The firmware allocated handle for the EFI image.
+ @param[in] SystemTable A pointer to the EFI System Table.
+
+ @retval EFI_SUCCESS The entry point is executed successfully.
+ @retval other Some error occurs when executing this entry point.
+
+**/
+EFI_STATUS
+EFIAPI
+InitializeSataController (
+ IN EFI_HANDLE ImageHandle,
+ IN EFI_SYSTEM_TABLE *SystemTable
+ )
+{
+ EFI_STATUS Status;
+ UINT32 NumSataController;
+ UINTN ControllerAddr;
+
+ Status = EFI_SUCCESS;
+ NumSataController = PcdGet32 (PcdNumSataController);
+
+ //
+ // Impact : The SATA controller does not detect some hard drives reliably with
+ // the default SerDes register setting.
+ // Workaround : write value 0x80104e20 to 0x1eb1300 (serdes 2)
+ //
+ if (PcdGetBool (PcdSataErratumA010554)) {
+ BeMmioWrite32 ((UINTN)SERDES2_SATA_ERRATA, 0x80104e20);
+ }
+
+ //
+ // Impact : Device may see false CRC errors causing unreliable SATA operation.
+ // Workaround : write 0x80000000 to the address 0x20140520 (dcsr).
+ //
+ if (PcdGetBool (PcdSataErratumA010635)) {
+ BeMmioWrite32 ((UINTN)DCSR_SATA_ERRATA, 0x80000000);
+ }
+
+ while (NumSataController) {
+ NumSataController--;
+ ControllerAddr = PcdGet32 (PcdSataBaseAddr) +
+ (NumSataController * PcdGet32 (PcdSataSize));
+
+ Status = RegisterNonDiscoverableMmioDevice (
+ NonDiscoverableDeviceTypeAhci,
+ NonDiscoverableDeviceDmaTypeNonCoherent,
+ NULL,
+ NULL,
+ 1,
+ ControllerAddr, PcdGet32 (PcdSataSize)
+ );
+
+ if (EFI_ERROR (Status)) {
+ DEBUG ((DEBUG_ERROR, "Failed to register SATA device (0x%x) with error 0x%x \n",
+ ControllerAddr, Status));
+ } else {
+ //
+ // Register a protocol registration notification callback on the driver
+ // binding protocol so we can attempt to connect to it as soon as it appears.
+ //
+ EfiCreateProtocolNotifyEvent (
+ &gEfiPciIoProtocolGuid,
+ TPL_CALLBACK,
+ PciIoRegistrationEvent,
+ (VOID *)ControllerAddr,
+ &mDriverEventRegistration);
+ }
+ }
+
+ return Status;
+}
diff --git a/Platform/NXP/Drivers/SataInitDxe/SataInit.h b/Platform/NXP/Drivers/SataInitDxe/SataInit.h
new file mode 100644
index 0000000..7fe6273
--- /dev/null
+++ b/Platform/NXP/Drivers/SataInitDxe/SataInit.h
@@ -0,0 +1,36 @@
+/** @file
+ Header file for Sata Controller initialization driver.
+
+ Copyright 2017 NXP
+
+ This program and the accompanying materials
+ are licensed and made available under the terms and conditions of the BSD License
+ which accompanies this distribution. The full text of the license may be found
+ http://opensource.org/licenses/bsd-license.php
+
+ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+
+ **/
+
+#ifndef _SATA_INIT_H_
+#define _SATA_INIT_H_
+
+
+#define AHCI_BAR_INDEX 0x05
+//
+// Offset for AHCI base address in PCI Header
+//
+#define PCI_AHCI_BASE_ADDRESS 0x24
+
+#define SATA_PPCFG 0xA8
+#define SATA_PTC 0xC8
+
+#define PORT_PHYSICAL 0xA003FFFE
+#define PORT_TRANSPORT 0x08000025
+#define PORT_RXWM 0x08000029
+
+#define DCSR_SATA_ERRATA 0x20140520
+#define SERDES2_SATA_ERRATA 0x01eb1300
+
+#endif
diff --git a/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf b/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf
new file mode 100644
index 0000000..82535f4
--- /dev/null
+++ b/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf
@@ -0,0 +1,52 @@
+## @file
+# Component description file for the Sata Controller initialization driver
+#
+# Copyright 2017 NXP
+#
+# This program and the accompanying materials
+# are licensed and made available under the terms and conditions of the BSD License
+# which accompanies this distribution. The full text of the license may be found
+# http://opensource.org/licenses/bsd-license.php
+#
+# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
+# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
+#
+##
+
+[Defines]
+ INF_VERSION = 0x0001000A
+ BASE_NAME = SataInit
+ FILE_GUID = 021722D8-522B-4079-852A-FE44C2C13F49
+ MODULE_TYPE = DXE_DRIVER
+ VERSION_STRING = 1.0
+ ENTRY_POINT = InitializeSataController
+
+[Sources]
+ SataInit.c
+
+[Packages]
+ MdePkg/MdePkg.dec
+ MdeModulePkg/MdeModulePkg.dec
+ Platform/NXP/NxpQoriqLs.dec
+
+[LibraryClasses]
+ BeIoLib
+ DebugLib
+ NonDiscoverableDeviceRegistrationLib
+ UefiBootServicesTableLib
+ UefiDriverEntryPoint
+ UefiLib
+
+[FixedPcd]
+ gNxpQoriqLsTokenSpaceGuid.PcdNumSataController
+ gNxpQoriqLsTokenSpaceGuid.PcdSataBaseAddr
+ gNxpQoriqLsTokenSpaceGuid.PcdSataSize
+ gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA009185
+ gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010554
+ gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010635
+
+[Protocols]
+ gEfiPciIoProtocolGuid
+
+[Depex]
+ TRUE
diff --git a/Platform/NXP/NxpQoriqLs.dec b/Platform/NXP/NxpQoriqLs.dec
index bd4273f..65d659e 100644
--- a/Platform/NXP/NxpQoriqLs.dec
+++ b/Platform/NXP/NxpQoriqLs.dec
@@ -52,8 +52,8 @@
gNxpQoriqLsTokenSpaceGuid.PcdI2c1BaseAddr|0|UINT64|0x0000010E
gNxpQoriqLsTokenSpaceGuid.PcdI2c2BaseAddr|0|UINT64|0x0000010F
gNxpQoriqLsTokenSpaceGuid.PcdI2c3BaseAddr|0|UINT64|0x00000110
- gNxpQoriqLsTokenSpaceGuid.PcdSataController1BaseAddress|0x0|UINT32|0x00000111
- gNxpQoriqLsTokenSpaceGuid.PcdSataController2BaseAddress|0x0|UINT32|0x00000112
+ gNxpQoriqLsTokenSpaceGuid.PcdSataBaseAddr|0x0|UINT32|0x00000111
+ gNxpQoriqLsTokenSpaceGuid.PcdSataSize|0x0|UINT32|0x00000112
gNxpQoriqLsTokenSpaceGuid.PcdQmanSwpBaseAddr|0x0500000000|UINT64|0x00000113
gNxpQoriqLsTokenSpaceGuid.PcdQmanSwpSize|0x0080000000|UINT64|0x00000114
gNxpQoriqLsTokenSpaceGuid.PcdBmanSwpBaseAddr|0x0508000000|UINT64|0x00000115
@@ -83,6 +83,8 @@
gNxpQoriqLsTokenSpaceGuid.PcdCcsrBaseAddr|0x01000000|UINT64|0x0000012D
gNxpQoriqLsTokenSpaceGuid.PcdCcsrSize|0x0F000000|UINT64|0x0000012E
gNxpQoriqLsTokenSpaceGuid.PcdDramMemSize|0x0|UINT64|0x0000012F
+ gNxpQoriqLsTokenSpaceGuid.PcdDcsrBaseAddr|0x0|UINT64|0x00000130
+ gNxpQoriqLsTokenSpaceGuid.PcdDcsrSize|0x0|UINT64|0x00000131
#
# DSPI Pcds
@@ -156,6 +158,9 @@
gNxpQoriqLsTokenSpaceGuid.PcdErratumA008514|FALSE|BOOLEAN|0x00000275
gNxpQoriqLsTokenSpaceGuid.PcdErratumA008336|FALSE|BOOLEAN|0x00000276
gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA009185|FALSE|BOOLEAN|0x00000277
+ gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010554|FALSE|BOOLEAN|0x00000278
+ gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010635|FALSE|BOOLEAN|0x00000279
+ gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA008402|FALSE|BOOLEAN|0x0000027A
#
# Test PCDs
@@ -249,3 +254,8 @@
#
gNxpQoriqLsTokenSpaceGuid.PcdSysEepromI2cBus|0|UINT32|0x0000330
gNxpQoriqLsTokenSpaceGuid.PcdSysEepromI2cAddress|0|UINT32|0x0000331
+
+ #
+ # SATA Pcds
+ #
+ gNxpQoriqLsTokenSpaceGuid.PcdNumSataController|0x0|UINT32|0x00000340
diff --git a/Platform/NXP/NxpQoriqLs.dsc b/Platform/NXP/NxpQoriqLs.dsc
index 10eff06..c3c0eb1 100644
--- a/Platform/NXP/NxpQoriqLs.dsc
+++ b/Platform/NXP/NxpQoriqLs.dsc
@@ -99,6 +99,8 @@
VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf
NULL|MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf
CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf
+ UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf
+ NonDiscoverableDeviceRegistrationLib|MdeModulePkg/Library/NonDiscoverableDeviceRegistrationLib/NonDiscoverableDeviceRegistrationLib.inf
[LibraryClasses.common.SEC]
PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf
@@ -144,6 +146,7 @@
SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf
PerformanceLib|MdeModulePkg/Library/DxePerformanceLib/DxePerformanceLib.inf
MemoryInitPeiLib|ArmPlatformPkg/MemoryInitPei/MemoryInitPeiLib.inf
+ NonDiscoverableDeviceRegistrationLib|MdeModulePkg/Library/NonDiscoverableDeviceRegistrationLib/NonDiscoverableDeviceRegistrationLib.inf
[LibraryClasses.common.UEFI_APPLICATION]
PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf
@@ -334,6 +337,16 @@
}
#
+ # AHCI Support
+ #
+ MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf
+ MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
+ MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
+ MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
+ MdeModulePkg/Bus/Pci/SataControllerDxe/SataControllerDxe.inf
+ MdeModulePkg/Bus/Pci/NonDiscoverablePciDeviceDxe/NonDiscoverablePciDeviceDxe.inf
+
+ #
# Architectural Protocols
#
ArmPkg/Drivers/CpuDxe/CpuDxe.inf
--
1.9.1
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
Hi Meenakshi, This is looking much better - thanks for rewriting it. I do have some comments below On 8 January 2018 at 15:55, Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> wrote: > This patch adds support of SATA controller, which > Initialize SATA controller, > apply platform specific errata and > Register itself as NonDiscoverableMmioDevice > > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> > --- > Platform/NXP/Drivers/SataInitDxe/SataInit.c | 285 +++++++++++++++++++++++ > Platform/NXP/Drivers/SataInitDxe/SataInit.h | 36 +++ > Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf | 52 +++++ > Platform/NXP/NxpQoriqLs.dec | 14 +- > Platform/NXP/NxpQoriqLs.dsc | 13 ++ > 5 files changed, 398 insertions(+), 2 deletions(-) > 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 > > diff --git a/Platform/NXP/Drivers/SataInitDxe/SataInit.c b/Platform/NXP/Drivers/SataInitDxe/SataInit.c > new file mode 100644 > index 0000000..bac390b > --- /dev/null > +++ b/Platform/NXP/Drivers/SataInitDxe/SataInit.c > @@ -0,0 +1,285 @@ > +/** @file > + This driver module adds SATA controller support. > + > + Copyright 2017 NXP > + > + This program and the accompanying materials > + are licensed and made available under the terms and conditions of the BSD License > + which accompanies this distribution. The full text of the license may be found > + http://opensource.org/licenses/bsd-license.php > + > + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, > + WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. > + > + **/ > + > +#include <IndustryStandard/Pci.h> > +#include <Library/BeIoLib.h> > +#include <Library/DebugLib.h> > +#include <Library/NonDiscoverableDeviceRegistrationLib.h> > +#include <Library/UefiBootServicesTableLib.h> > +#include <Library/UefiLib.h> > +#include <Protocol/PciIo.h> > + > +#include "SataInit.h" > + > +STATIC VOID *mDriverEventRegistration; > + > +/** > + Read AHCI Operation register. > + > + @param PciIo The PCI IO protocol instance. > + @param Offset The operation register offset. > + > + @return The register content read. > +**/ > + > +UINT32 > +EFIAPI > +AhciReadReg ( > + IN EFI_PCI_IO_PROTOCOL *PciIo, > + IN UINT32 Offset > + ) > +{ > + UINT32 Data; > + > + ASSERT (PciIo != NULL); > + > + Data = 0; > + > + PciIo->Mem.Read ( > + PciIo, > + EfiPciIoWidthUint32, > + AHCI_BAR_INDEX, > + (UINT64) Offset, > + 1, > + &Data > + ); > + > + return Data; > +} > + > +/** > + Write AHCI Operation register. > + > + @param PciIo The PCI IO protocol instance. > + @param Offset The operation register offset. > + @param Data The data used to write down. > + > +**/ > +VOID > +EFIAPI > +AhciWriteReg ( > + IN EFI_PCI_IO_PROTOCOL *PciIo, > + IN UINT32 Offset, > + IN UINT32 Data > + ) > +{ > + ASSERT (PciIo != NULL); > + > + PciIo->Mem.Write ( > + PciIo, > + EfiPciIoWidthUint32, > + AHCI_BAR_INDEX, > + (UINT64) Offset, > + 1, > + &Data > + ); > + > + return; > +} > + > +STATIC > +VOID > +PciIoRegistrationEvent ( > + IN EFI_EVENT Event, > + IN VOID *Context > + ) > +{ > + EFI_STATUS Status; > + UINTN HandleCount; > + UINTN Address; > + UINT32 Count; > + UINT32 Data; > + UINT8 PciClass; > + UINT8 PciSubClass; > + EFI_PCI_IO_PROTOCOL *PciIo; > + EFI_HANDLE *HandleBuf; > + > + PciIo = NULL; > + > + Status = gBS->LocateHandleBuffer ( > + ByProtocol, > + &gEfiPciIoProtocolGuid, > + NULL, > + &HandleCount, > + &HandleBuf); > + if (EFI_ERROR (Status)) { > + DEBUG ((DEBUG_ERROR, "Sata controller is not able to locate gEfiPciIoProtocolGuid 0x%x\n", > + Status)); > + return; > + } > + > + for (Count = 0; Count < HandleCount; Count++) { > + Status = gBS->OpenProtocol ( > + HandleBuf[Count], > + &gEfiPciIoProtocolGuid, > + (VOID **) &PciIo, > + NULL, > + NULL, > + EFI_OPEN_PROTOCOL_GET_PROTOCOL); > + if (EFI_ERROR (Status)) { > + continue; > + } > + > + // > + // Now further check the PCI header: Base class (offset 0x0B) and > + // Sub Class (offset 0x0A). This controller should be an Ide controller > + // > + Status = PciIo->Pci.Read ( > + PciIo, > + EfiPciIoWidthUint8, > + PCI_CLASSCODE_OFFSET + 2, > + 1, > + &PciClass > + ); > + if (EFI_ERROR (Status)) { > + continue; > + } > + > + Status = PciIo->Pci.Read ( > + PciIo, > + EfiPciIoWidthUint8, > + PCI_CLASSCODE_OFFSET + 1, > + 1, > + &PciSubClass > + ); > + if (EFI_ERROR (Status)) { > + continue; > + } > + > + // > + // Examine Ide PCI Configuration table fields > + // > + if ((PciClass != PCI_CLASS_MASS_STORAGE) || > + (PciSubClass != PCI_CLASS_MASS_STORAGE_SATADPA)) { > + continue; > + } > + > + Status = PciIo->Pci.Read ( > + PciIo, > + EfiPciIoWidthUint32, > + PCI_AHCI_BASE_ADDRESS, > + 1, > + &Address > + ); > + if (EFI_ERROR (Status)) { > + continue; > + } else if (Address == (UINTN)Context) { > + gBS->CloseEvent (Event); > + > + // > + // configuring Physical Control Layer parameters for Port 0 > + // > + AhciWriteReg (PciIo, SATA_PPCFG, PORT_PHYSICAL); > + > + // > + // This register controls the configuration of the > + // Transport Layer for Port 0 > + // Errata Description : The default Rx watermark value may be insufficient for some > + // hard drives and result in a false CRC or internal errors. > + // Workaround: Change PTC[RXWM] field at offset 0xC8 to 0x29. Do not change > + // the other reserved fields of the register. > + // > + > + Data = AhciReadReg (PciIo, SATA_PTC); > + if (PcdGetBool (PcdSataErratumA009185)) { > + Data |= PORT_RXWM; > + } else { > + Data |= PORT_TRANSPORT; > + } > + AhciWriteReg (PciIo, SATA_PTC, Data); > + > + break; > + } > + } > + > + gBS->FreePool (HandleBuf); > + > + return; > +} > + > +/** > + The Entry Point of module. It follows the standard UEFI driver model. > + > + @param[in] ImageHandle The firmware allocated handle for the EFI image. > + @param[in] SystemTable A pointer to the EFI System Table. > + > + @retval EFI_SUCCESS The entry point is executed successfully. > + @retval other Some error occurs when executing this entry point. > + > +**/ > +EFI_STATUS > +EFIAPI > +InitializeSataController ( > + IN EFI_HANDLE ImageHandle, > + IN EFI_SYSTEM_TABLE *SystemTable > + ) > +{ > + EFI_STATUS Status; > + UINT32 NumSataController; > + UINTN ControllerAddr; > + > + Status = EFI_SUCCESS; > + NumSataController = PcdGet32 (PcdNumSataController); > + > + // > + // Impact : The SATA controller does not detect some hard drives reliably with > + // the default SerDes register setting. > + // Workaround : write value 0x80104e20 to 0x1eb1300 (serdes 2) > + // > + if (PcdGetBool (PcdSataErratumA010554)) { > + BeMmioWrite32 ((UINTN)SERDES2_SATA_ERRATA, 0x80104e20); > + } > + > + // > + // Impact : Device may see false CRC errors causing unreliable SATA operation. > + // Workaround : write 0x80000000 to the address 0x20140520 (dcsr). > + // > + if (PcdGetBool (PcdSataErratumA010635)) { > + BeMmioWrite32 ((UINTN)DCSR_SATA_ERRATA, 0x80000000); > + } > + > + while (NumSataController) { > + NumSataController--; > + ControllerAddr = PcdGet32 (PcdSataBaseAddr) + > + (NumSataController * PcdGet32 (PcdSataSize)); > + > + Status = RegisterNonDiscoverableMmioDevice ( > + NonDiscoverableDeviceTypeAhci, > + NonDiscoverableDeviceDmaTypeNonCoherent, > + NULL, > + NULL, > + 1, > + ControllerAddr, PcdGet32 (PcdSataSize) > + ); > + > + if (EFI_ERROR (Status)) { > + DEBUG ((DEBUG_ERROR, "Failed to register SATA device (0x%x) with error 0x%x \n", > + ControllerAddr, Status)); Please don't use if/else for the expected path: instead, return here or goto the error/unwind code at the end of the function > + } else { > + // > + // Register a protocol registration notification callback on the driver > + // binding protocol so we can attempt to connect to it as soon as it appears. > + // > + EfiCreateProtocolNotifyEvent ( > + &gEfiPciIoProtocolGuid, > + TPL_CALLBACK, > + PciIoRegistrationEvent, > + (VOID *)ControllerAddr, > + &mDriverEventRegistration); What is the point of this? AhciReadReg()/AhciWriteReg() can access ControllerAddr directly, so there is no reason to go through the PCI I/O protocol. > + } > + } > + > + return Status; > +} > diff --git a/Platform/NXP/Drivers/SataInitDxe/SataInit.h b/Platform/NXP/Drivers/SataInitDxe/SataInit.h > new file mode 100644 > index 0000000..7fe6273 > --- /dev/null > +++ b/Platform/NXP/Drivers/SataInitDxe/SataInit.h > @@ -0,0 +1,36 @@ > +/** @file > + Header file for Sata Controller initialization driver. > + > + Copyright 2017 NXP > + > + This program and the accompanying materials > + are licensed and made available under the terms and conditions of the BSD License > + which accompanies this distribution. The full text of the license may be found > + http://opensource.org/licenses/bsd-license.php > + > + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, > + WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. > + > + **/ > + > +#ifndef _SATA_INIT_H_ > +#define _SATA_INIT_H_ > + > + > +#define AHCI_BAR_INDEX 0x05 > +// > +// Offset for AHCI base address in PCI Header > +// > +#define PCI_AHCI_BASE_ADDRESS 0x24 > + > +#define SATA_PPCFG 0xA8 > +#define SATA_PTC 0xC8 > + > +#define PORT_PHYSICAL 0xA003FFFE > +#define PORT_TRANSPORT 0x08000025 > +#define PORT_RXWM 0x08000029 > + > +#define DCSR_SATA_ERRATA 0x20140520 > +#define SERDES2_SATA_ERRATA 0x01eb1300 > + > +#endif > diff --git a/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf b/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf > new file mode 100644 > index 0000000..82535f4 > --- /dev/null > +++ b/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf > @@ -0,0 +1,52 @@ > +## @file > +# Component description file for the Sata Controller initialization driver > +# > +# Copyright 2017 NXP > +# > +# This program and the accompanying materials > +# are licensed and made available under the terms and conditions of the BSD License > +# which accompanies this distribution. The full text of the license may be found > +# http://opensource.org/licenses/bsd-license.php > +# > +# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, > +# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. > +# > +## > + > +[Defines] > + INF_VERSION = 0x0001000A > + BASE_NAME = SataInit > + FILE_GUID = 021722D8-522B-4079-852A-FE44C2C13F49 > + MODULE_TYPE = DXE_DRIVER > + VERSION_STRING = 1.0 > + ENTRY_POINT = InitializeSataController > + > +[Sources] > + SataInit.c > + > +[Packages] > + MdePkg/MdePkg.dec > + MdeModulePkg/MdeModulePkg.dec > + Platform/NXP/NxpQoriqLs.dec > + > +[LibraryClasses] > + BeIoLib > + DebugLib > + NonDiscoverableDeviceRegistrationLib > + UefiBootServicesTableLib > + UefiDriverEntryPoint > + UefiLib > + > +[FixedPcd] > + gNxpQoriqLsTokenSpaceGuid.PcdNumSataController > + gNxpQoriqLsTokenSpaceGuid.PcdSataBaseAddr > + gNxpQoriqLsTokenSpaceGuid.PcdSataSize > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA009185 > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010554 > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010635 > + > +[Protocols] > + gEfiPciIoProtocolGuid > + > +[Depex] > + TRUE > diff --git a/Platform/NXP/NxpQoriqLs.dec b/Platform/NXP/NxpQoriqLs.dec > index bd4273f..65d659e 100644 > --- a/Platform/NXP/NxpQoriqLs.dec > +++ b/Platform/NXP/NxpQoriqLs.dec > @@ -52,8 +52,8 @@ > gNxpQoriqLsTokenSpaceGuid.PcdI2c1BaseAddr|0|UINT64|0x0000010E > gNxpQoriqLsTokenSpaceGuid.PcdI2c2BaseAddr|0|UINT64|0x0000010F > gNxpQoriqLsTokenSpaceGuid.PcdI2c3BaseAddr|0|UINT64|0x00000110 > - gNxpQoriqLsTokenSpaceGuid.PcdSataController1BaseAddress|0x0|UINT32|0x00000111 > - gNxpQoriqLsTokenSpaceGuid.PcdSataController2BaseAddress|0x0|UINT32|0x00000112 > + gNxpQoriqLsTokenSpaceGuid.PcdSataBaseAddr|0x0|UINT32|0x00000111 > + gNxpQoriqLsTokenSpaceGuid.PcdSataSize|0x0|UINT32|0x00000112 > gNxpQoriqLsTokenSpaceGuid.PcdQmanSwpBaseAddr|0x0500000000|UINT64|0x00000113 > gNxpQoriqLsTokenSpaceGuid.PcdQmanSwpSize|0x0080000000|UINT64|0x00000114 > gNxpQoriqLsTokenSpaceGuid.PcdBmanSwpBaseAddr|0x0508000000|UINT64|0x00000115 > @@ -83,6 +83,8 @@ > gNxpQoriqLsTokenSpaceGuid.PcdCcsrBaseAddr|0x01000000|UINT64|0x0000012D > gNxpQoriqLsTokenSpaceGuid.PcdCcsrSize|0x0F000000|UINT64|0x0000012E > gNxpQoriqLsTokenSpaceGuid.PcdDramMemSize|0x0|UINT64|0x0000012F > + gNxpQoriqLsTokenSpaceGuid.PcdDcsrBaseAddr|0x0|UINT64|0x00000130 > + gNxpQoriqLsTokenSpaceGuid.PcdDcsrSize|0x0|UINT64|0x00000131 > > # > # DSPI Pcds > @@ -156,6 +158,9 @@ > gNxpQoriqLsTokenSpaceGuid.PcdErratumA008514|FALSE|BOOLEAN|0x00000275 > gNxpQoriqLsTokenSpaceGuid.PcdErratumA008336|FALSE|BOOLEAN|0x00000276 > gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA009185|FALSE|BOOLEAN|0x00000277 > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010554|FALSE|BOOLEAN|0x00000278 > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010635|FALSE|BOOLEAN|0x00000279 > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA008402|FALSE|BOOLEAN|0x0000027A > > # > # Test PCDs > @@ -249,3 +254,8 @@ > # > gNxpQoriqLsTokenSpaceGuid.PcdSysEepromI2cBus|0|UINT32|0x0000330 > gNxpQoriqLsTokenSpaceGuid.PcdSysEepromI2cAddress|0|UINT32|0x0000331 > + > + # > + # SATA Pcds > + # > + gNxpQoriqLsTokenSpaceGuid.PcdNumSataController|0x0|UINT32|0x00000340 > diff --git a/Platform/NXP/NxpQoriqLs.dsc b/Platform/NXP/NxpQoriqLs.dsc > index 10eff06..c3c0eb1 100644 > --- a/Platform/NXP/NxpQoriqLs.dsc > +++ b/Platform/NXP/NxpQoriqLs.dsc > @@ -99,6 +99,8 @@ > VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf > NULL|MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf > CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.inf > + UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf > + NonDiscoverableDeviceRegistrationLib|MdeModulePkg/Library/NonDiscoverableDeviceRegistrationLib/NonDiscoverableDeviceRegistrationLib.inf > > [LibraryClasses.common.SEC] > PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf > @@ -144,6 +146,7 @@ > SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementLib/DxeSecurityManagementLib.inf > PerformanceLib|MdeModulePkg/Library/DxePerformanceLib/DxePerformanceLib.inf > MemoryInitPeiLib|ArmPlatformPkg/MemoryInitPei/MemoryInitPeiLib.inf > + NonDiscoverableDeviceRegistrationLib|MdeModulePkg/Library/NonDiscoverableDeviceRegistrationLib/NonDiscoverableDeviceRegistrationLib.inf > Why do you need to add this twice? > [LibraryClasses.common.UEFI_APPLICATION] > PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf > @@ -334,6 +337,16 @@ > } > > # > + # AHCI Support > + # > + MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf > + MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf > + MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf > + MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf > + MdeModulePkg/Bus/Pci/SataControllerDxe/SataControllerDxe.inf > + MdeModulePkg/Bus/Pci/NonDiscoverablePciDeviceDxe/NonDiscoverablePciDeviceDxe.inf > + > + # > # Architectural Protocols > # > ArmPkg/Drivers/CpuDxe/CpuDxe.inf > -- > 1.9.1 > _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
> -----Original Message----- > From: Ard Biesheuvel [mailto:ard.biesheuvel@linaro.org] > Sent: Monday, January 08, 2018 8:35 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 v2 1/2] SATA : Added SATA controller > driver. > > Hi Meenakshi, > > This is looking much better - thanks for rewriting it. I do have some > comments below > > On 8 January 2018 at 15:55, Meenakshi Aggarwal > <meenakshi.aggarwal@nxp.com> wrote: > > This patch adds support of SATA controller, which > > Initialize SATA controller, > > apply platform specific errata and > > Register itself as NonDiscoverableMmioDevice > > > > Contributed-under: TianoCore Contribution Agreement 1.1 > > Signed-off-by: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> > > --- > > Platform/NXP/Drivers/SataInitDxe/SataInit.c | 285 > +++++++++++++++++++++++ > > Platform/NXP/Drivers/SataInitDxe/SataInit.h | 36 +++ > > Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf | 52 +++++ > > Platform/NXP/NxpQoriqLs.dec | 14 +- > > Platform/NXP/NxpQoriqLs.dsc | 13 ++ > > 5 files changed, 398 insertions(+), 2 deletions(-) > > 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 > > > > diff --git a/Platform/NXP/Drivers/SataInitDxe/SataInit.c > b/Platform/NXP/Drivers/SataInitDxe/SataInit.c > > new file mode 100644 > > index 0000000..bac390b > > --- /dev/null > > +++ b/Platform/NXP/Drivers/SataInitDxe/SataInit.c > > @@ -0,0 +1,285 @@ > > +/** @file > > + This driver module adds SATA controller support. > > + > > + Copyright 2017 NXP > > + > > + This program and the accompanying materials > > + are licensed and made available under the terms and conditions of the > BSD License > > + which accompanies this distribution. The full text of the license may be > found > > + > https://emea01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fope > nsource.org%2Flicenses%2Fbsd- > license.php&data=02%7C01%7Cmeenakshi.aggarwal%40nxp.com%7C1bf888 > dbc6b34f8646fe08d556a93d5a%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0 > %7C0%7C636510207254570536&sdata=hU2o5igZuy5SDt5emEUmAqhSn1gW9 > H40OgvmH8gMn9k%3D&reserved=0 > > + > > + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" > BASIS, > > + WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER > EXPRESS OR IMPLIED. > > + > > + **/ > > + > > +#include <IndustryStandard/Pci.h> > > +#include <Library/BeIoLib.h> > > +#include <Library/DebugLib.h> > > +#include <Library/NonDiscoverableDeviceRegistrationLib.h> > > +#include <Library/UefiBootServicesTableLib.h> > > +#include <Library/UefiLib.h> > > +#include <Protocol/PciIo.h> > > + > > +#include "SataInit.h" > > + > > +STATIC VOID *mDriverEventRegistration; > > + > > +/** > > + Read AHCI Operation register. > > + > > + @param PciIo The PCI IO protocol instance. > > + @param Offset The operation register offset. > > + > > + @return The register content read. > > +**/ > > + > > +UINT32 > > +EFIAPI > > +AhciReadReg ( > > + IN EFI_PCI_IO_PROTOCOL *PciIo, > > + IN UINT32 Offset > > + ) > > +{ > > + UINT32 Data; > > + > > + ASSERT (PciIo != NULL); > > + > > + Data = 0; > > + > > + PciIo->Mem.Read ( > > + PciIo, > > + EfiPciIoWidthUint32, > > + AHCI_BAR_INDEX, > > + (UINT64) Offset, > > + 1, > > + &Data > > + ); > > + > > + return Data; > > +} > > + > > +/** > > + Write AHCI Operation register. > > + > > + @param PciIo The PCI IO protocol instance. > > + @param Offset The operation register offset. > > + @param Data The data used to write down. > > + > > +**/ > > +VOID > > +EFIAPI > > +AhciWriteReg ( > > + IN EFI_PCI_IO_PROTOCOL *PciIo, > > + IN UINT32 Offset, > > + IN UINT32 Data > > + ) > > +{ > > + ASSERT (PciIo != NULL); > > + > > + PciIo->Mem.Write ( > > + PciIo, > > + EfiPciIoWidthUint32, > > + AHCI_BAR_INDEX, > > + (UINT64) Offset, > > + 1, > > + &Data > > + ); > > + > > + return; > > +} > > + > > +STATIC > > +VOID > > +PciIoRegistrationEvent ( > > + IN EFI_EVENT Event, > > + IN VOID *Context > > + ) > > +{ > > + EFI_STATUS Status; > > + UINTN HandleCount; > > + UINTN Address; > > + UINT32 Count; > > + UINT32 Data; > > + UINT8 PciClass; > > + UINT8 PciSubClass; > > + EFI_PCI_IO_PROTOCOL *PciIo; > > + EFI_HANDLE *HandleBuf; > > + > > + PciIo = NULL; > > + > > + Status = gBS->LocateHandleBuffer ( > > + ByProtocol, > > + &gEfiPciIoProtocolGuid, > > + NULL, > > + &HandleCount, > > + &HandleBuf); > > + if (EFI_ERROR (Status)) { > > + DEBUG ((DEBUG_ERROR, "Sata controller is not able to locate > gEfiPciIoProtocolGuid 0x%x\n", > > + Status)); > > + return; > > + } > > + > > + for (Count = 0; Count < HandleCount; Count++) { > > + Status = gBS->OpenProtocol ( > > + HandleBuf[Count], > > + &gEfiPciIoProtocolGuid, > > + (VOID **) &PciIo, > > + NULL, > > + NULL, > > + EFI_OPEN_PROTOCOL_GET_PROTOCOL); > > + if (EFI_ERROR (Status)) { > > + continue; > > + } > > + > > + // > > + // Now further check the PCI header: Base class (offset 0x0B) and > > + // Sub Class (offset 0x0A). This controller should be an Ide controller > > + // > > + Status = PciIo->Pci.Read ( > > + PciIo, > > + EfiPciIoWidthUint8, > > + PCI_CLASSCODE_OFFSET + 2, > > + 1, > > + &PciClass > > + ); > > + if (EFI_ERROR (Status)) { > > + continue; > > + } > > + > > + Status = PciIo->Pci.Read ( > > + PciIo, > > + EfiPciIoWidthUint8, > > + PCI_CLASSCODE_OFFSET + 1, > > + 1, > > + &PciSubClass > > + ); > > + if (EFI_ERROR (Status)) { > > + continue; > > + } > > + > > + // > > + // Examine Ide PCI Configuration table fields > > + // > > + if ((PciClass != PCI_CLASS_MASS_STORAGE) || > > + (PciSubClass != PCI_CLASS_MASS_STORAGE_SATADPA)) { > > + continue; > > + } > > + > > + Status = PciIo->Pci.Read ( > > + PciIo, > > + EfiPciIoWidthUint32, > > + PCI_AHCI_BASE_ADDRESS, > > + 1, > > + &Address > > + ); > > + if (EFI_ERROR (Status)) { > > + continue; > > + } else if (Address == (UINTN)Context) { > > + gBS->CloseEvent (Event); > > + > > + // > > + // configuring Physical Control Layer parameters for Port 0 > > + // > > + AhciWriteReg (PciIo, SATA_PPCFG, PORT_PHYSICAL); > > + > > + // > > + // This register controls the configuration of the > > + // Transport Layer for Port 0 > > + // Errata Description : The default Rx watermark value may be > insufficient for some > > + // hard drives and result in a false CRC or internal errors. > > + // Workaround: Change PTC[RXWM] field at offset 0xC8 to 0x29. Do > not change > > + // the other reserved fields of the register. > > + // > > + > > + Data = AhciReadReg (PciIo, SATA_PTC); > > + if (PcdGetBool (PcdSataErratumA009185)) { > > + Data |= PORT_RXWM; > > + } else { > > + Data |= PORT_TRANSPORT; > > + } > > + AhciWriteReg (PciIo, SATA_PTC, Data); > > + > > + break; > > + } > > + } > > + > > + gBS->FreePool (HandleBuf); > > + > > + return; > > +} > > + > > +/** > > + The Entry Point of module. It follows the standard UEFI driver model. > > + > > + @param[in] ImageHandle The firmware allocated handle for the EFI > image. > > + @param[in] SystemTable A pointer to the EFI System Table. > > + > > + @retval EFI_SUCCESS The entry point is executed successfully. > > + @retval other Some error occurs when executing this entry point. > > + > > +**/ > > +EFI_STATUS > > +EFIAPI > > +InitializeSataController ( > > + IN EFI_HANDLE ImageHandle, > > + IN EFI_SYSTEM_TABLE *SystemTable > > + ) > > +{ > > + EFI_STATUS Status; > > + UINT32 NumSataController; > > + UINTN ControllerAddr; > > + > > + Status = EFI_SUCCESS; > > + NumSataController = PcdGet32 (PcdNumSataController); > > + > > + // > > + // Impact : The SATA controller does not detect some hard drives reliably > with > > + // the default SerDes register setting. > > + // Workaround : write value 0x80104e20 to 0x1eb1300 (serdes 2) > > + // > > + if (PcdGetBool (PcdSataErratumA010554)) { > > + BeMmioWrite32 ((UINTN)SERDES2_SATA_ERRATA, 0x80104e20); > > + } > > + > > + // > > + // Impact : Device may see false CRC errors causing unreliable SATA > operation. > > + // Workaround : write 0x80000000 to the address 0x20140520 (dcsr). > > + // > > + if (PcdGetBool (PcdSataErratumA010635)) { > > + BeMmioWrite32 ((UINTN)DCSR_SATA_ERRATA, 0x80000000); > > + } > > + > > + while (NumSataController) { > > + NumSataController--; > > + ControllerAddr = PcdGet32 (PcdSataBaseAddr) + > > + (NumSataController * PcdGet32 (PcdSataSize)); > > + > > + Status = RegisterNonDiscoverableMmioDevice ( > > + NonDiscoverableDeviceTypeAhci, > > + NonDiscoverableDeviceDmaTypeNonCoherent, > > + NULL, > > + NULL, > > + 1, > > + ControllerAddr, PcdGet32 (PcdSataSize) > > + ); > > + > > + if (EFI_ERROR (Status)) { > > + DEBUG ((DEBUG_ERROR, "Failed to register SATA device (0x%x) with > error 0x%x \n", > > + ControllerAddr, Status)); > > Please don't use if/else for the expected path: instead, return here > or goto the error/unwind code at the end of the function > In case of more than one controller, we cannot return/goto from here because there are chances that other controller might get register successfully. So used if-else, please suggest the correct way. > > + } else { > > + // > > + // Register a protocol registration notification callback on the driver > > + // binding protocol so we can attempt to connect to it as soon as it > appears. > > + // > > + EfiCreateProtocolNotifyEvent ( > > + &gEfiPciIoProtocolGuid, > > + TPL_CALLBACK, > > + PciIoRegistrationEvent, > > + (VOID *)ControllerAddr, > > + &mDriverEventRegistration); > > What is the point of this? AhciReadReg()/AhciWriteReg() can access > ControllerAddr directly, so there is no reason to go through the PCI > I/O protocol. > OK, i will check this. > > + } > > + } > > + > > + return Status; > > +} > > diff --git a/Platform/NXP/Drivers/SataInitDxe/SataInit.h > b/Platform/NXP/Drivers/SataInitDxe/SataInit.h > > new file mode 100644 > > index 0000000..7fe6273 > > --- /dev/null > > +++ b/Platform/NXP/Drivers/SataInitDxe/SataInit.h > > @@ -0,0 +1,36 @@ > > +/** @file > > + Header file for Sata Controller initialization driver. > > + > > + Copyright 2017 NXP > > + > > + This program and the accompanying materials > > + are licensed and made available under the terms and conditions of the > BSD License > > + which accompanies this distribution. The full text of the license may be > found > > + > https://emea01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fope > nsource.org%2Flicenses%2Fbsd- > license.php&data=02%7C01%7Cmeenakshi.aggarwal%40nxp.com%7C1bf888 > dbc6b34f8646fe08d556a93d5a%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0 > %7C0%7C636510207254570536&sdata=hU2o5igZuy5SDt5emEUmAqhSn1gW9 > H40OgvmH8gMn9k%3D&reserved=0 > > + > > + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" > BASIS, > > + WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER > EXPRESS OR IMPLIED. > > + > > + **/ > > + > > +#ifndef _SATA_INIT_H_ > > +#define _SATA_INIT_H_ > > + > > + > > +#define AHCI_BAR_INDEX 0x05 > > +// > > +// Offset for AHCI base address in PCI Header > > +// > > +#define PCI_AHCI_BASE_ADDRESS 0x24 > > + > > +#define SATA_PPCFG 0xA8 > > +#define SATA_PTC 0xC8 > > + > > +#define PORT_PHYSICAL 0xA003FFFE > > +#define PORT_TRANSPORT 0x08000025 > > +#define PORT_RXWM 0x08000029 > > + > > +#define DCSR_SATA_ERRATA 0x20140520 > > +#define SERDES2_SATA_ERRATA 0x01eb1300 > > + > > +#endif > > diff --git a/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf > b/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf > > new file mode 100644 > > index 0000000..82535f4 > > --- /dev/null > > +++ b/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf > > @@ -0,0 +1,52 @@ > > +## @file > > +# Component description file for the Sata Controller initialization driver > > +# > > +# Copyright 2017 NXP > > +# > > +# This program and the accompanying materials > > +# are licensed and made available under the terms and conditions of the > BSD License > > +# which accompanies this distribution. The full text of the license may be > found > > +# > https://emea01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fope > nsource.org%2Flicenses%2Fbsd- > license.php&data=02%7C01%7Cmeenakshi.aggarwal%40nxp.com%7C1bf888 > dbc6b34f8646fe08d556a93d5a%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0 > %7C0%7C636510207254570536&sdata=hU2o5igZuy5SDt5emEUmAqhSn1gW9 > H40OgvmH8gMn9k%3D&reserved=0 > > +# > > +# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" > BASIS, > > +# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER > EXPRESS OR IMPLIED. > > +# > > +## > > + > > +[Defines] > > + INF_VERSION = 0x0001000A > > + BASE_NAME = SataInit > > + FILE_GUID = 021722D8-522B-4079-852A-FE44C2C13F49 > > + MODULE_TYPE = DXE_DRIVER > > + VERSION_STRING = 1.0 > > + ENTRY_POINT = InitializeSataController > > + > > +[Sources] > > + SataInit.c > > + > > +[Packages] > > + MdePkg/MdePkg.dec > > + MdeModulePkg/MdeModulePkg.dec > > + Platform/NXP/NxpQoriqLs.dec > > + > > +[LibraryClasses] > > + BeIoLib > > + DebugLib > > + NonDiscoverableDeviceRegistrationLib > > + UefiBootServicesTableLib > > + UefiDriverEntryPoint > > + UefiLib > > + > > +[FixedPcd] > > + gNxpQoriqLsTokenSpaceGuid.PcdNumSataController > > + gNxpQoriqLsTokenSpaceGuid.PcdSataBaseAddr > > + gNxpQoriqLsTokenSpaceGuid.PcdSataSize > > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA009185 > > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010554 > > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010635 > > + > > +[Protocols] > > + gEfiPciIoProtocolGuid > > + > > +[Depex] > > + TRUE > > diff --git a/Platform/NXP/NxpQoriqLs.dec b/Platform/NXP/NxpQoriqLs.dec > > index bd4273f..65d659e 100644 > > --- a/Platform/NXP/NxpQoriqLs.dec > > +++ b/Platform/NXP/NxpQoriqLs.dec > > @@ -52,8 +52,8 @@ > > gNxpQoriqLsTokenSpaceGuid.PcdI2c1BaseAddr|0|UINT64|0x0000010E > > gNxpQoriqLsTokenSpaceGuid.PcdI2c2BaseAddr|0|UINT64|0x0000010F > > gNxpQoriqLsTokenSpaceGuid.PcdI2c3BaseAddr|0|UINT64|0x00000110 > > - > gNxpQoriqLsTokenSpaceGuid.PcdSataController1BaseAddress|0x0|UINT32| > 0x00000111 > > - > gNxpQoriqLsTokenSpaceGuid.PcdSataController2BaseAddress|0x0|UINT32| > 0x00000112 > > + > gNxpQoriqLsTokenSpaceGuid.PcdSataBaseAddr|0x0|UINT32|0x00000111 > > + gNxpQoriqLsTokenSpaceGuid.PcdSataSize|0x0|UINT32|0x00000112 > > > gNxpQoriqLsTokenSpaceGuid.PcdQmanSwpBaseAddr|0x0500000000|UINT6 > 4|0x00000113 > > > gNxpQoriqLsTokenSpaceGuid.PcdQmanSwpSize|0x0080000000|UINT64|0x0 > 0000114 > > > gNxpQoriqLsTokenSpaceGuid.PcdBmanSwpBaseAddr|0x0508000000|UINT64 > |0x00000115 > > @@ -83,6 +83,8 @@ > > > gNxpQoriqLsTokenSpaceGuid.PcdCcsrBaseAddr|0x01000000|UINT64|0x0000 > 012D > > > gNxpQoriqLsTokenSpaceGuid.PcdCcsrSize|0x0F000000|UINT64|0x0000012E > > > gNxpQoriqLsTokenSpaceGuid.PcdDramMemSize|0x0|UINT64|0x0000012F > > + > gNxpQoriqLsTokenSpaceGuid.PcdDcsrBaseAddr|0x0|UINT64|0x00000130 > > + gNxpQoriqLsTokenSpaceGuid.PcdDcsrSize|0x0|UINT64|0x00000131 > > > > # > > # DSPI Pcds > > @@ -156,6 +158,9 @@ > > > gNxpQoriqLsTokenSpaceGuid.PcdErratumA008514|FALSE|BOOLEAN|0x0000 > 0275 > > > gNxpQoriqLsTokenSpaceGuid.PcdErratumA008336|FALSE|BOOLEAN|0x0000 > 0276 > > > gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA009185|FALSE|BOOLEAN|0x > 00000277 > > + > gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010554|FALSE|BOOLEAN|0x > 00000278 > > + > gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010635|FALSE|BOOLEAN|0x > 00000279 > > + > gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA008402|FALSE|BOOLEAN|0x > 0000027A > > > > # > > # Test PCDs > > @@ -249,3 +254,8 @@ > > # > > gNxpQoriqLsTokenSpaceGuid.PcdSysEepromI2cBus|0|UINT32|0x0000330 > > > gNxpQoriqLsTokenSpaceGuid.PcdSysEepromI2cAddress|0|UINT32|0x00003 > 31 > > + > > + # > > + # SATA Pcds > > + # > > + > gNxpQoriqLsTokenSpaceGuid.PcdNumSataController|0x0|UINT32|0x000003 > 40 > > diff --git a/Platform/NXP/NxpQoriqLs.dsc b/Platform/NXP/NxpQoriqLs.dsc > > index 10eff06..c3c0eb1 100644 > > --- a/Platform/NXP/NxpQoriqLs.dsc > > +++ b/Platform/NXP/NxpQoriqLs.dsc > > @@ -99,6 +99,8 @@ > > VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf > > NULL|MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf > > > CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.i > nf > > + UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf > > + > NonDiscoverableDeviceRegistrationLib|MdeModulePkg/Library/NonDiscove > rableDeviceRegistrationLib/NonDiscoverableDeviceRegistrationLib.inf > > > > [LibraryClasses.common.SEC] > > PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf > > @@ -144,6 +146,7 @@ > > > SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementL > ib/DxeSecurityManagementLib.inf > > > PerformanceLib|MdeModulePkg/Library/DxePerformanceLib/DxePerforma > nceLib.inf > > MemoryInitPeiLib|ArmPlatformPkg/MemoryInitPei/MemoryInitPeiLib.inf > > + > NonDiscoverableDeviceRegistrationLib|MdeModulePkg/Library/NonDiscove > rableDeviceRegistrationLib/NonDiscoverableDeviceRegistrationLib.inf > > > > Why do you need to add this twice? My fault, will update. > > > [LibraryClasses.common.UEFI_APPLICATION] > > PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf > > @@ -334,6 +337,16 @@ > > } > > > > # > > + # AHCI Support > > + # > > + MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf > > + MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf > > + MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf > > + MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf > > + MdeModulePkg/Bus/Pci/SataControllerDxe/SataControllerDxe.inf > > + > MdeModulePkg/Bus/Pci/NonDiscoverablePciDeviceDxe/NonDiscoverablePci > DeviceDxe.inf > > + > > + # > > # Architectural Protocols > > # > > ArmPkg/Drivers/CpuDxe/CpuDxe.inf > > -- > > 1.9.1 > > _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
On 9 January 2018 at 04:50, Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> wrote: > > >> -----Original Message----- >> From: Ard Biesheuvel [mailto:ard.biesheuvel@linaro.org] >> Sent: Monday, January 08, 2018 8:35 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 v2 1/2] SATA : Added SATA controller >> driver. >> >> Hi Meenakshi, >> >> This is looking much better - thanks for rewriting it. I do have some >> comments below >> >> On 8 January 2018 at 15:55, Meenakshi Aggarwal >> <meenakshi.aggarwal@nxp.com> wrote: >> > This patch adds support of SATA controller, which >> > Initialize SATA controller, >> > apply platform specific errata and >> > Register itself as NonDiscoverableMmioDevice >> > >> > Contributed-under: TianoCore Contribution Agreement 1.1 >> > Signed-off-by: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> >> > --- >> > Platform/NXP/Drivers/SataInitDxe/SataInit.c | 285 >> +++++++++++++++++++++++ >> > Platform/NXP/Drivers/SataInitDxe/SataInit.h | 36 +++ >> > Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf | 52 +++++ >> > Platform/NXP/NxpQoriqLs.dec | 14 +- >> > Platform/NXP/NxpQoriqLs.dsc | 13 ++ >> > 5 files changed, 398 insertions(+), 2 deletions(-) >> > 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 >> > .... >> > +/** >> > + The Entry Point of module. It follows the standard UEFI driver model. >> > + >> > + @param[in] ImageHandle The firmware allocated handle for the EFI >> image. >> > + @param[in] SystemTable A pointer to the EFI System Table. >> > + >> > + @retval EFI_SUCCESS The entry point is executed successfully. >> > + @retval other Some error occurs when executing this entry point. >> > + >> > +**/ >> > +EFI_STATUS >> > +EFIAPI >> > +InitializeSataController ( >> > + IN EFI_HANDLE ImageHandle, >> > + IN EFI_SYSTEM_TABLE *SystemTable >> > + ) >> > +{ >> > + EFI_STATUS Status; >> > + UINT32 NumSataController; >> > + UINTN ControllerAddr; >> > + >> > + Status = EFI_SUCCESS; >> > + NumSataController = PcdGet32 (PcdNumSataController); >> > + >> > + // >> > + // Impact : The SATA controller does not detect some hard drives reliably >> with >> > + // the default SerDes register setting. >> > + // Workaround : write value 0x80104e20 to 0x1eb1300 (serdes 2) >> > + // >> > + if (PcdGetBool (PcdSataErratumA010554)) { >> > + BeMmioWrite32 ((UINTN)SERDES2_SATA_ERRATA, 0x80104e20); >> > + } >> > + >> > + // >> > + // Impact : Device may see false CRC errors causing unreliable SATA >> operation. >> > + // Workaround : write 0x80000000 to the address 0x20140520 (dcsr). >> > + // >> > + if (PcdGetBool (PcdSataErratumA010635)) { >> > + BeMmioWrite32 ((UINTN)DCSR_SATA_ERRATA, 0x80000000); >> > + } >> > + >> > + while (NumSataController) { >> > + NumSataController--; >> > + ControllerAddr = PcdGet32 (PcdSataBaseAddr) + >> > + (NumSataController * PcdGet32 (PcdSataSize)); >> > + >> > + Status = RegisterNonDiscoverableMmioDevice ( >> > + NonDiscoverableDeviceTypeAhci, >> > + NonDiscoverableDeviceDmaTypeNonCoherent, >> > + NULL, >> > + NULL, >> > + 1, >> > + ControllerAddr, PcdGet32 (PcdSataSize) >> > + ); >> > + >> > + if (EFI_ERROR (Status)) { >> > + DEBUG ((DEBUG_ERROR, "Failed to register SATA device (0x%x) with >> error 0x%x \n", >> > + ControllerAddr, Status)); >> >> Please don't use if/else for the expected path: instead, return here >> or goto the error/unwind code at the end of the function >> > In case of more than one controller, we cannot return/goto from here because there are chances that other controller might get register successfully. > So used if-else, please suggest the correct way. > Then use 'continue' In any case, all RegisterNonDiscoverableMmioDevice() does is install a protocol on a new handle, so it is unlikely to fail. You can just replace the error handling with ASSERT_EFI_ERROR(). >> > + } else { >> > + // >> > + // Register a protocol registration notification callback on the driver >> > + // binding protocol so we can attempt to connect to it as soon as it >> appears. >> > + // >> > + EfiCreateProtocolNotifyEvent ( >> > + &gEfiPciIoProtocolGuid, >> > + TPL_CALLBACK, >> > + PciIoRegistrationEvent, >> > + (VOID *)ControllerAddr, >> > + &mDriverEventRegistration); >> >> What is the point of this? AhciReadReg()/AhciWriteReg() can access >> ControllerAddr directly, so there is no reason to go through the PCI >> I/O protocol. >> > OK, i will check this. >> > + } >> > + } >> > + >> > + return Status; >> > +} >> > diff --git a/Platform/NXP/Drivers/SataInitDxe/SataInit.h >> b/Platform/NXP/Drivers/SataInitDxe/SataInit.h >> > new file mode 100644 >> > index 0000000..7fe6273 >> > --- /dev/null >> > +++ b/Platform/NXP/Drivers/SataInitDxe/SataInit.h >> > @@ -0,0 +1,36 @@ >> > +/** @file >> > + Header file for Sata Controller initialization driver. >> > + >> > + Copyright 2017 NXP >> > + >> > + This program and the accompanying materials >> > + are licensed and made available under the terms and conditions of the >> BSD License >> > + which accompanies this distribution. The full text of the license may be >> found >> > + >> https://emea01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fope >> nsource.org%2Flicenses%2Fbsd- >> license.php&data=02%7C01%7Cmeenakshi.aggarwal%40nxp.com%7C1bf888 >> dbc6b34f8646fe08d556a93d5a%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0 >> %7C0%7C636510207254570536&sdata=hU2o5igZuy5SDt5emEUmAqhSn1gW9 >> H40OgvmH8gMn9k%3D&reserved=0 >> > + >> > + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" >> BASIS, >> > + WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER >> EXPRESS OR IMPLIED. >> > + >> > + **/ >> > + >> > +#ifndef _SATA_INIT_H_ >> > +#define _SATA_INIT_H_ >> > + >> > + >> > +#define AHCI_BAR_INDEX 0x05 >> > +// >> > +// Offset for AHCI base address in PCI Header >> > +// >> > +#define PCI_AHCI_BASE_ADDRESS 0x24 >> > + >> > +#define SATA_PPCFG 0xA8 >> > +#define SATA_PTC 0xC8 >> > + >> > +#define PORT_PHYSICAL 0xA003FFFE >> > +#define PORT_TRANSPORT 0x08000025 >> > +#define PORT_RXWM 0x08000029 >> > + >> > +#define DCSR_SATA_ERRATA 0x20140520 >> > +#define SERDES2_SATA_ERRATA 0x01eb1300 >> > + >> > +#endif >> > diff --git a/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf >> b/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf >> > new file mode 100644 >> > index 0000000..82535f4 >> > --- /dev/null >> > +++ b/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf >> > @@ -0,0 +1,52 @@ >> > +## @file >> > +# Component description file for the Sata Controller initialization driver >> > +# >> > +# Copyright 2017 NXP >> > +# >> > +# This program and the accompanying materials >> > +# are licensed and made available under the terms and conditions of the >> BSD License >> > +# which accompanies this distribution. The full text of the license may be >> found >> > +# >> https://emea01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fope >> nsource.org%2Flicenses%2Fbsd- >> license.php&data=02%7C01%7Cmeenakshi.aggarwal%40nxp.com%7C1bf888 >> dbc6b34f8646fe08d556a93d5a%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0 >> %7C0%7C636510207254570536&sdata=hU2o5igZuy5SDt5emEUmAqhSn1gW9 >> H40OgvmH8gMn9k%3D&reserved=0 >> > +# >> > +# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" >> BASIS, >> > +# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER >> EXPRESS OR IMPLIED. >> > +# >> > +## >> > + >> > +[Defines] >> > + INF_VERSION = 0x0001000A >> > + BASE_NAME = SataInit >> > + FILE_GUID = 021722D8-522B-4079-852A-FE44C2C13F49 >> > + MODULE_TYPE = DXE_DRIVER >> > + VERSION_STRING = 1.0 >> > + ENTRY_POINT = InitializeSataController >> > + >> > +[Sources] >> > + SataInit.c >> > + >> > +[Packages] >> > + MdePkg/MdePkg.dec >> > + MdeModulePkg/MdeModulePkg.dec >> > + Platform/NXP/NxpQoriqLs.dec >> > + >> > +[LibraryClasses] >> > + BeIoLib >> > + DebugLib >> > + NonDiscoverableDeviceRegistrationLib >> > + UefiBootServicesTableLib >> > + UefiDriverEntryPoint >> > + UefiLib >> > + >> > +[FixedPcd] >> > + gNxpQoriqLsTokenSpaceGuid.PcdNumSataController >> > + gNxpQoriqLsTokenSpaceGuid.PcdSataBaseAddr >> > + gNxpQoriqLsTokenSpaceGuid.PcdSataSize >> > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA009185 >> > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010554 >> > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010635 >> > + >> > +[Protocols] >> > + gEfiPciIoProtocolGuid >> > + >> > +[Depex] >> > + TRUE >> > diff --git a/Platform/NXP/NxpQoriqLs.dec b/Platform/NXP/NxpQoriqLs.dec >> > index bd4273f..65d659e 100644 >> > --- a/Platform/NXP/NxpQoriqLs.dec >> > +++ b/Platform/NXP/NxpQoriqLs.dec >> > @@ -52,8 +52,8 @@ >> > gNxpQoriqLsTokenSpaceGuid.PcdI2c1BaseAddr|0|UINT64|0x0000010E >> > gNxpQoriqLsTokenSpaceGuid.PcdI2c2BaseAddr|0|UINT64|0x0000010F >> > gNxpQoriqLsTokenSpaceGuid.PcdI2c3BaseAddr|0|UINT64|0x00000110 >> > - >> gNxpQoriqLsTokenSpaceGuid.PcdSataController1BaseAddress|0x0|UINT32| >> 0x00000111 >> > - >> gNxpQoriqLsTokenSpaceGuid.PcdSataController2BaseAddress|0x0|UINT32| >> 0x00000112 >> > + >> gNxpQoriqLsTokenSpaceGuid.PcdSataBaseAddr|0x0|UINT32|0x00000111 >> > + gNxpQoriqLsTokenSpaceGuid.PcdSataSize|0x0|UINT32|0x00000112 >> > >> gNxpQoriqLsTokenSpaceGuid.PcdQmanSwpBaseAddr|0x0500000000|UINT6 >> 4|0x00000113 >> > >> gNxpQoriqLsTokenSpaceGuid.PcdQmanSwpSize|0x0080000000|UINT64|0x0 >> 0000114 >> > >> gNxpQoriqLsTokenSpaceGuid.PcdBmanSwpBaseAddr|0x0508000000|UINT64 >> |0x00000115 >> > @@ -83,6 +83,8 @@ >> > >> gNxpQoriqLsTokenSpaceGuid.PcdCcsrBaseAddr|0x01000000|UINT64|0x0000 >> 012D >> > >> gNxpQoriqLsTokenSpaceGuid.PcdCcsrSize|0x0F000000|UINT64|0x0000012E >> > >> gNxpQoriqLsTokenSpaceGuid.PcdDramMemSize|0x0|UINT64|0x0000012F >> > + >> gNxpQoriqLsTokenSpaceGuid.PcdDcsrBaseAddr|0x0|UINT64|0x00000130 >> > + gNxpQoriqLsTokenSpaceGuid.PcdDcsrSize|0x0|UINT64|0x00000131 >> > >> > # >> > # DSPI Pcds >> > @@ -156,6 +158,9 @@ >> > >> gNxpQoriqLsTokenSpaceGuid.PcdErratumA008514|FALSE|BOOLEAN|0x0000 >> 0275 >> > >> gNxpQoriqLsTokenSpaceGuid.PcdErratumA008336|FALSE|BOOLEAN|0x0000 >> 0276 >> > >> gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA009185|FALSE|BOOLEAN|0x >> 00000277 >> > + >> gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010554|FALSE|BOOLEAN|0x >> 00000278 >> > + >> gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010635|FALSE|BOOLEAN|0x >> 00000279 >> > + >> gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA008402|FALSE|BOOLEAN|0x >> 0000027A >> > >> > # >> > # Test PCDs >> > @@ -249,3 +254,8 @@ >> > # >> > gNxpQoriqLsTokenSpaceGuid.PcdSysEepromI2cBus|0|UINT32|0x0000330 >> > >> gNxpQoriqLsTokenSpaceGuid.PcdSysEepromI2cAddress|0|UINT32|0x00003 >> 31 >> > + >> > + # >> > + # SATA Pcds >> > + # >> > + >> gNxpQoriqLsTokenSpaceGuid.PcdNumSataController|0x0|UINT32|0x000003 >> 40 >> > diff --git a/Platform/NXP/NxpQoriqLs.dsc b/Platform/NXP/NxpQoriqLs.dsc >> > index 10eff06..c3c0eb1 100644 >> > --- a/Platform/NXP/NxpQoriqLs.dsc >> > +++ b/Platform/NXP/NxpQoriqLs.dsc >> > @@ -99,6 +99,8 @@ >> > VarCheckLib|MdeModulePkg/Library/VarCheckLib/VarCheckLib.inf >> > NULL|MdePkg/Library/BaseStackCheckLib/BaseStackCheckLib.inf >> > >> CapsuleLib|MdeModulePkg/Library/DxeCapsuleLibNull/DxeCapsuleLibNull.i >> nf >> > + UefiScsiLib|MdePkg/Library/UefiScsiLib/UefiScsiLib.inf >> > + >> NonDiscoverableDeviceRegistrationLib|MdeModulePkg/Library/NonDiscove >> rableDeviceRegistrationLib/NonDiscoverableDeviceRegistrationLib.inf >> > >> > [LibraryClasses.common.SEC] >> > PcdLib|MdePkg/Library/BasePcdLibNull/BasePcdLibNull.inf >> > @@ -144,6 +146,7 @@ >> > >> SecurityManagementLib|MdeModulePkg/Library/DxeSecurityManagementL >> ib/DxeSecurityManagementLib.inf >> > >> PerformanceLib|MdeModulePkg/Library/DxePerformanceLib/DxePerforma >> nceLib.inf >> > MemoryInitPeiLib|ArmPlatformPkg/MemoryInitPei/MemoryInitPeiLib.inf >> > + >> NonDiscoverableDeviceRegistrationLib|MdeModulePkg/Library/NonDiscove >> rableDeviceRegistrationLib/NonDiscoverableDeviceRegistrationLib.inf >> > >> >> Why do you need to add this twice? > My fault, will update. >> >> > [LibraryClasses.common.UEFI_APPLICATION] >> > PcdLib|MdePkg/Library/DxePcdLib/DxePcdLib.inf >> > @@ -334,6 +337,16 @@ >> > } >> > >> > # >> > + # AHCI Support >> > + # >> > + MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf >> > + MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf >> > + MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf >> > + MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf >> > + MdeModulePkg/Bus/Pci/SataControllerDxe/SataControllerDxe.inf >> > + >> MdeModulePkg/Bus/Pci/NonDiscoverablePciDeviceDxe/NonDiscoverablePci >> DeviceDxe.inf >> > + >> > + # >> > # Architectural Protocols >> > # >> > ArmPkg/Drivers/CpuDxe/CpuDxe.inf >> > -- >> > 1.9.1 >> > _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
Enable support of SATA drives on ls1046 board.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com>
---
Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc | 8 ++++++++
Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf | 12 ++++++++++++
.../NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf | 2 ++
.../NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c | 8 ++++++++
Silicon/NXP/LS1046A/LS1046A.dsc | 5 +++++
5 files changed, 35 insertions(+)
diff --git a/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc b/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc
index 9d2482b..93fc848 100644
--- a/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc
+++ b/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc
@@ -63,6 +63,13 @@
#
gNxpQoriqLsTokenSpaceGuid.PcdI2cSlaveAddress|0x51
+ #
+ # Errata Pcds
+ #
+ gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA009185|TRUE
+ gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010554|TRUE
+ gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010635|TRUE
+
################################################################################
#
# Components Section - list of all EDK II Modules needed by this Platform
@@ -71,3 +78,4 @@
[Components.common]
edk2-platforms/Platform/NXP/Drivers/WatchDog/WatchDogDxe.inf
edk2-platforms/Platform/NXP/Drivers/I2cDxe/I2cDxe.inf
+ edk2-platforms/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf
diff --git a/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf b/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf
index 169cef0..23b46ad 100644
--- a/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf
+++ b/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf
@@ -142,6 +142,18 @@ READ_LOCK_STATUS = TRUE
INF MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf
+ #
+ # AHCI Support
+ #
+ INF MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf
+ INF MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf
+ INF MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf
+ INF MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf
+ INF MdeModulePkg/Bus/Pci/SataControllerDxe/SataControllerDxe.inf
+ INF MdeModulePkg/Bus/Pci/NonDiscoverablePciDeviceDxe/NonDiscoverablePciDeviceDxe.inf
+
+ INF edk2-platforms/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf
+
# FAT filesystem + GPT/MBR partitioning
#
INF MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf
diff --git a/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf b/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf
index 13a0ffb..002294e 100644
--- a/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf
+++ b/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf
@@ -68,3 +68,5 @@
gNxpQoriqLsTokenSpaceGuid.PcdDram3Size
gNxpQoriqLsTokenSpaceGuid.PcdQspiRegionBaseAddr
gNxpQoriqLsTokenSpaceGuid.PcdQspiRegionSize
+ gNxpQoriqLsTokenSpaceGuid.PcdDcsrBaseAddr
+ gNxpQoriqLsTokenSpaceGuid.PcdDcsrSize
diff --git a/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c b/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c
index 7022528..4b04ff5 100644
--- a/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c
+++ b/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c
@@ -49,6 +49,8 @@
#define DRAM3_SIZE FixedPcdGet64 (PcdDram3Size)
#define QSPI_REGION_BASE_ADDR FixedPcdGet64 (PcdQspiRegionBaseAddr)
#define QSPI_REGION_SIZE FixedPcdGet64 (PcdQspiRegionSize)
+#define DCSR_BASE_ADDR FixedPcdGet64 (PcdDcsrBaseAddr)
+#define DCSR_SIZE FixedPcdGet64 (PcdDcsrSize)
/**
@@ -169,6 +171,12 @@ ArmPlatformGetVirtualMemoryMap (
VirtualMemoryTable[Index].Length = QSPI_REGION_SIZE;
VirtualMemoryTable[Index].Attributes = ARM_MEMORY_REGION_ATTRIBUTE_UNCACHED_UNBUFFERED;
+ // DCSR Space
+ VirtualMemoryTable[++Index].PhysicalBase = DCSR_BASE_ADDR;
+ VirtualMemoryTable[Index].VirtualBase = DCSR_BASE_ADDR;
+ VirtualMemoryTable[Index].Length = DCSR_SIZE;
+ VirtualMemoryTable[Index].Attributes = ARM_MEMORY_REGION_ATTRIBUTE_DEVICE;
+
// End of Table
VirtualMemoryTable[++Index].PhysicalBase = 0;
VirtualMemoryTable[Index].VirtualBase = 0;
diff --git a/Silicon/NXP/LS1046A/LS1046A.dsc b/Silicon/NXP/LS1046A/LS1046A.dsc
index 4e7230a..33c57ad 100644
--- a/Silicon/NXP/LS1046A/LS1046A.dsc
+++ b/Silicon/NXP/LS1046A/LS1046A.dsc
@@ -74,5 +74,10 @@
gNxpQoriqLsTokenSpaceGuid.PcdI2c2BaseAddr|0x021A0000
gNxpQoriqLsTokenSpaceGuid.PcdI2c3BaseAddr|0x021B0000
gNxpQoriqLsTokenSpaceGuid.PcdNumI2cController|4
+ gNxpQoriqLsTokenSpaceGuid.PcdDcsrBaseAddr|0x20000000
+ gNxpQoriqLsTokenSpaceGuid.PcdDcsrSize|0x04000000
+ gNxpQoriqLsTokenSpaceGuid.PcdSataBaseAddr|0x3200000
+ gNxpQoriqLsTokenSpaceGuid.PcdSataSize|0x10000
+ gNxpQoriqLsTokenSpaceGuid.PcdNumSataController|0x1
##
--
1.9.1
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel
On 8 January 2018 at 15:55, Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> wrote: > Enable support of SATA drives on ls1046 board. > > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> > --- > Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc | 8 ++++++++ > Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf | 12 ++++++++++++ > .../NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf | 2 ++ > .../NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c | 8 ++++++++ > Silicon/NXP/LS1046A/LS1046A.dsc | 5 +++++ > 5 files changed, 35 insertions(+) > > diff --git a/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc b/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc > index 9d2482b..93fc848 100644 > --- a/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc > +++ b/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc > @@ -63,6 +63,13 @@ > # > gNxpQoriqLsTokenSpaceGuid.PcdI2cSlaveAddress|0x51 > > + # > + # Errata Pcds > + # > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA009185|TRUE > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010554|TRUE > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010635|TRUE > + > ################################################################################ > # > # Components Section - list of all EDK II Modules needed by this Platform > @@ -71,3 +78,4 @@ > [Components.common] > edk2-platforms/Platform/NXP/Drivers/WatchDog/WatchDogDxe.inf > edk2-platforms/Platform/NXP/Drivers/I2cDxe/I2cDxe.inf > + edk2-platforms/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf This looks wrong to me. Your .dsc/.fdf files should not contain these edk2-platforms prefixes. Instead, you should set your PACKAGES_PATH correctly to include your edk2-platforms directory. > diff --git a/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf b/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf > index 169cef0..23b46ad 100644 > --- a/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf > +++ b/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf > @@ -142,6 +142,18 @@ READ_LOCK_STATUS = TRUE > > INF MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntimeDxe.inf > > + # > + # AHCI Support > + # > + INF MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf > + INF MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf > + INF MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf > + INF MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf > + INF MdeModulePkg/Bus/Pci/SataControllerDxe/SataControllerDxe.inf > + INF MdeModulePkg/Bus/Pci/NonDiscoverablePciDeviceDxe/NonDiscoverablePciDeviceDxe.inf > + > + INF edk2-platforms/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf > + Same here > # FAT filesystem + GPT/MBR partitioning > # > INF MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf > diff --git a/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf b/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf > index 13a0ffb..002294e 100644 > --- a/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf > +++ b/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf > @@ -68,3 +68,5 @@ > gNxpQoriqLsTokenSpaceGuid.PcdDram3Size > gNxpQoriqLsTokenSpaceGuid.PcdQspiRegionBaseAddr > gNxpQoriqLsTokenSpaceGuid.PcdQspiRegionSize > + gNxpQoriqLsTokenSpaceGuid.PcdDcsrBaseAddr > + gNxpQoriqLsTokenSpaceGuid.PcdDcsrSize > diff --git a/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c b/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c > index 7022528..4b04ff5 100644 > --- a/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c > +++ b/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c > @@ -49,6 +49,8 @@ > #define DRAM3_SIZE FixedPcdGet64 (PcdDram3Size) > #define QSPI_REGION_BASE_ADDR FixedPcdGet64 (PcdQspiRegionBaseAddr) > #define QSPI_REGION_SIZE FixedPcdGet64 (PcdQspiRegionSize) > +#define DCSR_BASE_ADDR FixedPcdGet64 (PcdDcsrBaseAddr) > +#define DCSR_SIZE FixedPcdGet64 (PcdDcsrSize) > > > /** > @@ -169,6 +171,12 @@ ArmPlatformGetVirtualMemoryMap ( > VirtualMemoryTable[Index].Length = QSPI_REGION_SIZE; > VirtualMemoryTable[Index].Attributes = ARM_MEMORY_REGION_ATTRIBUTE_UNCACHED_UNBUFFERED; > > + // DCSR Space > + VirtualMemoryTable[++Index].PhysicalBase = DCSR_BASE_ADDR; > + VirtualMemoryTable[Index].VirtualBase = DCSR_BASE_ADDR; > + VirtualMemoryTable[Index].Length = DCSR_SIZE; > + VirtualMemoryTable[Index].Attributes = ARM_MEMORY_REGION_ATTRIBUTE_DEVICE; > + > // End of Table > VirtualMemoryTable[++Index].PhysicalBase = 0; > VirtualMemoryTable[Index].VirtualBase = 0; > diff --git a/Silicon/NXP/LS1046A/LS1046A.dsc b/Silicon/NXP/LS1046A/LS1046A.dsc > index 4e7230a..33c57ad 100644 > --- a/Silicon/NXP/LS1046A/LS1046A.dsc > +++ b/Silicon/NXP/LS1046A/LS1046A.dsc > @@ -74,5 +74,10 @@ > gNxpQoriqLsTokenSpaceGuid.PcdI2c2BaseAddr|0x021A0000 > gNxpQoriqLsTokenSpaceGuid.PcdI2c3BaseAddr|0x021B0000 > gNxpQoriqLsTokenSpaceGuid.PcdNumI2cController|4 > + gNxpQoriqLsTokenSpaceGuid.PcdDcsrBaseAddr|0x20000000 > + gNxpQoriqLsTokenSpaceGuid.PcdDcsrSize|0x04000000 > + gNxpQoriqLsTokenSpaceGuid.PcdSataBaseAddr|0x3200000 > + gNxpQoriqLsTokenSpaceGuid.PcdSataSize|0x10000 > + gNxpQoriqLsTokenSpaceGuid.PcdNumSataController|0x1 > > ## > -- > 1.9.1 > _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
> -----Original Message----- > From: Ard Biesheuvel [mailto:ard.biesheuvel@linaro.org] > Sent: Monday, January 08, 2018 8:42 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 v2 2/2] LS1046 : Enable support of SATA > controller > > On 8 January 2018 at 15:55, Meenakshi Aggarwal > <meenakshi.aggarwal@nxp.com> wrote: > > Enable support of SATA drives on ls1046 board. > > > > Contributed-under: TianoCore Contribution Agreement 1.1 > > Signed-off-by: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> > > --- > > Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc | 8 ++++++++ > > Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf | 12 > ++++++++++++ > > .../NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf | 2 ++ > > .../NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c | 8 > ++++++++ > > Silicon/NXP/LS1046A/LS1046A.dsc | 5 +++++ > > 5 files changed, 35 insertions(+) > > > > diff --git a/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc > b/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc > > index 9d2482b..93fc848 100644 > > --- a/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc > > +++ b/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc > > @@ -63,6 +63,13 @@ > > # > > gNxpQoriqLsTokenSpaceGuid.PcdI2cSlaveAddress|0x51 > > > > + # > > + # Errata Pcds > > + # > > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA009185|TRUE > > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010554|TRUE > > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010635|TRUE > > + > > > ########################################################## > ###################### > > # > > # Components Section - list of all EDK II Modules needed by this Platform > > @@ -71,3 +78,4 @@ > > [Components.common] > > edk2-platforms/Platform/NXP/Drivers/WatchDog/WatchDogDxe.inf > > edk2-platforms/Platform/NXP/Drivers/I2cDxe/I2cDxe.inf > > + edk2-platforms/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf > > This looks wrong to me. Your .dsc/.fdf files should not contain these > edk2-platforms prefixes. Instead, you should set your PACKAGES_PATH > correctly to include your edk2-platforms directory. > OK, We will remove this from .dsc/.fdf files. My concern is as there are already a lot of patches are under review so it will be Better if review gets completed once, then we will share the updated in next revision of patch As this needs to be change in multiple patches. There is one more comment from you on keeping shred Drivers and Library in Silicon/NXP directory. In this case also, this will need a rework in all patches sent till date. So once review comments been recieved we will made the changes in next revision of patch. > > diff --git a/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf > b/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf > > index 169cef0..23b46ad 100644 > > --- a/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf > > +++ b/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf > > @@ -142,6 +142,18 @@ READ_LOCK_STATUS = TRUE > > > > INF > MdeModulePkg/Universal/Variable/EmuRuntimeDxe/EmuVariableRuntime > Dxe.inf > > > > + # > > + # AHCI Support > > + # > > + INF MdeModulePkg/Bus/Ata/AtaAtapiPassThru/AtaAtapiPassThru.inf > > + INF MdeModulePkg/Bus/Ata/AtaBusDxe/AtaBusDxe.inf > > + INF MdeModulePkg/Bus/Scsi/ScsiBusDxe/ScsiBusDxe.inf > > + INF MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ScsiDiskDxe.inf > > + INF MdeModulePkg/Bus/Pci/SataControllerDxe/SataControllerDxe.inf > > + INF > MdeModulePkg/Bus/Pci/NonDiscoverablePciDeviceDxe/NonDiscoverablePci > DeviceDxe.inf > > + > > + INF edk2-platforms/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf > > + > > Same here > > > # FAT filesystem + GPT/MBR partitioning > > # > > INF > MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/EnglishDxe.inf > > diff --git > a/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf > b/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf > > index 13a0ffb..002294e 100644 > > --- > a/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf > > +++ > b/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf > > @@ -68,3 +68,5 @@ > > gNxpQoriqLsTokenSpaceGuid.PcdDram3Size > > gNxpQoriqLsTokenSpaceGuid.PcdQspiRegionBaseAddr > > gNxpQoriqLsTokenSpaceGuid.PcdQspiRegionSize > > + gNxpQoriqLsTokenSpaceGuid.PcdDcsrBaseAddr > > + gNxpQoriqLsTokenSpaceGuid.PcdDcsrSize > > diff --git > a/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c > b/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c > > index 7022528..4b04ff5 100644 > > --- a/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c > > +++ > b/Platform/NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c > > @@ -49,6 +49,8 @@ > > #define DRAM3_SIZE FixedPcdGet64 (PcdDram3Size) > > #define QSPI_REGION_BASE_ADDR FixedPcdGet64 > (PcdQspiRegionBaseAddr) > > #define QSPI_REGION_SIZE FixedPcdGet64 (PcdQspiRegionSize) > > +#define DCSR_BASE_ADDR FixedPcdGet64 (PcdDcsrBaseAddr) > > +#define DCSR_SIZE FixedPcdGet64 (PcdDcsrSize) > > > > > > /** > > @@ -169,6 +171,12 @@ ArmPlatformGetVirtualMemoryMap ( > > VirtualMemoryTable[Index].Length = QSPI_REGION_SIZE; > > VirtualMemoryTable[Index].Attributes = > ARM_MEMORY_REGION_ATTRIBUTE_UNCACHED_UNBUFFERED; > > > > + // DCSR Space > > + VirtualMemoryTable[++Index].PhysicalBase = DCSR_BASE_ADDR; > > + VirtualMemoryTable[Index].VirtualBase = DCSR_BASE_ADDR; > > + VirtualMemoryTable[Index].Length = DCSR_SIZE; > > + VirtualMemoryTable[Index].Attributes = > ARM_MEMORY_REGION_ATTRIBUTE_DEVICE; > > + > > // End of Table > > VirtualMemoryTable[++Index].PhysicalBase = 0; > > VirtualMemoryTable[Index].VirtualBase = 0; > > diff --git a/Silicon/NXP/LS1046A/LS1046A.dsc > b/Silicon/NXP/LS1046A/LS1046A.dsc > > index 4e7230a..33c57ad 100644 > > --- a/Silicon/NXP/LS1046A/LS1046A.dsc > > +++ b/Silicon/NXP/LS1046A/LS1046A.dsc > > @@ -74,5 +74,10 @@ > > gNxpQoriqLsTokenSpaceGuid.PcdI2c2BaseAddr|0x021A0000 > > gNxpQoriqLsTokenSpaceGuid.PcdI2c3BaseAddr|0x021B0000 > > gNxpQoriqLsTokenSpaceGuid.PcdNumI2cController|4 > > + gNxpQoriqLsTokenSpaceGuid.PcdDcsrBaseAddr|0x20000000 > > + gNxpQoriqLsTokenSpaceGuid.PcdDcsrSize|0x04000000 > > + gNxpQoriqLsTokenSpaceGuid.PcdSataBaseAddr|0x3200000 > > + gNxpQoriqLsTokenSpaceGuid.PcdSataSize|0x10000 > > + gNxpQoriqLsTokenSpaceGuid.PcdNumSataController|0x1 > > > > ## > > -- > > 1.9.1 > > _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
On 9 January 2018 at 04:37, Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> wrote: > > >> -----Original Message----- >> From: Ard Biesheuvel [mailto:ard.biesheuvel@linaro.org] >> Sent: Monday, January 08, 2018 8:42 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 v2 2/2] LS1046 : Enable support of SATA >> controller >> >> On 8 January 2018 at 15:55, Meenakshi Aggarwal >> <meenakshi.aggarwal@nxp.com> wrote: >> > Enable support of SATA drives on ls1046 board. >> > >> > Contributed-under: TianoCore Contribution Agreement 1.1 >> > Signed-off-by: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> >> > --- >> > Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc | 8 ++++++++ >> > Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.fdf | 12 >> ++++++++++++ >> > .../NXP/LS1046aRdbPkg/Library/PlatformLib/ArmPlatformLib.inf | 2 ++ >> > .../NXP/LS1046aRdbPkg/Library/PlatformLib/NxpQoriqLsMem.c | 8 >> ++++++++ >> > Silicon/NXP/LS1046A/LS1046A.dsc | 5 +++++ >> > 5 files changed, 35 insertions(+) >> > >> > diff --git a/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc >> b/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc >> > index 9d2482b..93fc848 100644 >> > --- a/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc >> > +++ b/Platform/NXP/LS1046aRdbPkg/LS1046aRdbPkg.dsc >> > @@ -63,6 +63,13 @@ >> > # >> > gNxpQoriqLsTokenSpaceGuid.PcdI2cSlaveAddress|0x51 >> > >> > + # >> > + # Errata Pcds >> > + # >> > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA009185|TRUE >> > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010554|TRUE >> > + gNxpQoriqLsTokenSpaceGuid.PcdSataErratumA010635|TRUE >> > + >> > >> ########################################################## >> ###################### >> > # >> > # Components Section - list of all EDK II Modules needed by this Platform >> > @@ -71,3 +78,4 @@ >> > [Components.common] >> > edk2-platforms/Platform/NXP/Drivers/WatchDog/WatchDogDxe.inf >> > edk2-platforms/Platform/NXP/Drivers/I2cDxe/I2cDxe.inf >> > + edk2-platforms/Platform/NXP/Drivers/SataInitDxe/SataInitDxe.inf >> >> This looks wrong to me. Your .dsc/.fdf files should not contain these >> edk2-platforms prefixes. Instead, you should set your PACKAGES_PATH >> correctly to include your edk2-platforms directory. >> > OK, We will remove this from .dsc/.fdf files. > My concern is as there are already a lot of patches are under review so it will be > Better if review gets completed once, then we will share the updated in next revision of patch > As this needs to be change in multiple patches. > > There is one more comment from you on keeping shred Drivers and Library in Silicon/NXP directory. > In this case also, this will need a rework in all patches sent till date. > > So once review comments been recieved we will made the changes in next revision of patch. > I have a better idea. Let's disregard all current submissions in flight, and repost the next one as a single series so that I don't have to keep track of all the different ones. _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel
© 2016 - 2025 Red Hat, Inc.