1## @file
2# IDE Controller Init driver that provide IDE_CONTROLLER_INIT protocol and will be used by
3# IDE Bus driver to support platform dependent timing information.
4#
5# Copyright (c) 2008 - 2015, Intel Corporation. All rights reserved.<BR>
6# This program and the accompanying materials
7# are licensed and made available under the terms and conditions of the BSD License
8# which accompanies this distribution.  The full text of the license may be found at
9# http://opensource.org/licenses/bsd-license.php
10#
11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13#
14##
15
16[Defines]
17  INF_VERSION                    = 0x00010005
18  BASE_NAME                      = IdeController
19  MODULE_UNI_FILE                = IdeController.uni
20  FILE_GUID                      = 99549F44-49BB-4820-B9D2-901329412D67
21  MODULE_TYPE                    = UEFI_DRIVER
22  VERSION_STRING                 = 1.0
23  ENTRY_POINT                    = InitializeIdeControllerDriver
24
25#
26# The following information is for reference only and not required by the build tools.
27#
28#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
29#
30
31[Sources]
32  ComponentName.c
33  IdeController.c
34  IdeController.h
35
36[Packages]
37  MdePkg/MdePkg.dec
38
39[LibraryClasses]
40  UefiDriverEntryPoint
41  DebugLib
42  UefiLib
43  BaseLib
44  BaseMemoryLib
45  MemoryAllocationLib
46  UefiBootServicesTableLib
47
48[Protocols]
49  gEfiPciIoProtocolGuid             ## TO_START
50  gEfiIdeControllerInitProtocolGuid ## BY_START
51[UserExtensions.TianoCore."ExtraFiles"]
52  IdeControllerExtra.uni
53