TianoCore EDK2 master
Loading...
Searching...
No Matches
DebugPortTable.h
Go to the documentation of this file.
1
10#ifndef _DEBUG_PORT_TABLE_H_
11#define _DEBUG_PORT_TABLE_H_
12
14
15//
16// Ensure proper structure formats
17//
18#pragma pack(1)
19
20//
21// Debug Port Table definition.
22//
23typedef struct {
25 UINT8 InterfaceType;
26 UINT8 Reserved_37[3];
29
30#pragma pack()
31
32//
33// DBGP Revision (defined in spec)
34//
35#define EFI_ACPI_DEBUG_PORT_TABLE_REVISION 0x01
36
37//
38// Interface Type
39//
40#define EFI_ACPI_DBGP_INTERFACE_TYPE_FULL_16550 0
41#define EFI_ACPI_DBGP_INTERFACE_TYPE_16550_SUBSET_COMPATIBLE_WITH_MS_DBGP_SPEC 1
42
43#endif