]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Console/TerminalDxe/TerminalDxe.inf
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdeModulePkg / Universal / Console / TerminalDxe / TerminalDxe.inf
1 ## @file
2 # Terminal module installs Simple Text Input(ex)/Out protocols for serial devices.
3 #
4 # This module will install Simple Text Input (Ex) protocol and Simple Test Output
5 # protocols based on Serial I/O protocol for serial devices including hotplug serial
6 # devices.
7 #
8 # Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
9 # SPDX-License-Identifier: BSD-2-Clause-Patent
10 #
11 #
12 ##
13
14 [Defines]
15 INF_VERSION = 0x00010005
16 BASE_NAME = TerminalDxe
17 MODULE_UNI_FILE = TerminalDxe.uni
18 FILE_GUID = 9E863906-A40F-4875-977F-5B93FF237FC6
19 MODULE_TYPE = UEFI_DRIVER
20 VERSION_STRING = 1.0
21 ENTRY_POINT = InitializeTerminal
22
23 #
24 # The following information is for reference only and not required by the build tools.
25 #
26 # VALID_ARCHITECTURES = IA32 X64 EBC
27 #
28 # DRIVER_BINDING = gTerminalDriverBinding
29 # COMPONENT_NAME = gTerminalComponentName
30 # COMPONENT_NAME2 = gTerminalComponentName2
31 #
32
33 [Sources]
34 ComponentName.c
35 Vtutf8.c
36 Ansi.c
37 TerminalConOut.c
38 TerminalConIn.c
39 Terminal.c
40 Terminal.h
41
42 [Packages]
43 MdePkg/MdePkg.dec
44 MdeModulePkg/MdeModulePkg.dec
45
46 [LibraryClasses]
47 DevicePathLib
48 UefiRuntimeServicesTableLib
49 UefiBootServicesTableLib
50 MemoryAllocationLib
51 BaseMemoryLib
52 ReportStatusCodeLib
53 UefiLib
54 UefiDriverEntryPoint
55 DebugLib
56 PcdLib
57 BaseLib
58
59 [Guids]
60 ## SOMETIMES_PRODUCES ## Variable:L"ConInDev"
61 ## SOMETIMES_CONSUMES ## Variable:L"ConInDev"
62 ## SOMETIMES_PRODUCES ## Variable:L"ConOutDev"
63 ## SOMETIMES_CONSUMES ## Variable:L"ConOutDev"
64 ## SOMETIMES_PRODUCES ## Variable:L"ErrOutDev"
65 ## SOMETIMES_CONSUMES ## Variable:L"ErrOutDev"
66 gEfiGlobalVariableGuid
67 gEfiVTUTF8Guid ## SOMETIMES_CONSUMES ## GUID # used with a Vendor-Defined Messaging Device Path
68 gEfiVT100Guid ## SOMETIMES_CONSUMES ## GUID # used with a Vendor-Defined Messaging Device Path
69 gEfiVT100PlusGuid ## SOMETIMES_CONSUMES ## GUID # used with a Vendor-Defined Messaging Device Path
70 gEfiPcAnsiGuid ## SOMETIMES_CONSUMES ## GUID # used with a Vendor-Defined Messaging Device Path
71 gEfiTtyTermGuid ## SOMETIMES_CONSUMES ## GUID # used with a Vendor-Defined Messaging Device Path
72 gEdkiiLinuxTermGuid ## SOMETIMES_CONSUMES ## GUID # used with a Vendor-Defined Messaging Device Path
73 gEdkiiXtermR6Guid ## SOMETIMES_CONSUMES ## GUID # used with a Vendor-Defined Messaging Device Path
74 gEdkiiVT400Guid ## SOMETIMES_CONSUMES ## GUID # used with a Vendor-Defined Messaging Device Path
75 gEdkiiSCOTermGuid ## SOMETIMES_CONSUMES ## GUID # used with a Vendor-Defined Messaging Device Path
76 gEdkiiStatusCodeDataTypeVariableGuid ## SOMETIMES_CONSUMES ## GUID
77
78 [Protocols]
79 gEfiSerialIoProtocolGuid ## TO_START
80 ## BY_START
81 ## TO_START
82 gEfiDevicePathProtocolGuid
83 gEfiSimpleTextInProtocolGuid ## BY_START
84 gEfiSimpleTextInputExProtocolGuid ## BY_START
85 gEfiSimpleTextOutProtocolGuid ## BY_START
86
87 [Pcd]
88 gEfiMdePkgTokenSpaceGuid.PcdDefaultTerminalType ## SOMETIMES_CONSUMES
89 gEfiMdeModulePkgTokenSpaceGuid.PcdErrorCodeSetVariable ## CONSUMES
90
91 # [Event]
92 # # Relative timer event set by UnicodeToEfiKey(), used to be one 2 seconds input timeout.
93 # EVENT_TYPE_RELATIVE_TIMER ## CONSUMES
94 # # Period timer event to invoke TerminalConInTimerHandler(), period value is KEYBOARD_TIMER_INTERVAL and used to poll the key from serial
95 # EVENT_TYPE_PERIODIC_TIMER ## CONSUMES
96
97 [UserExtensions.TianoCore."ExtraFiles"]
98 TerminalDxeExtra.uni