87f8ccbe |
1 | #/** @file\r |
2 | # Component description file for CirrusLogic5430 module\r |
3 | #\r |
4 | # Cirrus Logic 5430 Controller Driver.This driver is a sample implementation\r |
5 | # of the UGA Draw Protocol for the Cirrus Logic 5430 family of PCI video controllers.\r |
6 | # This driver is only usable in the EFI pre-boot environment. This sample is\r |
7 | # intended to show how the UGA Draw Protocol is able to function. The UGA I/O\r |
8 | # Protocol is not implemented in this sample. A fully compliant EFI UGA driver\r |
9 | # requires both the UGA Draw and the UGA I/O Protocol. Please refer to Microsoft's\r |
10 | # documentation on UGA for details on how to write a UGA driver that is able\r |
11 | # to function both in the EFI pre-boot environment and from the OS runtime.\r |
12 | # Copyright (c) 2006 - 2007, Intel Corporation\r |
13 | #\r |
14 | # All rights reserved. This program and the accompanying materials\r |
15 | # are licensed and made available under the terms and conditions of the BSD License\r |
16 | # which accompanies this distribution. The full text of the license may be found at\r |
17 | # http://opensource.org/licenses/bsd-license.php\r |
18 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r |
19 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r |
20 | #\r |
21 | #\r |
22 | #**/\r |
23 | \r |
24 | [Defines]\r |
25 | INF_VERSION = 0x00010005\r |
26 | BASE_NAME = CirrusLogic5430UgaDraw\r |
27 | FILE_GUID = 555F76EA-785F-40d7-9174-153C43636C68\r |
28 | MODULE_TYPE = UEFI_DRIVER\r |
29 | VERSION_STRING = 1.0\r |
30 | EDK_RELEASE_VERSION = 0x00020000\r |
31 | EFI_SPECIFICATION_VERSION = 0x00020000\r |
32 | \r |
33 | ENTRY_POINT = InitializeCirrusLogic5430\r |
34 | \r |
35 | #\r |
36 | # The following information is for reference only and not required by the build tools.\r |
37 | #\r |
38 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC\r |
39 | #\r |
40 | # DRIVER_BINDING = gCirrusLogic5430DriverBinding \r |
41 | # COMPONENT_NAME = gCirrusLogic5430ComponentName \r |
42 | #\r |
43 | \r |
44 | [Sources.common]\r |
45 | ComponentName.c\r |
46 | DriverSupportedEfiVersion.c\r |
47 | CirrusLogic5430UgaDraw.c\r |
48 | CirrusLogic5430GraphicsOutput.c\r |
49 | CirrusLogic5430.c\r |
50 | CirrusLogic5430.h\r |
51 | \r |
52 | [Packages]\r |
53 | MdePkg/MdePkg.dec\r |
54 | OptionRomPkg/OptionRomPkg.dec\r |
55 | \r |
56 | [LibraryClasses]\r |
57 | UefiBootServicesTableLib\r |
58 | MemoryAllocationLib\r |
59 | UefiLib\r |
60 | UefiDriverEntryPoint\r |
61 | DebugLib\r |
62 | \r |
63 | \r |
64 | [Protocols]\r |
65 | gEfiDriverSupportedEfiVersionProtocolGuid # PROTOCOL ALWAYS_PRODUCED\r |
66 | gEfiUgaDrawProtocolGuid # PROTOCOL BY_START\r |
67 | gEfiGraphicsOutputProtocolGuid # PROTOCOL BY_START\r |
68 | gEfiPciIoProtocolGuid # PROTOCOL TO_START\r |
69 | \r |
70 | [FeaturePcd.common]\r |
71 | gOptionRomPkgTokenSpaceGuid.PcdSupportGop\r |
72 | gOptionRomPkgTokenSpaceGuid.PcdSupportUga\r |
73 | \r |
74 | [Pcd]\r |
75 | gOptionRomPkgTokenSpaceGuid.PcdDriverSupportedEfiVersion\r |