]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/IsaSerialDxe.inf
b47023d149ab260e87cd776f3b3432cfdad0088c
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaSerialDxe / IsaSerialDxe.inf
1 ## @file
2 # Serial driver for standard UARTS on an ISA bus.
3 #
4 # Copyright (c) 2007 - 2010, Intel Corporation
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are licensed and made available under the terms and conditions of the BSD License
8 # which accompanies this distribution. The full text of the license may be found at
9 # http://opensource.org/licenses/bsd-license.php
10 #
11 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13 #
14 ##
15
16 [Defines]
17 INF_VERSION = 0x00010005
18 BASE_NAME = IsaSerialDxe
19 FILE_GUID = 93B80003-9FB3-11d4-9A3A-0090273FC14D
20 MODULE_TYPE = UEFI_DRIVER
21 VERSION_STRING = 1.0
22 ENTRY_POINT = InitializeIsaSerial
23
24 #
25 # The following information is for reference only and not required by the build tools.
26 #
27 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
28 #
29 # DRIVER_BINDING = gSerialControllerDriver
30 # COMPONENT_NAME = gIsaSerialComponentName
31 # COMPONENT_NAME2 = gIsaSerialComponentName2
32 #
33
34 [Sources]
35 ComponentName.c
36 Serial.h
37 Serial.c
38
39 [Packages]
40 MdePkg/MdePkg.dec
41 IntelFrameworkPkg/IntelFrameworkPkg.dec
42 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
43
44 [LibraryClasses]
45 PcdLib
46 ReportStatusCodeLib
47 UefiBootServicesTableLib
48 MemoryAllocationLib
49 BaseMemoryLib
50 DevicePathLib
51 UefiLib
52 UefiDriverEntryPoint
53 DebugLib
54
55 [Guids]
56 gEfiUartDevicePathGuid
57
58 [Protocols]
59 gEfiIsaIoProtocolGuid ## TO_START
60 gEfiDevicePathProtocolGuid ## TO_START
61 gEfiSerialIoProtocolGuid ## BY_START
62
63 [FeaturePcd]
64 gEfiIntelFrameworkModulePkgTokenSpaceGuid.PcdIsaBusSerialUseHalfHandshake|FALSE
65
66 [FixedPcd]
67 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|115200
68 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8
69 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1
70 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1
71