]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Console/ConSplitterDxe/ConSplitterDxe.inf
730149d6c09b17e2388a0bf74788cbc6cefadfdf
[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 MemoryAllocationLib
65 BaseMemoryLib
66 BaseLib
67 UefiLib
68 UefiDriverEntryPoint
69 DebugLib
70 PcdLib
71
72 [Guids]
73 gEfiConsoleInDeviceGuid ## SOMETIMES_CONSUMES
74 gEfiStandardErrorDeviceGuid ## SOMETIMES_CONSUMES
75 gEfiConsoleOutDeviceGuid ## SOMETIMES_CONSUMES
76 gEfiPrimaryConsoleOutDeviceGuid ## PRODUCES
77 gEfiPrimaryConsoleInDeviceGuid ## PRODUCES
78 gEfiPrimaryStandardErrorDeviceGuid ## PRODUCES
79
80 [Protocols]
81 gEfiConsoleControlProtocolGuid ## PRODUCES
82 gEfiSimplePointerProtocolGuid ## BY_START
83 gEfiAbsolutePointerProtocolGuid ## BY_START
84 gEfiSimpleTextInProtocolGuid ## BY_START
85 gEfiSimpleTextInputExProtocolGuid ## BY_START
86 gEfiSimpleTextOutProtocolGuid ## BY_START
87 gEfiGraphicsOutputProtocolGuid ## BY_START
88 gEfiUgaDrawProtocolGuid ## BY_START
89
90
91 [FeaturePcd.common]
92 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutGopSupport
93 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutUgaSupport
94 gEfiMdePkgTokenSpaceGuid.PcdUgaConsumeSupport
95
96 [Pcd.common]
97 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutRow
98 gEfiMdeModulePkgTokenSpaceGuid.PcdConOutColumn
99
100 # [Event]
101 # ##
102 # # mConIn.LockEvent, used to record and check key sequence on StdIn. Periodic is 25ms.
103 # #
104 # EVENT_TYPE_PREIODIC_TIMER ## PRODUCES
105 #
106 #