2010-09-12 06:43:36 +00:00
|
|
|
/** @file
|
|
|
|
|
Header file for Dxe Core Debug Agent Library instance.
|
|
|
|
|
|
2018-06-27 21:14:00 +08:00
|
|
|
Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.<BR>
|
2019-04-03 16:07:10 -07:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2010-09-12 06:43:36 +00:00
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
|
|
#ifndef _DXE_CORE_DEBUG_AGENT_LIB_H_
|
|
|
|
|
#define _DXE_CORE_DEBUG_AGENT_LIB_H_
|
|
|
|
|
|
|
|
|
|
#include <PiDxe.h>
|
|
|
|
|
|
2012-06-11 02:15:11 +00:00
|
|
|
#include <Protocol/SerialIo.h>
|
|
|
|
|
#include <Protocol/DevicePath.h>
|
|
|
|
|
#include <Protocol/PiPcd.h>
|
|
|
|
|
|
2010-09-12 06:43:36 +00:00
|
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
|
|
|
#include <Library/UefiLib.h>
|
2012-06-11 02:15:11 +00:00
|
|
|
#include <Library/DevicePathLib.h>
|
2013-01-25 02:36:18 +00:00
|
|
|
#include <Library/MemoryAllocationLib.h>
|
2010-09-12 06:43:36 +00:00
|
|
|
|
|
|
|
|
#include "DebugAgent.h"
|
|
|
|
|
|
2012-06-11 02:15:11 +00:00
|
|
|
/**
|
2018-06-27 21:14:00 +08:00
|
|
|
Install EFI Serial IO protocol based on Debug Communication Library.
|
2012-06-11 02:15:11 +00:00
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
VOID
|
2013-01-25 02:36:18 +00:00
|
|
|
InstallSerialIo (
|
|
|
|
|
VOID
|
2012-06-11 02:15:11 +00:00
|
|
|
);
|
2018-06-27 21:14:00 +08:00
|
|
|
|
2010-09-12 06:43:36 +00:00
|
|
|
#endif
|