]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaFloppy/Dxe/IsaFloppy.inf
1351b0e23757b17488d73b83da2088a5bc82934a
[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 #
14 # Copyright (c) 2006 - 2007, Intel Corporation<BR>
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 #
20 #
21 #**/
22
23 ################################################################################
24 #
25 # Defines Section - statements that will be processed to create a Makefile.
26 #
27 ################################################################################
28 [Defines]
29 INF_VERSION = 0x00010005
30 BASE_NAME = IsaFloppy
31 FILE_GUID = 0abd8284-6da3-4616-971a-83a5148067ba
32 MODULE_TYPE = DXE_DRIVER
33 VERSION_STRING = 1.0
34 EDK_RELEASE_VERSION = 0x00020000
35 EFI_SPECIFICATION_VERSION = 0x00020000
36
37 ENTRY_POINT = InitializeIsaFloppy
38
39 #
40 # The following information is for reference only and not required by the build tools.
41 #
42 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
43 #
44 # DRIVER_BINDING = gFdcControllerDriver
45 # COMPONENT_NAME = gIsaFloppyComponentName
46 # Create Event Guid C Name: Event Type: EVENT_TYPE_PERIODIC_TIMER
47 #
48 #
49
50 ################################################################################
51 #
52 # Sources Section - list of files that are required for the build to succeed.
53 #
54 ################################################################################
55
56 [Sources.common]
57 ComponentName.c
58 ComponentName.h
59 IsaFloppyCtrl.c
60 IsaFloppyBlock.c
61 IsaFloppy.c
62 IsaFloppy.h
63
64 ################################################################################
65 #
66 # Package Dependency Section - list of Package files that are required for
67 # this module.
68 #
69 ################################################################################
70 [Packages]
71 MdePkg/MdePkg.dec
72 IntelFrameworkPkg/IntelFrameworkPkg.dec
73
74 ################################################################################
75 #
76 # Library Class Section - list of Library Classes that are required for
77 # this module.
78 #
79 ################################################################################
80
81 [LibraryClasses]
82 ReportStatusCodeLib
83 UefiBootServicesTableLib
84 MemoryAllocationLib
85 BaseMemoryLib
86 UefiLib
87 BaseLib
88 UefiDriverEntryPoint
89 DebugLib
90 TimerLib
91
92
93 ################################################################################
94 #
95 # Protocol C Name Section - list of Protocol and Protocol Notify C Names
96 # that this module uses or produces.
97 #
98 ################################################################################
99
100 [Protocols]
101 gEfiIsaIoProtocolGuid # PROTOCOL TO_START
102 gEfiBlockIoProtocolGuid # PROTOCOL BY_START
103 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
104