public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: Chris Co <Christopher.Co@microsoft.com>
To: "edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>,
	Leif Lindholm <leif.lindholm@linaro.org>,
	Michael D Kinney <michael.d.kinney@intel.com>
Subject: [PATCH edk2-platforms 11/13] Silicon/NXP: Add i.MX6 PCIe DXE driver
Date: Fri, 20 Jul 2018 06:34:00 +0000	[thread overview]
Message-ID: <20180720063328.26856-12-christopher.co@microsoft.com> (raw)
In-Reply-To: <20180720063328.26856-1-christopher.co@microsoft.com>

This adds DXE driver support for PCIe on NXP i.MX6 SoCs.

Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Christopher Co <christopher.co@microsoft.com>
Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Leif Lindholm <leif.lindholm@linaro.org>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
---
 Silicon/NXP/iMX6Pkg/Drivers/PciExpress/iMX6PciExpress.c   | 1219 ++++++++++++++++++++
 Silicon/NXP/iMX6Pkg/Drivers/PciExpress/iMX6PciExpress.h   |  163 +++
 Silicon/NXP/iMX6Pkg/Drivers/PciExpress/iMX6PciExpress.inf |   66 ++
 3 files changed, 1448 insertions(+)

diff --git a/Silicon/NXP/iMX6Pkg/Drivers/PciExpress/iMX6PciExpress.c b/Silicon/NXP/iMX6Pkg/Drivers/PciExpress/iMX6PciExpress.c
new file mode 100644
index 000000000000..98f9cc034981
--- /dev/null
+++ b/Silicon/NXP/iMX6Pkg/Drivers/PciExpress/iMX6PciExpress.c
@@ -0,0 +1,1219 @@
+/** @file
+*
+*  Copyright (c) Microsoft Corporation. All rights reserved.
+*  Copyright (c) 2005 - 2016, Intel Corporation. All rights reserved.<BR>
+*  (C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>
+*
+*  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 at
+*  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 <Library/IoLib.h>
+#include <Library/DebugLib.h>
+#include <Library/UefiBootServicesTableLib.h>
+#include <Library/BaseMemoryLib.h>
+#include <Library/MemoryAllocationLib.h>
+#include <IndustryStandard/Pci.h>
+
+#include <Protocol/PciIo.h>
+#include <Protocol/PciRootBridgeIo.h>
+
+#include <iMX6.h>
+#include <iMX6ClkPwr.h>
+#include <iMX6IoMux.h>
+
+#include "iMX6PciExpress.h"
+
+PCI_RESOURCE PCIeResource[] =
+{
+    //
+    // Memory resource
+    //
+    {
+        PCIE_MEMORY_SPACE_BASE,
+        PCIE_MEMORY_SPACE_SIZE,
+        PCIE_MEMORY_SPACE_BASE
+    },
+};
+
+//
+// PCIe read and write function
+//
+EFI_STATUS PCIePciWrite (
+    IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
+    IN UINTN Address,
+    IN UINTN Count,
+    IN VOID *Buffer
+    );
+
+EFI_STATUS PCIePciRead (
+    IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
+    IN UINTN Address,
+    IN UINTN Count,
+    IN VOID *Buffer
+    );
+
+//
+// Internal address translation unit configuration table. Map the PCIe device
+// configuration baesd on configuration. PCI IO space is not supported on
+// Windows. Memory space segment is just mapped back to the same address.
+//
+// The following table is used to setup basic translation setting on various
+// ATU (Address Translation Unit). The ATU is responsible to retranslate
+// address for inbound and outbound message.
+//
+// Address match mode address translation is based on the following formula :
+//     Address = Address - Base Address + Target Address
+//
+// There really isnt a need to retranslate the address for iMX6 however proceed
+// the program the ATU to for configuration and memory message.
+//
+
+IATU_SETTINGS iMX6iATUSettings[] =
+{
+    //
+    // Configuration message
+    //
+    {
+        OUTBOUND,
+        0,
+        CFG0_TYPE,
+        PCIE_DEVICE_CONFIG_BASE_REG,
+        0,
+        PCIE_DEVICE_CONFIG_BASE_REG + PCIE_DEVICE_CONFIG_SIZE - 1,
+        PCIE_DEVICE_CONFIG_BASE_REG,
+        0,
+        REGION_ENABLE,
+    },
+
+    //
+    // Memory message
+    //
+    {
+        OUTBOUND,
+        2,
+        MEMORY_TYPE,
+        PCIE_MEMORY_SPACE_BASE,
+        0,
+        PCIE_MEMORY_SPACE_BASE + PCIE_MEMORY_SPACE_SIZE - 1,
+        PCIE_MEMORY_SPACE_BASE,
+        0,
+        REGION_ENABLE,
+    },
+};
+
+VOID PCIeSetupiATU (
+    IN IATU_SETTINGS* SettingsPtr
+    )
+{
+    volatile CSP_PCIE_PL_REGS* portLogicRegsPtr =
+        (CSP_PCIE_PL_REGS*)PCIE_CTRL_PORT_LOGIG_BASE_REG;
+
+    ASSERT(SettingsPtr->RegionIndex < MAX_iATU_REGION);
+
+    //
+    // Programs specific ATU region. Refer to the comment above
+    // iMX6iATUSettings table for more detail.
+    //
+    MmioWrite32(
+        (UINTN)&portLogicRegsPtr->PCIE_PL_iATUVR,
+        (SettingsPtr->RegionDirection << 31 | SettingsPtr->RegionIndex));
+
+    MmioWrite32(
+        (UINTN)&portLogicRegsPtr->PCIE_PL_iATURC2,
+        REGION_DISABLE);
+
+    MmioWrite32(
+        (UINTN)&portLogicRegsPtr->PCIE_PL_iATURLBA,
+        SettingsPtr->LowerBaseAddr);
+
+    MmioWrite32(
+        (UINTN)&portLogicRegsPtr->PCIE_PL_iATURUBA,
+        SettingsPtr->UpperBaseAddr);
+
+    MmioWrite32(
+        (UINTN)&portLogicRegsPtr->PCIE_PL_iATURLA,
+        SettingsPtr->LimitAddr);
+
+    MmioWrite32(
+        (UINTN)&portLogicRegsPtr->PCIE_PL_iATURLTA,
+        SettingsPtr->LowerTargetAddr);
+
+    MmioWrite32(
+        (UINTN)&portLogicRegsPtr->PCIE_PL_iATURUTA,
+        SettingsPtr->UpperTargetAddr);
+
+    MmioWrite32(
+        (UINTN)&portLogicRegsPtr->PCIE_PL_iATURC1,
+        SettingsPtr->Type);
+
+    MmioWrite32(
+        (UINTN)&portLogicRegsPtr->PCIE_PL_iATURC2,
+        SettingsPtr->State);
+}
+
+VOID PCIeSetupiATUSettings (
+    VOID
+    )
+{
+    UINT32 i;
+
+    //
+    // Initialize internal address translation unit based on settings specify
+    // in iMX6iATUSettings table.
+    //
+    for (i = 0; i < ARRAYSIZE (iMX6iATUSettings); ++i) {
+        PCIeSetupiATU(&iMX6iATUSettings[i]);
+    }
+
+    return;
+}
+
+EFI_STATUS PCIeSetPhyState (
+    IN BOOLEAN State
+    )
+{
+    IMX_IOMUXC_GPR1_REG gpr1Reg;
+    volatile IMX_IOMUXC_GPR_REGISTERS* ioMuxcGprRegisters =
+        (IMX_IOMUXC_GPR_REGISTERS*)IOMUXC_GPR_BASE_ADDRESS;
+
+    gpr1Reg.AsUint32 = MmioRead32((UINTN)&ioMuxcGprRegisters->GPR1);
+
+    if (State == TRUE) {
+        gpr1Reg.REF_SSP_EN = 1;     // Enable PCIe PHY
+        gpr1Reg.TEST_POWERDOWN = 0; // Power down is not requested
+    } else {
+        gpr1Reg.REF_SSP_EN = 0;     // Disable PCIe PHY
+        gpr1Reg.TEST_POWERDOWN = 1; // Power down is requested
+    }
+
+    MmioWrite32((UINTN)&ioMuxcGprRegisters->GPR1, gpr1Reg.AsUint32);
+
+    return EFI_SUCCESS;
+}
+
+EFI_STATUS PCIeSetupInitSetting (
+    VOID
+    )
+{
+    EFI_STATUS status;
+    IMX_IOMUXC_GPR1_REG gpr1Reg;
+    volatile IMX_IOMUXC_GPR_REGISTERS* ioMuxcGprRegisters =
+        (IMX_IOMUXC_GPR_REGISTERS*)IOMUXC_GPR_BASE_ADDRESS;
+
+    //
+    // If PCIe PHY is already enabled we are in an unexpected state, just exit
+    // and assume a bootloader has already setup PCIe and assigned resources.
+    //
+    gpr1Reg.AsUint32 = MmioRead32((UINTN)&ioMuxcGprRegisters->GPR1);
+
+    if (gpr1Reg.REF_SSP_EN == 1) {
+        status = EFI_DEVICE_ERROR;
+        goto Exit;
+    }
+
+    //
+    // Disable the PHY first, without this PCI link randomly does not come up
+    //
+    status = PCIeSetPhyState(FALSE);
+    if (EFI_ERROR(status)) {
+        PCIE_ERROR("Failed to disable PCIe PHY\n");
+        goto Exit;
+    }
+
+    //
+    // First configure PCIe and PCIe PHY default setting
+    //
+    {
+        IMX_IOMUXC_GPR12_REG gpr12Reg;
+        IMX_IOMUXC_GPR8_REG gpr8Reg;
+        volatile IMX_IOMUXC_GPR_REGISTERS* ioMuxcGprRegisters =
+            (IMX_IOMUXC_GPR_REGISTERS*)IOMUXC_GPR_BASE_ADDRESS;
+
+        gpr12Reg.AsUint32 = MmioRead32((UINTN)&ioMuxcGprRegisters->GPR12);
+
+        gpr12Reg.APP_LTSSM_ENABLE = 0;          // Set application not ready
+        gpr12Reg.DIA_STATUS_BUS_SELECT = 0xB;   // Debug functionality
+        gpr12Reg.DEVICE_TYPE = 0x4;             // Set to RC mode
+        gpr12Reg.LOS_LEVEL = 0x9;               // Set to 0x9 per reference manual
+
+        MmioWrite32((UINTN)&ioMuxcGprRegisters->GPR12, gpr12Reg.AsUint32);
+
+        // Gen1 | Gen2 3p5 | Gen2 6 | Swing full 127 | Swing low 127
+        gpr8Reg.PCS_TX_DEEMPH_GEN1 = 0;
+        gpr8Reg.PCS_TX_DEEMPH_GEN2_3P5DB = 0;
+        gpr8Reg.PCS_TX_DEEMPH_GEN2_6DB = 20;
+        gpr8Reg.PCS_TX_SWING_FULL = 127;
+        gpr8Reg.PCS_TX_SWING_LOW = 127;
+
+        MmioWrite32((UINTN)&ioMuxcGprRegisters->GPR8, gpr8Reg.AsUint32);
+    }
+
+    status = EFI_SUCCESS;
+
+Exit:
+    return status;
+}
+
+EFI_STATUS PCIeSetClockGate (
+    IN IMX_CLOCK_GATE_STATE State
+    )
+{
+    ImxClkPwrSetClockGate(IMX_PCIE_ROOT_ENABLE, State);
+    return EFI_SUCCESS;
+}
+
+EFI_STATUS PCIeVerifyClocks (
+    VOID
+    )
+{
+    IMX_CCM_ANALOG_PLL_ENET_REG ccmAnalogPllReg;
+    volatile IMX_CCM_ANALOG_REGISTERS *ccmAnalogRegisters =
+        (IMX_CCM_ANALOG_REGISTERS *)IMX_CCM_ANALOG_BASE;
+
+    ccmAnalogPllReg.AsUint32 = MmioRead32((UINTN)&ccmAnalogRegisters->PLL_ENET);
+
+    if ((ccmAnalogPllReg.POWERDOWN == 0) &&
+        (ccmAnalogPllReg.BYPASS == 0) &&
+        (ccmAnalogPllReg.ENABLE_125M == 1) &&
+        (ccmAnalogPllReg.LOCK == 1)) {
+        return EFI_SUCCESS;
+    }
+
+    return EFI_DEVICE_ERROR;
+}
+
+VOID PCIeEnablePerstLine (
+    VOID
+    )
+{
+    //
+    // Enable board specific PERST line if one is defined
+    //
+    if (FixedPcdGet32(PcdPcieResetGpio)) {
+        ImxGpioWrite(
+            FixedPcdGet32(PcdPcieResetGpioBankNumber),
+            FixedPcdGet32(PcdPcieResetGpioIoNumber),
+            IMX_GPIO_HIGH);
+        gBS->Stall(20000);
+    }
+}
+
+EFI_STATUS PCIeSetupPCIBridge (
+    VOID
+    )
+{
+    UINT8 classCode[0];
+
+    //
+    // Setup the bridge class
+    //
+    classCode[0] = PCI_IF_BRIDGE_P2P;
+    classCode[1] = PCI_CLASS_BRIDGE_P2P;
+    classCode[2] = PCI_CLASS_BRIDGE;
+
+    return PCIePciWrite(
+        EfiPciIoWidthUint8,
+        PCIE_HOST_CONFIG_BASE_REG + PCI_CLASSCODE_OFFSET,
+        3,
+        classCode);
+}
+
+EFI_STATUS PCIeSetLinkStatus (
+    IN BOOLEAN State
+    )
+{
+    IMX_IOMUXC_GPR12_REG gpr12Reg;
+    volatile IMX_IOMUXC_GPR_REGISTERS* ioMuxcGprRegisters =
+        (IMX_IOMUXC_GPR_REGISTERS*)IOMUXC_GPR_BASE_ADDRESS;
+
+    gpr12Reg.AsUint32 = MmioRead32((UINTN)&ioMuxcGprRegisters->GPR12);
+
+    if (State == TRUE) {
+        gpr12Reg.APP_LTSSM_ENABLE = 1; // Enable link
+    } else {
+        gpr12Reg.APP_LTSSM_ENABLE = 0; // Disable link
+    }
+
+    MmioWrite32((UINTN)&ioMuxcGprRegisters->GPR12, gpr12Reg.AsUint32);
+
+    return EFI_SUCCESS;
+}
+
+BOOLEAN PCIeIsLinkUp (
+    VOID
+    )
+{
+    UINT32 debug1Reg;
+    volatile CSP_PCIE_PL_REGS* portLogicRegsPtr =
+        (CSP_PCIE_PL_REGS*)PCIE_CTRL_PORT_LOGIG_BASE_REG;
+
+    debug1Reg = MmioRead32((UINTN)&portLogicRegsPtr->PCIE_PL_DEBUG1);
+
+    return (debug1Reg & PCIE_PL_DEBUG1_PHY_LINK_UP) ? TRUE : FALSE;
+}
+
+EFI_STATUS PCIeWaitForLink (
+    VOID
+    )
+{
+    UINT32 counter = 200;
+    BOOLEAN linkStatus;
+
+    linkStatus = PCIeIsLinkUp();
+
+    //
+    // To optimize boot time, consider lowering timeout value
+    //
+    while (linkStatus == FALSE && counter > 0) {
+        --counter;
+        gBS->Stall(1000);
+        linkStatus = PCIeIsLinkUp();
+    }
+
+    return (linkStatus) ? EFI_SUCCESS : EFI_DEVICE_ERROR;
+}
+
+EFI_STATUS PCIeGetAlignAddress (
+    IN UINTN Address,
+    IN UINTN AlignmentSize,
+    OUT UINTN *AlignAddress
+    )
+{
+    EFI_STATUS status;
+
+    *AlignAddress = 0;
+
+    if ((AlignmentSize & (AlignmentSize - 1)) != 0) {
+        status = EFI_INVALID_PARAMETER;
+        goto Exit;
+    }
+
+    //
+    // Even though we do not add a (AlignmentSize + 1) to the incoming address
+    // we would still align to the upper boundary as bit [19:00] is assumed to
+    // be 0x000FFFFF per PCIe spec.
+    //
+    *AlignAddress = (Address) & ~(AlignmentSize - 1);
+
+    status = EFI_SUCCESS;
+Exit:
+    return status;
+}
+
+EFI_STATUS PCIeGetPCIConfigAddress (
+    IN UINTN BusNumber,
+    IN UINTN DevNumber,
+    IN UINTN FuncNumber,
+    IN UINTN Register,
+    OUT UINTN* Address
+    )
+{
+    UINT64 offset;
+    EFI_STATUS status;
+
+    //
+    // For now only support bus 0 and bus 1 with one device in each bus
+    //
+    if (BusNumber == 0 && DevNumber == 0) {
+
+        offset = EFI_PCI_ADDRESS (BusNumber, DevNumber, FuncNumber, Register);
+        *Address = PCIE_HOST_CONFIG_BASE_REG + offset;
+
+        status = EFI_SUCCESS;
+
+    } else if (BusNumber == 1 && DevNumber == 0) {
+
+        offset = EFI_PCI_ADDRESS (BusNumber, DevNumber, FuncNumber, Register);
+        offset -= EFI_PCI_ADDRESS (1, 0, FuncNumber, 0);
+        *Address = PCIE_DEVICE_CONFIG_BASE_REG + offset;
+
+        status = EFI_SUCCESS;
+
+    } else {
+        *Address = 0;
+        status = EFI_INVALID_PARAMETER;
+    }
+
+    return status;
+}
+
+EFI_STATUS PCIePciRead (
+    IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
+    IN UINTN Address,
+    IN UINTN Count,
+    OUT VOID *Buffer
+    )
+{
+    PTR dest;
+    UINTN stride;
+    EFI_STATUS status;
+
+    dest.ui = (UINTN)Buffer;
+    Width = (EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH)(Width & 0x03);
+    stride = (UINTN)1 << Width;
+
+    //
+    // Adopted from PciRootBridgeIoMemRW
+    //
+    switch (Width) {
+    case EfiPciWidthUint8:
+        for (; Count > 0; --Count, dest.buf += stride, Address += stride) {
+            *dest.ui8 = MmioRead8(Address);
+        }
+        status = EFI_SUCCESS;
+        break;
+    case EfiPciWidthUint16:
+        for (; Count > 0; --Count, dest.buf += stride, Address += stride) {
+            *dest.ui16 = MmioRead16(Address);
+        }
+        status = EFI_SUCCESS;
+        break;
+    case EfiPciWidthUint32:
+        for (; Count > 0; --Count, dest.buf += stride, Address += stride) {
+            *dest.ui32 = MmioRead32(Address);
+        }
+        status = EFI_SUCCESS;
+        break;
+    default:
+        status = EFI_INVALID_PARAMETER;
+        goto Exit;
+    }
+
+Exit:
+    return status;
+}
+
+EFI_STATUS PCIePciWrite (
+    IN EFI_PCI_IO_PROTOCOL_WIDTH Width,
+    IN UINTN Address,
+    IN UINTN Count,
+    IN VOID *Buffer
+    )
+{
+    PTR src;
+    UINTN stride;
+    EFI_STATUS status;
+
+    src.ui = (UINTN)Buffer;
+    Width = (EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL_WIDTH)(Width & 0x03);
+    stride = (UINTN)1 << Width;
+
+    //
+    // Adopted from PciRootBridgeIoMemRW
+    //
+    switch (Width) {
+    case EfiPciWidthUint8:
+        for (; Count > 0; --Count, src.buf += stride, Address += stride) {
+            MmioWrite8(Address, *src.ui8);
+        }
+        status = EFI_SUCCESS;
+        break;
+    case EfiPciWidthUint16:
+        for (; Count > 0; --Count, src.buf += stride, Address += stride) {
+            MmioWrite16(Address, *src.ui16);
+        }
+        status = EFI_SUCCESS;
+        break;
+    case EfiPciWidthUint32:
+        for (; Count > 0; --Count, src.buf += stride, Address += stride) {
+            MmioWrite32(Address, *src.ui32);
+        }
+        status = EFI_SUCCESS;
+        break;
+    default:
+        status = EFI_INVALID_PARAMETER;
+        goto Exit;
+    }
+
+Exit:
+    return status;
+}
+
+EFI_STATUS PCIeDevicePresent (
+    OUT PCI_TYPE00* PciDevice,
+    IN UINTN Bus,
+    IN UINTN Device,
+    IN UINTN Func
+    )
+{
+    UINTN address;
+    EFI_STATUS status;
+
+    //
+    // Create PCI address map in terms of Bus, Device, and Func
+    //
+    status = PCIeGetPCIConfigAddress(Bus, Device, Func, 0, &address);
+    if (EFI_ERROR(status)) {
+        status = EFI_NOT_FOUND;
+        goto Exit;
+    }
+
+    //
+    // Read the Vendor ID register
+    //
+    status = PCIePciRead(
+        EfiPciWidthUint32,
+        address,
+        1,
+        PciDevice);
+    if (!EFI_ERROR(status) && (PciDevice->Hdr).VendorId != 0xffff) {
+        //
+        // Read the entire config header for the device
+        //
+        status = PCIePciRead(
+            EfiPciWidthUint32,
+            address,
+            sizeof (PCI_TYPE00) / sizeof (UINT32),
+            PciDevice);
+        if (EFI_ERROR(status)) {
+            PCIE_ERROR("Failed to read PCI config space\n");
+        }
+    } else {
+        PCIE_INFO("No PCIe device found\n");
+        status = EFI_NOT_FOUND;
+    }
+
+Exit:
+    return status;
+}
+
+EFI_STATUS PCIeGetMemoryBarResource (
+    IN UINTN BarSize,
+    IN UINTN* BarAddress,
+    IN BOOLEAN IsBridgeDevice
+    )
+{
+    EFI_STATUS status;
+
+    if (BarSize > PCIeResource->Size) {
+        PCIE_ERROR("Insufficient PCIe memory for 0x%08x (Current size 0x%08x)\n",
+            BarSize,
+            PCIeResource->Size);
+        status = EFI_OUT_OF_RESOURCES;
+        goto Exit;
+    }
+
+    *BarAddress = PCIeResource->Curr;
+
+    if (IsBridgeDevice == FALSE) {
+        PCIeResource->Curr += BarSize;
+        PCIeResource->Size -= BarSize;
+
+        PCIE_INFO("Allocating memory resource 0x%08x size 0x%08x\n",
+            *BarAddress,
+            BarSize);
+    }
+
+    PCIE_INFO("Current memory resource 0x%08x Size 0x%08x\n",
+        PCIeResource->Curr,
+        PCIeResource->Size);
+
+    status = EFI_SUCCESS;
+
+Exit:
+    return status;
+}
+
+EFI_STATUS PCIeParseAssignBar (
+    IN UINTN BaseAddress,
+    IN UINTN MaxBarIndex,
+    IN BOOLEAN IsBridgeDevice
+    )
+{
+    EFI_STATUS status;
+    UINTN barIndex, barOffset;
+    UINT32 allOne32 = 0xFFFFFFFF;
+
+    for (barOffset = 0x10, barIndex = 0;
+         barOffset <= 0x24 && barIndex < MaxBarIndex;
+         barOffset += sizeof (UINT32), ++barIndex) {
+
+        UINTN originalvalue, responseValue, barSize, resourceAddress;
+
+        status = PCIePciRead(
+            EfiPciWidthUint32,
+            BaseAddress + barOffset,
+            1,
+            &originalvalue);
+        ASSERT_EFI_ERROR(status);
+
+        status = PCIePciWrite(
+            EfiPciIoWidthUint32,
+            BaseAddress + barOffset,
+            1,
+            &allOne32);
+        ASSERT_EFI_ERROR(status);
+
+        status = PCIePciRead(
+            EfiPciWidthUint32,
+            BaseAddress + barOffset,
+            1,
+            &responseValue);
+        ASSERT_EFI_ERROR(status);
+
+        //
+        // No support for IO memory
+        // Refer : PCI Local Bus Specification (6.2.5.1)
+        //
+        if ((responseValue & 0x01) == 0x01) {
+            status = PCIePciWrite(
+                EfiPciIoWidthUint32,
+                BaseAddress + barOffset,
+                1,
+                &originalvalue);
+            ASSERT_EFI_ERROR(status);
+            continue;
+        }
+
+        //
+        // No support for prefetch memory
+        //
+        if (((responseValue & 0x01) == 0x00) &&
+            ((responseValue & 0x08) == 0x08)) {
+            status = PCIePciWrite(
+                EfiPciIoWidthUint32,
+                BaseAddress + barOffset,
+                1,
+                &originalvalue);
+            ASSERT_EFI_ERROR(status);
+            continue;
+        }
+
+        barSize = (~(responseValue & 0xFFFFFFF0)) + 1;
+
+        status = PCIeGetMemoryBarResource(
+            barSize,
+            &resourceAddress,
+            IsBridgeDevice);
+        if (EFI_ERROR(status)) {
+            PCIE_ERROR("Failed to acquire BAR resource\n");
+            goto Exit;
+        }
+
+        status = PCIePciWrite(
+            EfiPciIoWidthUint32,
+            BaseAddress + barOffset,
+            1,
+            &resourceAddress);
+        ASSERT_EFI_ERROR(status);
+
+        //
+        // The subsequent BAR is the upper 32 bit address
+        //
+        if (((responseValue & 0x04) == 0x04) &&
+            (barIndex + 1) < MaxBarIndex) {
+
+            UINT32 allZero = 0;
+            barOffset += sizeof (UINT32);
+            ++barIndex;
+
+            status = PCIePciWrite(
+                EfiPciIoWidthUint32,
+                BaseAddress + barOffset,
+                1,
+                &allZero);
+            ASSERT_EFI_ERROR(status);
+
+            continue;
+        }
+    }
+
+    status = EFI_SUCCESS;
+
+Exit:
+    return status;
+}
+
+EFI_STATUS PCIeConfigureDevice (
+    IN PCI_TYPE00 pciDevice,
+    IN UINTN BusNumber,
+    IN UINTN DevNumber,
+    IN UINTN FuncNumber
+    )
+{
+    EFI_STATUS status;
+    UINTN baseAddress;
+
+    PCIE_INFO(
+        "Configuring B:%02d D:%02d F:%02d\n",
+        BusNumber,
+        DevNumber,
+        FuncNumber);
+
+    status = PCIeGetPCIConfigAddress(
+        BusNumber,
+        DevNumber,
+        FuncNumber,
+        0,
+        &baseAddress);
+    ASSERT_EFI_ERROR(status);
+
+    //
+    // Use a fixed cacheline size
+    //
+    {
+        UINT8 fixedCacheLineSize = 0x10;
+
+        status = PCIePciWrite(
+            EfiPciIoWidthUint8,
+            baseAddress + PCI_CACHELINE_SIZE_OFFSET,
+            1,
+            &fixedCacheLineSize);
+        ASSERT_EFI_ERROR(status);
+    }
+
+    if (IS_PCI_BRIDGE (&pciDevice)) {
+        UINT32 allZero = 0;
+
+        PCIE_INFO("PCI Bridge\n");
+
+        //
+        // PCIe initialization sequence, referenced from
+        // InitializePpb in MdeModulePkg/Bus/Pci/PciBusDxe
+        // No support for IO and prefetch memory
+        //
+
+        status = PCIePciWrite(
+            EfiPciIoWidthUint8,
+            baseAddress + 0x1C,
+            1,
+            &allZero);
+        ASSERT_EFI_ERROR(status);
+
+        status = PCIePciWrite(
+            EfiPciIoWidthUint8,
+            baseAddress + 0x1D,
+            1,
+            &allZero);
+
+        status = PCIePciWrite(
+            EfiPciIoWidthUint16,
+            baseAddress + 0x24,
+            1,
+            &allZero);
+        ASSERT_EFI_ERROR(status);
+
+        status = PCIePciWrite(
+            EfiPciIoWidthUint16,
+            baseAddress + 0x26,
+            1,
+            &allZero);
+        ASSERT_EFI_ERROR(status);
+
+        status = PCIePciWrite(
+            EfiPciIoWidthUint32,
+            baseAddress + 0x28,
+            1,
+            &allZero);
+        ASSERT_EFI_ERROR(status);
+
+        status = PCIePciWrite(
+            EfiPciIoWidthUint32,
+            baseAddress + 0x2C,
+            1,
+            &allZero);
+        ASSERT_EFI_ERROR(status);
+
+        status = PCIePciWrite(
+            EfiPciIoWidthUint16,
+            baseAddress + 0x30,
+            1,
+            &allZero);
+        ASSERT_EFI_ERROR(status);
+
+        status = PCIePciWrite(
+            EfiPciIoWidthUint16,
+            baseAddress + 0x32,
+            1,
+            &allZero);
+        ASSERT_EFI_ERROR(status);
+
+        //
+        // Type 1 bridge only has 2 BAR register
+        //
+        status = PCIeParseAssignBar(
+            baseAddress,
+            2,
+            TRUE);
+        if (EFI_ERROR(status)) {
+            PCIE_ERROR("Failed to assign resource to PCI bridge\n");
+            goto Exit;
+        }
+
+    } else {
+
+        //
+        // Device specific configuration should be implemented here
+        //
+        PCIE_INFO("PCI device\n");
+
+        status = PCIeParseAssignBar(
+            baseAddress,
+            PCI_MAX_BAR,
+            FALSE);
+        if (EFI_ERROR(status)) {
+            PCIE_ERROR("Failed to assign resource to PCI device\n");
+            goto Exit;
+        }
+    }
+
+    {
+        UINT16 pciCommand;
+
+        status = PCIePciRead(
+            EfiPciIoWidthUint16,
+            baseAddress + PCI_COMMAND_OFFSET,
+            1,
+            &pciCommand);
+        ASSERT_EFI_ERROR(status);
+
+        pciCommand |=
+            (EFI_PCI_COMMAND_MEMORY_SPACE | EFI_PCI_COMMAND_BUS_MASTER);
+
+        status = PCIePciWrite(
+            EfiPciIoWidthUint16,
+            baseAddress + PCI_COMMAND_OFFSET,
+            1,
+            &pciCommand);
+        ASSERT_EFI_ERROR(status);
+    }
+
+    status = EFI_SUCCESS;
+
+Exit:
+    return status;
+}
+
+EFI_STATUS PCIeSimpleScanBusAndAssignResource (
+    IN UINTN BusNumber
+    )
+{
+    EFI_STATUS status;
+    UINTN devNumber;
+    UINTN functionNumber;
+    PCI_TYPE00 pciDevice;
+
+    for (devNumber = 0; devNumber <= PCI_MAX_DEVICE; ++devNumber) {
+        for (functionNumber = 0; functionNumber <= PCI_MAX_FUNC; ++functionNumber) {
+
+            PCIE_INFO("Scanning device B: %02d D: %02d F: %02d\n",
+                BusNumber,
+                devNumber,
+                functionNumber);
+
+            status = PCIeDevicePresent(
+                &pciDevice,
+                BusNumber,
+                devNumber,
+                functionNumber);
+            if (status == EFI_NOT_FOUND) {
+                PCIE_INFO("No PCI device found\n");
+                status = EFI_SUCCESS;
+                goto Exit;
+            } else if (EFI_ERROR(status)) {
+                PCIE_ERROR("Error detecting PCI device\n");
+                goto Exit;
+            }
+
+            status = PCIeConfigureDevice(
+                pciDevice,
+                BusNumber,
+                devNumber,
+                functionNumber);
+            if (EFI_ERROR(status)) {
+                PCIE_ERROR(
+                    "Failed to configure device B:%02d D:%02d F:%02d\n",
+                    BusNumber,
+                    devNumber,
+                    functionNumber);
+                continue;
+            }
+
+            if (IS_PCI_BRIDGE (&pciDevice)) {
+                UINTN busBaseRegisterAddress;
+                UINTN resourceAddress, bridgeMemory;
+                UINTN bridgeMemoryBase, bridgeMemoryLimit;
+                UINT16 busRegister;
+                UINT8 subBus;
+
+                busRegister = (UINT16)(((BusNumber + 1) << 8) | (UINT16)BusNumber);
+                status = PCIeGetPCIConfigAddress(
+                    BusNumber,
+                    devNumber,
+                    functionNumber,
+                    0,
+                    &busBaseRegisterAddress);
+
+                ASSERT_EFI_ERROR(status);
+
+                status = PCIePciWrite(
+                    EfiPciWidthUint16,
+                    busBaseRegisterAddress + PCI_BRIDGE_PRIMARY_BUS_REGISTER_OFFSET,
+                    1,
+                    &busRegister);
+                if (EFI_ERROR(status)) {
+                    PCIE_ERROR("Failed to update bridge bus number %d\n", BusNumber);
+                    continue;
+                }
+
+                //
+                // Temporarily set maximum subordinate bus number, although for now
+                // only support 2 buses.
+                //
+                subBus = 0XFF;
+                status = PCIePciWrite(
+                    EfiPciWidthUint8,
+                    busBaseRegisterAddress + PCI_BRIDGE_SUBORDINATE_BUS_REGISTER_OFFSET,
+                    1,
+                    &subBus);
+                if (EFI_ERROR(status)) {
+                    PCIE_ERROR("Failed to update bridge bus number %d\n", BusNumber);
+                    continue;
+                }
+
+                //
+                // Setup the memory base.
+                //
+                status = PCIeGetMemoryBarResource(
+                    0,
+                    &bridgeMemoryBase,
+                    TRUE);
+                if (EFI_ERROR(status)) {
+                    PCIE_ERROR("Failed to acquire BAR resource\n");
+                    goto Exit;
+                }
+
+                bridgeMemory = (bridgeMemoryBase >> 16) & 0xFFF0;
+
+                status = PCIePciWrite(
+                    EfiPciIoWidthUint32,
+                    busBaseRegisterAddress + 0x20,
+                    1,
+                    &bridgeMemory);
+                ASSERT_EFI_ERROR(status);
+
+                status = PCIeSimpleScanBusAndAssignResource(
+                    BusNumber + 1);
+                if (EFI_ERROR(status)) {
+                    PCIE_ERROR("Failed to scan new bus %d\n", BusNumber + 1);
+                    continue;
+                }
+
+                //
+                // Setup the memory limit.
+                //
+                status = PCIeGetMemoryBarResource(
+                    0,
+                    &resourceAddress,
+                    TRUE);
+                if (EFI_ERROR(status)) {
+                    PCIE_ERROR("Failed to acquire BAR resource\n");
+                    goto Exit;
+                }
+
+                ASSERT(bridgeMemoryBase != resourceAddress);
+
+                //
+                // Per spec align address has to be 1MB boundary
+                //
+                PCIeGetAlignAddress(
+                    resourceAddress,
+                    0x00100000,
+                    &bridgeMemoryLimit);
+                ASSERT_EFI_ERROR(status);
+
+                bridgeMemory |= bridgeMemoryLimit;
+
+                status = PCIePciWrite(
+                    EfiPciIoWidthUint32,
+                    busBaseRegisterAddress + 0x20,
+                    1,
+                    &bridgeMemory);
+                ASSERT_EFI_ERROR(status);
+
+                subBus = (BusNumber + 1);
+                status = PCIePciWrite(
+                    EfiPciWidthUint8,
+                    busBaseRegisterAddress +
+                        PCI_BRIDGE_SUBORDINATE_BUS_REGISTER_OFFSET,
+                    1,
+                    &subBus);
+                if (EFI_ERROR(status)) {
+                    PCIE_ERROR(
+                        "Failed to update subordinate bus number %d\n",
+                        BusNumber);
+                    continue;
+                }
+
+                //
+                // Claim any memory that is used for padding
+                //
+                status = PCIeGetMemoryBarResource(
+                    (bridgeMemoryLimit + 0x00100000) - resourceAddress,
+                    &resourceAddress,
+                    FALSE);
+                if (EFI_ERROR(status)) {
+                    PCIE_ERROR("Failed to realign resource\n");
+                    goto Exit;
+                }
+            }
+
+            //
+            // Skip sub functions, this is not a multi function device
+            //
+            if (functionNumber == 0 && !IS_PCI_MULTI_FUNC (&pciDevice)) {
+
+                functionNumber = PCI_MAX_FUNC;
+            }
+        }
+    }
+
+Exit:
+    return status;
+}
+
+EFI_STATUS PCIeInitialize (
+    IN EFI_HANDLE ImageHandle,
+    IN EFI_SYSTEM_TABLE* SystemTablePtr
+    )
+{
+    EFI_STATUS status;
+
+    status = PCIeSetupInitSetting();
+    if (EFI_ERROR(status)) {
+
+        //
+        // EFI_DEVICE_ERROR indicate that a bootloader has already setup the
+        // PCIe controller. In this case just return success immediately
+        //
+        if (status == EFI_DEVICE_ERROR) {
+            status = EFI_SUCCESS;
+            PCIE_WARNING("PCIe already initialized\n");
+            goto Exit;
+        }
+
+        PCIE_ERROR("Failed to enable PCIe gates\n");
+        goto Exit;
+    }
+
+    status = PCIeSetClockGate(IMX_CLOCK_GATE_STATE_ON);
+    if (EFI_ERROR(status)) {
+        PCIE_ERROR("Failed to enable PCIe gates\n");
+        goto Exit;
+    }
+
+    status = PCIeVerifyClocks();
+    if (EFI_ERROR(status)) {
+        PCIE_ERROR("Failed to verify PCIe clocks, not configured!\n");
+        goto Exit;
+    }
+
+    status = PCIeSetPhyState(TRUE);
+    if (EFI_ERROR(status)) {
+        PCIE_ERROR("Failed to enable PCIe PHY\n");
+        goto Exit;
+    }
+
+    //
+    // Very important to wait for PCIe PHY to settle here or the controller
+    // behaviour becomes unpredictable.
+    //
+    gBS->Stall(50000);
+
+    PCIeEnablePerstLine();
+
+    status = PCIeSetupPCIBridge();
+    if (EFI_ERROR(status)) {
+        PCIE_ERROR("Failed to setup PCI bridge\n");
+        goto Exit;
+    }
+
+    status = PCIeSetLinkStatus(TRUE);
+    if (EFI_ERROR(status)) {
+        PCIE_ERROR("Failed to enable PCIe link\n");
+        goto Exit;
+    }
+
+    status = PCIeWaitForLink();
+    if (EFI_ERROR(status)) {
+        PCIE_ERROR("PCI link never came up\n");
+        goto Exit;
+    }
+
+    PCIeSetupiATUSettings();
+
+    //
+    // Start scanning from bus 0 onward
+    //
+    status = PCIeSimpleScanBusAndAssignResource(0);
+    if (EFI_ERROR(status)) {
+        PCIE_ERROR("PCIeSimpleScanBusAndAssignResource failed %r\n", status);
+        goto Exit;
+    }
+
+#ifdef DEBUG
+    {
+        UINT32 printIndex = 0;
+        volatile UINT32* printAddr = (UINT32*)PCIE_HOST_CONFIG_BASE_REG;
+
+        PCIE_INFO("===============================\n");
+        PCIE_INFO("Host Device Configuration space\n");
+        PCIE_INFO("===============================\n");
+        for (; printIndex < 16; ++printIndex) {
+            PCIE_INFO("PCI [%02x] 0x%08x 0x%08x 0x%08x 0x%08x\n", \
+                printIndex * 16, \
+                printAddr[0], \
+                printAddr[1], \
+                printAddr[2], \
+                printAddr[3]);
+
+            printAddr += 4;
+        }
+
+        PCIE_INFO("===============================\n");
+        PCIE_INFO("Device Configuration space 0x%08x\n", printAddr);
+        PCIE_INFO("===============================\n");
+        for (printIndex = 0; printIndex < 16; ++printIndex) {
+            PCIE_INFO("PCI [%02x] 0x%08x 0x%08x 0x%08x 0x%08x\n", \
+                printIndex * 16, \
+                printAddr[0], \
+                printAddr[1], \
+                printAddr[2], \
+                printAddr[3]);
+
+            printAddr += 4;
+        }
+        PCIE_INFO("===============================\n");
+    }
+#endif
+
+Exit:
+
+    if (EFI_ERROR(status)) {
+        PCIE_ERROR("Failed to initialize PCIe, disabling controller\n");
+    PCIeSetLinkStatus(FALSE);
+        PCIeSetPhyState(FALSE);
+        PCIeSetClockGate(IMX_CLOCK_GATE_STATE_OFF);
+    }
+
+  //
+  // For debug printout the state of the PLL/PHY
+  //
+#ifdef DEBUG
+  {
+    volatile IMX_CCM_ANALOG_REGISTERS* ccmAnalogRegsPtr = (IMX_CCM_ANALOG_REGISTERS*)IMX_CCM_ANALOG_BASE;
+    volatile IMX_IOMUXC_GPR_REGISTERS* ioMuxcRegsPtr = (IMX_IOMUXC_GPR_REGISTERS*)IMX_IOMUXC_BASE;
+
+    PCIE_INFO( "IMX_CCM_PLL_ENET 0x%08X\n", MmioRead32((UINTN) &ccmAnalogRegsPtr->PLL_ENET));
+    PCIE_INFO( "IOMUXC_GPR1 0x%08X\n", MmioRead32((UINTN) &ioMuxcRegsPtr->GPR1));
+  }
+#endif
+    return status;
+}
diff --git a/Silicon/NXP/iMX6Pkg/Drivers/PciExpress/iMX6PciExpress.h b/Silicon/NXP/iMX6Pkg/Drivers/PciExpress/iMX6PciExpress.h
new file mode 100644
index 000000000000..fa7d275b4fbd
--- /dev/null
+++ b/Silicon/NXP/iMX6Pkg/Drivers/PciExpress/iMX6PciExpress.h
@@ -0,0 +1,163 @@
+/** @file
+*
+*  Copyright (c) Microsoft Corporation. All rights reserved.
+*
+*  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 at
+*  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.
+*
+**/
+
+#pragma once
+
+#ifndef ARRAYSIZE
+#define ARRAYSIZE(__array__) (sizeof((__array__))/sizeof((__array__[0])))
+#endif
+
+//
+// Print macro
+//
+#define PCIE_INIT(PRINT_OUT, ...) \
+    DEBUG((DEBUG_INIT, "iMX6PCIe:" PRINT_OUT, ##__VA_ARGS__))
+#define PCIE_INFO(PRINT_OUT, ...) \
+    DEBUG((DEBUG_INFO, "iMX6PCIe:" PRINT_OUT, ##__VA_ARGS__))
+#define PCIE_WARNING(PRINT_OUT, ...) \
+    DEBUG((DEBUG_WARN, "iMX6PCIe:" PRINT_OUT, ##__VA_ARGS__))
+#define PCIE_ERROR(PRINT_OUT, ...) \
+    DEBUG((DEBUG_ERROR, "iMX6PCIe:" PRINT_OUT, ##__VA_ARGS__))
+
+//
+// PCIe related base address
+//
+#define PCIE_HOST_CONFIG_BASE_REG       FixedPcdGet32(PcdPcieHostConfigBase)
+#define PCIE_CTRL_PORT_LOGIG_BASE_REG   0x01FFC700
+#define PCIE_DEVICE_CONFIG_BASE_REG     FixedPcdGet32(PcdPcieDeviceConfigBase)
+#define PCIE_DEVICE_CONFIG_SIZE         FixedPcdGet32(PcdPcieDeviceConfigSize)
+#define PCIE_IO_SPACE_BASE              FixedPcdGet32(PcdPcieIOBase)
+#define PCIE_IO_SPACE_SIZE              FixedPcdGet32(PcdPcieIOSize)
+#define PCIE_MEMORY_SPACE_BASE          FixedPcdGet32(PcdPciMemoryBase)
+#define PCIE_MEMORY_SPACE_SIZE          FixedPcdGet32(PcdPciMemorySize)
+#define PCIE_PREFETCH_MEMORY_SPACE_BASE FixedPcdGet32(PcdPciPrefetchMemoryBase)
+#define PCIE_PREFETCH_MEMORY_SPACE_SIZE FixedPcdGet32(PcdPciPrefetchMemorySize)
+
+#pragma pack(push, 1)
+
+typedef union {
+    UINT8   volatile  *buf;
+    UINT8   volatile  *ui8;
+    UINT16  volatile  *ui16;
+    UINT32  volatile  *ui32;
+    UINT64  volatile  *ui64;
+    UINTN   volatile  ui;
+} PTR;
+
+typedef struct {
+    UINT64 Base;
+    UINT64 Size;
+    UINT64 Curr;
+} PCI_RESOURCE;
+
+//
+// Debug register related bits
+//
+#define PCIE_PL_DEBUG1_PHY_LINK_UP          (1 << 4)
+#define PCIE_PL_DEBUG1_LINK_IN_TRAINING     (1 << 29)
+
+//
+// Address Translation Unit related definition
+//
+
+#define MAX_iATU_REGION          4
+
+typedef enum _REGION_DIRECTION {
+    OUTBOUND,
+    INBOUND,
+} REGION_DIRECTION;
+
+typedef enum _TLP_TYPE {
+    MEMORY_TYPE,
+    MEMORY_LOCK_TYPE,
+    IO_TYPE,
+    CFG0_TYPE = 4,
+    CFG1_TYPE = 5,
+} TLP_TYPE;
+
+typedef enum _REGION_STATE {
+    REGION_DISABLE = 0,
+    REGION_ENABLE = 0x80000000,
+} REGION_STATE;
+
+typedef struct {
+
+    UINT32 PCIE_PL_ALTRTR;          // ACK latency timer and replay timer
+    UINT32 PCIE_PL_VSDR;            // Vendor specific DLLP
+    UINT32 PCIE_PL_PFLR;            // Port force link
+    UINT32 PCIE_PL_AFLACR;          // ACK frequency and L0-L1 ASPM control
+    UINT32 PCIE_PL_PLCR;            // Port link control
+    UINT32 PCIE_PL_LSR;             // Lane skew
+    UINT32 PCIE_PL_SNR;             // Symbol number
+    UINT32 PCIE_PL_STRFM1;          // Symbol timer and filter mask 1
+    UINT32 PCIE_PL_STRFM2;          // Filter mask 2
+    UINT32 PCIE_PL_AMODNPSR;        // AMBA Multiple Outbound Decomposed NP Sub-Requests Control
+    UINT32 PCIE_PL_DEBUG0;          // Debug 0
+    UINT32 PCIE_PL_DEBUG1;          // Debug 1
+    UINT32 PCIE_PL_TPFCSR;          // Transmit Posted FC Credit Status
+    UINT32 PCIE_PL_TNFCSR;          // Transmit Non-Posted FC Credit Status
+    UINT32 PCIE_PL_TCFCSR;          // Transmit Completion FC Credit Status
+    UINT32 PCIE_PL_QSR;             // Queue status
+    UINT32 PCIE_PL_VCTAR1;          // Transmit Completion FC Status 1
+    UINT32 PCIE_PL_VCTAR2;          // Transmit Completion FC Status 1
+    UINT32 PCIE_PL_VC0PRQC;         // VC0 Posted Receive Queue Control
+    UINT32 PCIE_PL_VC0NRQC;         // VC0 Non-Posted Receive Queue Control
+    UINT32 PCIE_PL_VC0CRQC;         // VC0 Completion Receive Queue Control
+    UINT32 PCIE_PL_VCnPRQC;         // VCn Posted Receive Queue Control
+    UINT32 PCIE_PL_VCnNRQC;         // VCn Non-Posted Receive Queue Control
+    UINT32 PCIE_PL_VCnCRQC;         // VCn Completion Receive Queue Control
+    UINT32 PCIE_PL_RESERVED_0[18];
+    UINT32 PCIE_PL_VC0PBD;          // VC0 Posted Buffer Depth
+    UINT32 PCIE_PL_VC0NPBD;         // VC0 Non-Posted Buffer Depth
+    UINT32 PCIE_PL_VC0CBD;          // VC0 Completion Buffer Depth
+    UINT32 PCIE_PL_VC1PBD;          // VCn Posted Buffer Depth
+    UINT32 PCIE_PL_VC1NPBD;         // VCn Non-Posted Buffer Depth
+    UINT32 PCIE_PL_VC1CBD;          // VCn Completion Buffer Depth
+    UINT32 PCIE_PL_RESERVED_1[19];
+    UINT32 PCIE_PL_G2CR;            // Gen2 Control
+    UINT32 PCIE_PL_PHY_STATUS;      // PHY status
+    UINT32 PCIE_PL_PHY_CTRL;        // PHY control
+    UINT32 PCIE_PL_MRCCR0;          // Master Response Composer Control 0
+    UINT32 PCIE_PL_MRCCR1;          // Master Response Composer Control 1
+    UINT32 PCIE_PL_MSICA;           // MSI Controller Address
+    UINT32 PCIE_PL_MSICUA;          // MSI Controller Upper Address
+    UINT32 PCIE_PL_MSICIn_ENB;      // MSI Controller Interrupt n Enable
+    UINT32 PCIE_PL_MSICIn_MASK;     // MSI Controller Interrupt n Mask
+    UINT32 PCIE_PL_MSICIn_STATUS;   // MSI Controller Interrupt n Status
+    UINT32 PCIE_PL_RESERVED_2[21];
+    UINT32 PCIE_PL_MSICGPIO;        // MSI Controller General Purpose IO
+    UINT32 PCIE_PL_RESERVED_3[29];
+    UINT32 PCIE_PL_iATUVR;          // iATU Viewport
+    UINT32 PCIE_PL_iATURC1;         // iATU Control 1
+    UINT32 PCIE_PL_iATURC2;         // iATU Control 2
+    UINT32 PCIE_PL_iATURLBA;        // iATU Region Lower Base Address
+    UINT32 PCIE_PL_iATURUBA;        // iATU Region Upper Base Address
+    UINT32 PCIE_PL_iATURLA;         // iATU Region Limit Address
+    UINT32 PCIE_PL_iATURLTA;        // iATU Region Lower Target Address
+    UINT32 PCIE_PL_iATURUTA;        // iATU Region Upper Target Address
+} CSP_PCIE_PL_REGS, *PCSP_PCIE_PL_REGS;
+
+typedef struct _IATU_SETTINGS {
+    UINT32 RegionDirection;
+    UINT32 RegionIndex;
+    TLP_TYPE Type;
+    UINT32 LowerBaseAddr;
+    UINT32 UpperBaseAddr;
+    UINT32 LimitAddr;
+    UINT32 LowerTargetAddr;
+    UINT32 UpperTargetAddr;
+    UINT32 State;
+} IATU_SETTINGS, *PIATU_SETTINGS;
+
+#pragma pack(pop)
diff --git a/Silicon/NXP/iMX6Pkg/Drivers/PciExpress/iMX6PciExpress.inf b/Silicon/NXP/iMX6Pkg/Drivers/PciExpress/iMX6PciExpress.inf
new file mode 100644
index 000000000000..e41c71b939cc
--- /dev/null
+++ b/Silicon/NXP/iMX6Pkg/Drivers/PciExpress/iMX6PciExpress.inf
@@ -0,0 +1,66 @@
+## @file
+#
+#  Copyright (c) Microsoft Corporation. All rights reserved.
+#
+#  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 at
+#  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       = 0x00010005
+  BASE_NAME         = iMX6PciExpress
+  FILE_GUID         = 5A7FB871-8A19-48D5-A268-441E79AAFD9E
+  MODULE_TYPE       = DXE_DRIVER
+  VERSION_STRING    = 1.0
+  ENTRY_POINT       = PCIeInitialize
+
+[Sources.common]
+  iMX6PciExpress.c
+
+[Packages]
+  MdePkg/MdePkg.dec
+  MdeModulePkg/MdeModulePkg.dec
+  IntelFrameworkPkg/IntelFrameworkPkg.dec
+  ArmPkg/ArmPkg.dec
+  EmbeddedPkg/EmbeddedPkg.dec
+  Silicon/NXP/iMXPlatformPkg/iMXPlatformPkg.dec
+  Silicon/NXP/iMX6Pkg/iMX6Pkg.dec
+
+[LibraryClasses]
+  BaseLib
+  DxeServicesTableLib
+  UefiLib
+  UefiBootServicesTableLib
+  UefiDriverEntryPoint
+  UefiRuntimeServicesTableLib
+  IoLib
+  iMX6ClkPwrLib
+
+[Protocols]
+
+[Pcd]
+  giMX6TokenSpaceGuid.PcdPcieHostConfigBase
+  giMX6TokenSpaceGuid.PcdPcieDeviceConfigBase
+  giMX6TokenSpaceGuid.PcdPcieDeviceConfigSize
+  giMX6TokenSpaceGuid.PcdPcieIOBase
+  giMX6TokenSpaceGuid.PcdPcieIOSize
+  giMX6TokenSpaceGuid.PcdPciMemoryBase
+  giMX6TokenSpaceGuid.PcdPciMemorySize
+  giMX6TokenSpaceGuid.PcdPciPrefetchMemoryBase
+  giMX6TokenSpaceGuid.PcdPciPrefetchMemorySize
+  giMX6TokenSpaceGuid.PcdPcieResetGpio
+  giMX6TokenSpaceGuid.PcdPcieResetGpioBankNumber
+  giMX6TokenSpaceGuid.PcdPcieResetGpioIoNumber
+
+[FixedPcd]
+  giMXPlatformTokenSpaceGuid.PcdGpioBankMemoryRange
+
+[Depex]
+  gEfiMetronomeArchProtocolGuid AND
+  gEfiCpuArchProtocolGuid
-- 
2.16.2.gvfs.1.33.gf5370f1



  parent reply	other threads:[~2018-07-20  6:34 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-20  6:33 [PATCH edk2-platforms 00/13] Silicon/NXP: Import NXP i.MX6 Package Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 01/13] Silicon/NXP: Add i.MX6 SoC header files Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 02/13] Silicon/NXP: Add i.MX6 GPT and EPIT timer headers Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 03/13] Silicon/NXP: Add iMX6Pkg dec Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 04/13] Silicon/NXP: Add i.MX6 Timer DXE driver Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 05/13] Silicon/NXP: Add i.MX6 GPT Timer library Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 06/13] Silicon/NXP: Add i.MX6 USB Phy Library Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 07/13] Silicon/NXP: Add i.MX6 I/O MUX library Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 08/13] Silicon/NXP: Add i.MX6 Clock Library Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 09/13] Silicon/NXP: Add i.MX6 ACPI tables Chris Co
2018-07-20  6:33 ` [PATCH edk2-platforms 10/13] Silicon/NXP: Add i.MX6 Board init library Chris Co
2018-07-20  6:34 ` Chris Co [this message]
2018-07-20  6:34 ` [PATCH edk2-platforms 12/13] Silicon/NXP: Add i.MX6 GOP driver Chris Co
2018-07-20  6:34 ` [PATCH edk2-platforms 13/13] Silicon/NXP: Add i.MX6 common dsc and fdf files Chris Co

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180720063328.26856-12-christopher.co@microsoft.com \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox