]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaSerialDxe/IsaSerialDxe.inf
1. EDK_RELEASE_VERSION removed;
[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 - 2009, 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 EFI_SPECIFICATION_VERSION = 0x00020000
24 ENTRY_POINT = InitializeIsaSerial
25
26 #
27 # The following information is for reference only and not required by the build tools.
28 #
29 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
30 #
31 # DRIVER_BINDING = gSerialControllerDriver
32 # COMPONENT_NAME = gIsaSerialComponentName
33 #
34
35 [Sources.common]
36 ComponentName.c
37 ComponentName.h
38 Serial.h
39 Serial.c
40
41 [Packages]
42 MdePkg/MdePkg.dec
43 MdeModulePkg/MdeModulePkg.dec
44 IntelFrameworkPkg/IntelFrameworkPkg.dec
45 IntelFrameworkModulePkg/IntelFrameworkModulePkg.dec
46
47 [LibraryClasses]
48 PcdLib
49 ReportStatusCodeLib
50 UefiBootServicesTableLib
51 MemoryAllocationLib
52 BaseMemoryLib
53 DevicePathLib
54 UefiLib
55 BaseLib
56 UefiDriverEntryPoint
57 DebugLib
58
59 [Protocols]
60 gEfiIsaIoProtocolGuid # PROTOCOL TO_START
61 gEfiSerialIoProtocolGuid # PROTOCOL BY_START
62 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
63
64 [FixedPcd.common]
65 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultBaudRate|115200
66 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultDataBits|8
67 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultParity|1
68 gEfiMdePkgTokenSpaceGuid.PcdUartDefaultStopBits|1
69
70