]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
b4248fe27fa28d64605f70c8e34c5e7dfc971479
[mirror_edk2.git] / MdeModulePkg / Universal / Console / ConSplitterDxe / ConSplitterDxe.inf
1 #/** @file
2 # This driver provides multi console supports.
3 #
4 # This driver acts as a virtual console, takes over the console I/O control from selected
5 # standard console devices, and transmits console I/O to related console device drivers.
6 # Consplitter could install Graphics Output protocol and/or UGA Draw protocol in system
7 # table according PCD settings(PcdConOutGopSupport, and PcdConOutUgaSupport). It always
8 # consumes Graphics Output protocol which is produced by display device, and consumes UGA Draw
9 # protocol which is produced by display device according to PcdUgaConsumeSupport value.
10 # Note: If only UGA Draw protocol is installed in system table, PcdUgaConsumeSupport
11 # should be set to TRUE.
12 #
13 # Copyright (c) 2006 - 2008, Intel Corporation
14 #
15 # All rights reserved. This program and the accompanying materials
16 # are licensed and made available under the terms and conditions of the BSD License
17 # which accompanies this distribution. The full text of the license may be found at
18 # http://opensource.org/licenses/bsd-license.php
19 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
20 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
21 #
22 #
23 #**/
24
25 [Defines]
26 INF_VERSION = 0x00010005
27 BASE_NAME = ConSplitterDxe
28 FILE_GUID = 408edcec-cf6d-477c-a5a8-b4844e3de281
29 MODULE_TYPE = UEFI_DRIVER
30 VERSION_STRING = 1.0
31 ENTRY_POINT = ConSplitterDriverEntry
32
33 #
34 # The following information is for reference only and not required by the build tools.
35 #
36 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
37 #
38 # DRIVER_BINDING = gConSplitterConInDriverBinding
39 # COMPONENT_NAME = gConSplitterConInComponentName
40 # COMPONENT_NAME2 = gConSplitterConInComponentName2
41 # DRIVER_BINDING = gConSplitterSimplePointerDriverBinding
42 # COMPONENT_NAME = gConSplitterSimplePointerComponentName
43 # COMPONENT_NAME2 = gConSplitterSimplePointerComponentName2
44 # DRIVER_BINDING = gConSplitterConOutDriverBinding
45 # COMPONENT_NAME = gConSplitterConOutComponentName
46 # COMPONENT_NAME2 = gConSplitterConOutComponentName2
47 # DRIVER_BINDING = gConSplitterStdErrDriverBinding
48 # COMPONENT_NAME = gConSplitterStdErrComponentName
49 # COMPONENT_NAME2 = gConSplitterStdErrComponentName2
50 #
51
52 [Sources.common]
53 ConSplitterGraphics.c
54 ComponentName.c
55 ConSplitter.h
56 ConSplitter.c
57
58 [Packages]
59 MdePkg/MdePkg.dec
60 MdeModulePkg/MdeModulePkg.dec
61
62 [LibraryClasses]
63 UefiBootServicesTableLib
64 UefiRuntimeServicesTableLib
65 MemoryAllocationLib
66 BaseMemoryLib
67 BaseLib
68 UefiLib
69 UefiDriverEntryPoint
70 DebugLib
71 PcdLib
72
73 [Guids]
74 gEfiConsoleInDeviceGuid ## SOMETIMES_CONSUMES
75 gEfiStandardErrorDeviceGuid ## SOMETIMES_CONSUMES
76 gEfiConsoleOutDeviceGuid ## SOMETIMES_CONSUMES
77 gEfiPrimaryConsoleOutDeviceGuid ## PRODUCES
78 gEfiPrimaryConsoleInDeviceGuid ## PRODUCES
79 gEfiPrimaryStandardErrorDeviceGuid ## PRODUCES
80 gEfiGenericPlatformVariableGuid ## SOMETIMES_CONSUMES ## Variable:L"ConOutMode"
81
82 [Protocols]
83 gEfiConsoleControlProtocolGuid ## PRODUCES
84 gEfiSimplePointerProtocolGuid ## BY_START
85 gEfiAbsolutePointerProtocolGuid ## BY_START
86 gEfiSimpleTextInProtocolGuid ## BY_START
87 gEfiSimpleTextInputExProtocolGuid ## BY_START
88 gEfiSimpleTextOutProtocolGuid ## BY_START
89 gEfiGraphicsOutputProtocolGuid ## BY_START
90 gEfiUgaDrawProtocolGuid ## BY_START
91 gSimpleTextInExNotifyGuid ## PRODUCES
92
93
94 [FeaturePcd.common]
95 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport
96 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport
97 gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport
98
99 # [Event]
100 # ##
101 # # mConIn.LockEvent, used to record and check key sequence on StdIn. Periodic is 25ms.
102 # #
103 # EVENT_TYPE_PREIODIC_TIMER ## PRODUCES
104 #
105 #