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