]> git.proxmox.com Git - mirror_edk2.git/blobdiff - OvmfPkg/Library/PlatformDebugLibIoPort/DebugLibDetectRom.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / OvmfPkg / Library / PlatformDebugLibIoPort / DebugLibDetectRom.c
index 83a118a0f78f260ad39b5e018a624ec452de82dd..8cbdbd94fc0e612a194369a9b811124955dfade3 100644 (file)
@@ -1,19 +1,14 @@
 /** @file\r
-  Constructor code for QEMU debug port library.\r
-  SEC instance.\r
+  Detection code for hypervisor debug port.\r
+  SEC instance, cannot cache the result of detection.\r
 \r
   Copyright (c) 2017, Red Hat, Inc.<BR>\r
-  This program and the accompanying materials\r
-  are licensed and made available under the terms and conditions of the BSD License\r
-  which accompanies this distribution.  The full text of the license may be found at\r
-  http://opensource.org/licenses/bsd-license.php.\r
-\r
-  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+  SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
 #include <Base.h>\r
+#include "DebugLibDetect.h"\r
 \r
 /**\r
   This constructor function does not have anything to do.\r
@@ -29,3 +24,19 @@ PlatformRomDebugLibIoPortConstructor (
 {\r
   return RETURN_SUCCESS;\r
 }\r
+\r
+/**\r
+  Return the result of detecting the debug I/O port device.\r
+\r
+  @retval TRUE   if the debug I/O port device was detected.\r
+  @retval FALSE  otherwise\r
+\r
+**/\r
+BOOLEAN\r
+EFIAPI\r
+PlatformDebugLibIoPortFound (\r
+  VOID\r
+  )\r
+{\r
+  return PlatformDebugLibIoPortDetect ();\r
+}\r