/** @file Initializes Serial IO Controllers. @copyright INTEL CONFIDENTIAL Copyright 2015 - 2021 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 an 'Intel Peripheral Driver' and is uniquely identified as "Intel Reference Module" and is licensed for Intel CPUs and chipsets under the terms of your license agreement with Intel or your vendor. This file may be modified by the user, subject to additional terms of the license agreement. @par Specification Reference: **/ #include #include #include #include #include #include #include #include #include #include #include #include #include typedef struct { ACPI_HID_DEVICE_PATH RootPort; ACPI_EXTENDED_HID_DEVICE_PATH AcpiDev; CHAR8 HidString[8]; UINT16 DeviceId; UINT8 UartIndex; EFI_DEVICE_PATH_PROTOCOL End; } SERIALIO_UART_DEVICE_PATH; #define mPciRootBridge {{ACPI_DEVICE_PATH, ACPI_DP, {(UINT8)(sizeof (ACPI_HID_DEVICE_PATH)), 0}}, EISA_PNP_ID (0x0A03), 0} #define mAcpiDev {{ACPI_DEVICE_PATH, ACPI_EXTENDED_DP, {(UINT8)(sizeof (ACPI_EXTENDED_HID_DEVICE_PATH) + (sizeof(CHAR8) * 8) + sizeof (UINT16) + sizeof (UINT8)), 0}},0,0,0} #define mEndEntire {END_DEVICE_PATH_TYPE, END_ENTIRE_DEVICE_PATH_SUBTYPE, {END_DEVICE_PATH_LENGTH, 0}} GLOBAL_REMOVE_IF_UNREFERENCED SERIALIO_UART_DEVICE_PATH mSerialIoUartPath = { mPciRootBridge, mAcpiDev, "UART\0\0\0", 0xFFFF, 0xFF, mEndEntire }; /** Add Serial Io UART Hidden Handles **/ VOID CreateSerialIoUartHiddenHandle ( VOID ) { EFI_HANDLE NewHandle; EFI_DEVICE_PATH_PROTOCOL *NewPath; EFI_STATUS Status; UINT8 Index; UINT16 DeviceId; DEBUG ((DEBUG_INFO, "CreateSerialIoUartHandle\n")); for (Index = 0; Index < GetPchMaxSerialIoUartControllersNum (); Index++) { DEBUG ((DEBUG_INFO, "UART Index: %d Mode: %d\n", Index, mPchConfigHob->SerialIo.UartDeviceConfig[Index].Mode)); if (mPchConfigHob->SerialIo.UartDeviceConfig[Index].Mode == SerialIoUartHidden || mPchConfigHob->SerialIo.UartDeviceConfig[Index].Mode == SerialIoUartCom) { NewHandle = NULL; DeviceId = MmioRead16 (GetSerialIoUartFixedPciCfgAddress (Index) + PCI_DEVICE_ID_OFFSET); DEBUG ((DEBUG_INFO, "Creating Handle for UART DEVICE_ID: 0x%X \n", DeviceId)); mSerialIoUartPath.AcpiDev.HID = 0x5432 + (Index << 16); //UAR mSerialIoUartPath.HidString[4] = (CHAR8)('0' + Index); mSerialIoUartPath.DeviceId = DeviceId; mSerialIoUartPath.UartIndex = Index; NewPath = DuplicateDevicePath ((EFI_DEVICE_PATH_PROTOCOL*) &mSerialIoUartPath); Status = gBS->InstallMultipleProtocolInterfaces ( &NewHandle, &gEfiDevicePathProtocolGuid, NewPath, NULL ); DEBUG ((DEBUG_INFO, "CreateSerialIoUartHandle Status: %r\n", Status)); } } } /** Stores Pme Control Status and Command register values in S3 Boot Script @param[in] S3PciCfgBase S3 Boot Script Pci Config Base @param[in] Command Pci Command register data to save @param[in] Pme Pci Pme Control register data to save **/ VOID STATIC SerialIoS3Save ( IN UINTN S3PciCfgBase, IN UINTN Command, IN UINTN Pme ) { if (S3PciCfgBase != 0) { S3BootScriptSavePciCfgWrite (S3BootScriptWidthUint32, S3PciCfgBase + R_SERIAL_IO_CFG_PME_CTRL_STS, 1, &Pme); S3BootScriptSavePciCfgWrite (S3BootScriptWidthUint32, S3PciCfgBase + PCI_COMMAND_OFFSET, 1, &Command); } } /** Puts all SerialIo controllers (except UARTs in debug mode) in D3. Clears MemoryEnable for all PCI-mode controllers on S3 resume **/ VOID ConfigureSerialIoAtS3Resume ( VOID ) { UINT8 Index; UINTN S3PciCfgBase; UINT32 Command; UINT32 Pme; S3PciCfgBase = 0; for (Index = 0; Index < GetPchMaxSerialIoSpiControllersNum (); Index++) { SerialIoSpiS3Handler (Index, &mPchConfigHob->SerialIo.SpiDeviceConfig[Index], &S3PciCfgBase, &Command, &Pme); SerialIoS3Save (S3PciCfgBase, Command, Pme); } S3PciCfgBase = 0; for (Index = 0; Index < GetPchMaxSerialIoI2cControllersNum (); Index++) { SerialIoI2cS3Handler (Index, &mPchConfigHob->SerialIo.I2cDeviceConfig[Index], &S3PciCfgBase, &Command, &Pme); SerialIoS3Save (S3PciCfgBase, Command, Pme); } S3PciCfgBase = 0; for (Index = 0; Index < GetPchMaxSerialIoUartControllersNum (); Index++) { SerialIoUartS3Handler (Index, &mPchConfigHob->SerialIo.UartDeviceConfig[Index], &S3PciCfgBase, &Command, &Pme); SerialIoS3Save (S3PciCfgBase, Command, Pme); } }