/** @file Initialize ATA AHCI host controller. @copyright INTEL CONFIDENTIAL Copyright 2020 Intel Corporation. The source code contained or described herein and all documents related to the source code ("Material") are owned by Intel Corporation or its suppliers or licensors. Title to the Material remains with Intel Corporation or its suppliers and licensors. The Material may contain trade secrets and proprietary and confidential information of Intel Corporation and its suppliers and licensors, and is protected by worldwide copyright and trade secret laws and treaty provisions. No part of the Material may be used, copied, reproduced, modified, published, uploaded, posted, transmitted, distributed, or disclosed in any way without Intel's prior express written permission. No license under any patent, copyright, trade secret or other intellectual property right is granted to or conferred upon you by disclosure or delivery of the Materials, either expressly, by implication, inducement, estoppel or otherwise. Any license under such intellectual property rights must be express and approved by Intel in writing. Unless otherwise agreed by Intel in writing, you may not remove or alter this notice or any other notice embedded in Materials by Intel or Intel's suppliers or licensors in any way. This file contains a 'Sample Driver' and is licensed as such under the terms of your license agreement with Intel or your vendor. This file may be modified by the user, subject to the additional terms of the license agreement. @par Specification **/ #ifndef _AHCI_PCI_HC_PEI_H_ #define _AHCI_PCI_HC_PEI_H_ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // // AHCI PCI HC PEIM driver implementation related definitions // #define MAX_ATA_AHCI_HCS 1 #define ATA_AHCI_HC_PCI_BUS_NUM 0x00 // // PCI related definitions // #define PCI_IF_AHCI 0x01 #define PCI_AHCI_BASE_ADDRESSREG_OFFSET 0x24 #pragma pack(1) // // Device path for ATA AHCI host controller // typedef struct { ACPI_HID_DEVICE_PATH PciRoot; PCI_DEVICE_PATH AhciEp; EFI_DEVICE_PATH_PROTOCOL End; } ATA_AHCI_DEVICE_PATH; #pragma pack() // // PCI Class Code structure // typedef struct { UINT8 PI; UINT8 SubClassCode; UINT8 BaseCode; } PCI_CLASSC; typedef struct { UINT8 Bus; UINT8 Device; UINT8 Function; } PCI_NODE_INFO; typedef struct { PCI_NODE_INFO PciInfo; UINTN Bar; UINTN DevicePathLength; EFI_DEVICE_PATH_PROTOCOL *DevicePath; UINT8 OriCmdRegLow; UINT32 OriABarReg; } AHCI_HC_INFO; #define AHCI_HC_PEI_SIGNATURE SIGNATURE_32 ('A', 'H', 'C', 'P') typedef struct { UINTN Signature; EDKII_ATA_AHCI_HOST_CONTROLLER_PPI AhciControllerPpi; EFI_PEI_PPI_DESCRIPTOR PpiList; EFI_PEI_NOTIFY_DESCRIPTOR EndOfPeiNotifyList; BOOLEAN IsRaid; UINTN TotalAhciHcs; AHCI_HC_INFO HcInfo[MAX_ATA_AHCI_HCS]; } AHCI_HC_PEI_PRIVATE_DATA; #define AHCI_HC_PEI_PRIVATE_DATA_FROM_THIS(a) \ CR (a, AHCI_HC_PEI_PRIVATE_DATA, AhciControllerPpi, AHCI_HC_PEI_SIGNATURE) #define AHCI_HC_PEI_PRIVATE_DATA_FROM_THIS_NOTIFY(a) \ CR (a, AHCI_HC_PEI_PRIVATE_DATA, EndOfPeiNotifyList, AHCI_HC_PEI_SIGNATURE) // // EDKII_ATA_AHCI_HOST_CONTROLLER_PPI services // /** Get the MMIO base address of ATA AHCI host controller. @param[in] This The PPI instance pointer. @param[in] ControllerId The ID of the ATA AHCI host controller. @param[out] MmioBar The MMIO base address of the controller. @retval EFI_SUCCESS The operation succeeds. @retval EFI_INVALID_PARAMETER The parameters are invalid. @retval EFI_NOT_FOUND The specified ATA AHCI host controller not found. **/ EFI_STATUS EFIAPI GetAhciHcMmioBar ( IN EDKII_ATA_AHCI_HOST_CONTROLLER_PPI *This, IN UINT8 ControllerId, OUT UINTN *MmioBar ); /** Get the device path of ATA AHCI host controller. @param[in] This The PPI instance pointer. @param[in] ControllerId The ID of the ATA AHCI host controller. @param[out] DevicePathLength The length of the device path in bytes specified by DevicePath. @param[out] DevicePath The device path of ATA AHCI host controller. This field re-uses EFI Device Path Protocol as defined by Section 10.2 EFI Device Path Protocol of UEFI 2.7 Specification. @retval EFI_SUCCESS The operation succeeds. @retval EFI_INVALID_PARAMETER The parameters are invalid. @retval EFI_NOT_FOUND The specified ATA AHCI host controller not found. @retval EFI_OUT_OF_RESOURCES The operation fails due to lack of resources. **/ EFI_STATUS EFIAPI GetAhciHcDevicePath ( IN EDKII_ATA_AHCI_HOST_CONTROLLER_PPI *This, IN UINT8 ControllerId, OUT UINTN *DevicePathLength, OUT EFI_DEVICE_PATH_PROTOCOL **DevicePath ); // // Internal functions // /** One notified function to cleanup the allocated resources at the end of PEI. @param[in] PeiServices Pointer to PEI Services Table. @param[in] NotifyDescriptor Pointer to the descriptor for the Notification event that caused this function to execute. @param[in] Ppi Pointer to the PPI data associated with this function. @retval EFI_SUCCESS The function completes successfully. **/ EFI_STATUS EFIAPI AhciHcEndOfPei ( IN EFI_PEI_SERVICES **PeiServices, IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor, IN VOID *Ppi ); #endif // _AHCI_PCI_HC_PEI_H_