]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaFloppy/Dxe/IsaFloppy.inf
906cc96eaaf343fc4f366430395e2c4e53bc7614
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaFloppy / Dxe / IsaFloppy.inf
1 #/** @file
2 # Component description file for IsaFloppy module.
3 #
4 # ISA Floppy Driver
5 # 1. Support two types diskette drive
6 # 1.44M drive and 2.88M drive (and now only support 1.44M)
7 # 2. Support two diskette drives
8 # 3. Use DMA channel 2 to transfer data
9 # 4. Do not use interrupt
10 # 5. Support diskette change line signal and write protect
11 #
12 # Conforming to EFI driver model
13 # Copyright (c) 2006 - 2007, Intel Corporation.
14 #
15 # All rights reserved.
16 # This software and associated documentation (if any) is furnished
17 # under a license and may only be used or copied in accordance
18 # with the terms of the license. Except as permitted by such
19 # license, no part of this software or documentation may be
20 # reproduced, stored in a retrieval system, or transmitted in any
21 # form or by any means without the express written consent of
22 # Intel Corporation.
23 #
24 #
25 #**/
26
27 ################################################################################
28 #
29 # Defines Section - statements that will be processed to create a Makefile.
30 #
31 ################################################################################
32 [Defines]
33 INF_VERSION = 0x00010005
34 BASE_NAME = IsaFloppy
35 FILE_GUID = 0abd8284-6da3-4616-971a-83a5148067ba
36 MODULE_TYPE = DXE_DRIVER
37 VERSION_STRING = 1.0
38 EDK_RELEASE_VERSION = 0x00020000
39 EFI_SPECIFICATION_VERSION = 0x00020000
40
41 ENTRY_POINT = InitializeIsaFloppy
42
43 #
44 # The following information is for reference only and not required by the build tools.
45 #
46 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
47 #
48 # DRIVER_BINDING = gFdcControllerDriver
49 # COMPONENT_NAME = gIsaFloppyComponentName
50 # Create Event Guid C Name: Event Type: EVENT_TYPE_PERIODIC_TIMER
51 #
52 #
53
54 ################################################################################
55 #
56 # Sources Section - list of files that are required for the build to succeed.
57 #
58 ################################################################################
59
60 [Sources.common]
61 ComponentName.c
62 ComponentName.h
63 IsaFloppyCtrl.c
64 IsaFloppyBlock.c
65 IsaFloppy.c
66 IsaFloppy.h
67 EntryPoint.c
68
69 ################################################################################
70 #
71 # Package Dependency Section - list of Package files that are required for
72 # this module.
73 #
74 ################################################################################
75 [Packages]
76 MdePkg/MdePkg.dec
77 IntelFrameworkPkg/IntelFrameworkPkg.dec
78
79 ################################################################################
80 #
81 # Library Class Section - list of Library Classes that are required for
82 # this module.
83 #
84 ################################################################################
85
86 [LibraryClasses]
87 ReportStatusCodeLib
88 UefiBootServicesTableLib
89 MemoryAllocationLib
90 BaseMemoryLib
91 UefiLib
92 BaseLib
93 UefiDriverEntryPoint
94 DebugLib
95 TimerLib
96
97
98 ################################################################################
99 #
100 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
101 # that this module uses or produces.
102 #
103 ################################################################################
104
105 [Protocols]
106 gEfiIsaIoProtocolGuid # PROTOCOL TO_START
107 gEfiBlockIoProtocolGuid # PROTOCOL BY_START
108 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
109