]> git.proxmox.com Git - mirror_edk2.git/blob - IntelFrameworkModulePkg/Bus/Isa/IsaFloppyDxe/IsaFloppyDxe.inf
58de16a5feeffd4f6e7485bf33d12a96caf434e5
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Isa / IsaFloppyDxe / IsaFloppyDxe.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 [Defines]
24 INF_VERSION = 0x00010005
25 BASE_NAME = IsaFloppyDxe
26 FILE_GUID = 0abd8284-6da3-4616-971a-83a5148067ba
27 MODULE_TYPE = DXE_DRIVER
28 VERSION_STRING = 1.0
29 EDK_RELEASE_VERSION = 0x00020000
30 EFI_SPECIFICATION_VERSION = 0x00020000
31
32 ENTRY_POINT = InitializeIsaFloppy
33
34 # VALID_ARCHITECTURES = IA32 X64 IPF EBC
35
36 [Sources.common]
37 ComponentName.c
38 ComponentName.h
39 IsaFloppyCtrl.c
40 IsaFloppyBlock.c
41 IsaFloppy.c
42 IsaFloppy.h
43
44 [Packages]
45 MdePkg/MdePkg.dec
46 IntelFrameworkPkg/IntelFrameworkPkg.dec
47
48 [LibraryClasses]
49 ReportStatusCodeLib
50 UefiBootServicesTableLib
51 MemoryAllocationLib
52 BaseMemoryLib
53 UefiLib
54 BaseLib
55 UefiDriverEntryPoint
56 DebugLib
57 TimerLib
58
59 [Protocols]
60 gEfiIsaIoProtocolGuid # PROTOCOL TO_START
61 gEfiBlockIoProtocolGuid # PROTOCOL BY_START
62 gEfiDevicePathProtocolGuid # PROTOCOL TO_START
63