We are going to reuse PlatformDebugLibIoPort to use debug IO port from hypervisors that aren't QEMU, so reword "QEMU" to "hypervisor" in the descriptions. Signed-off-by: Anthony PERARD <anthony.perard@citrix.com> Message-Id: <20200423095358.2518197-3-anthony.perard@citrix.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
		
			
				
	
	
		
			43 lines
		
	
	
		
			793 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			793 B
		
	
	
	
		
			C
		
	
	
	
	
	
/** @file
 | 
						|
  Detection code for hypervisor debug port.
 | 
						|
  SEC instance, cannot cache the result of detection.
 | 
						|
 | 
						|
  Copyright (c) 2017, Red Hat, Inc.<BR>
 | 
						|
  SPDX-License-Identifier: BSD-2-Clause-Patent
 | 
						|
 | 
						|
**/
 | 
						|
 | 
						|
#include <Base.h>
 | 
						|
#include "DebugLibDetect.h"
 | 
						|
 | 
						|
/**
 | 
						|
  This constructor function does not have anything to do.
 | 
						|
 | 
						|
  @retval RETURN_SUCCESS   The constructor always returns RETURN_SUCCESS.
 | 
						|
 | 
						|
**/
 | 
						|
RETURN_STATUS
 | 
						|
EFIAPI
 | 
						|
PlatformRomDebugLibIoPortConstructor (
 | 
						|
  VOID
 | 
						|
  )
 | 
						|
{
 | 
						|
  return RETURN_SUCCESS;
 | 
						|
}
 | 
						|
 | 
						|
/**
 | 
						|
  Return the result of detecting the debug I/O port device.
 | 
						|
 | 
						|
  @retval TRUE   if the debug I/O port device was detected.
 | 
						|
  @retval FALSE  otherwise
 | 
						|
 | 
						|
**/
 | 
						|
BOOLEAN
 | 
						|
EFIAPI
 | 
						|
PlatformDebugLibIoPortFound (
 | 
						|
  VOID
 | 
						|
  )
 | 
						|
{
 | 
						|
  return PlatformDebugLibIoPortDetect ();
 | 
						|
}
 |