]>
Commit | Line | Data |
---|---|---|
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 | |
2e293897 | 12 | # Copyright (c) 2006 - 2009, Intel Corporation\r |
87f8ccbe | 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 | |
c281c698 | 26 | BASE_NAME = CirrusLogic5430Dxe\r |
87f8ccbe | 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 | |
b9c6eef1 | 35 | PCI_VENDOR_ID = 0x1013\r |
36 | PCI_DEVICE_ID = 0x00A8\r | |
37 | PCI_CLASS_CODE = 0x030000\r | |
38 | PCI_REVISION = 0x00\r | |
39 | COMPRESS = TRUE\r | |
40 | \r | |
87f8ccbe | 41 | #\r |
42 | # The following information is for reference only and not required by the build tools.\r | |
43 | #\r | |
44 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC\r | |
45 | #\r | |
31f9e631 | 46 | # DRIVER_BINDING = gCirrusLogic5430DriverBinding\r |
47 | # COMPONENT_NAME = gCirrusLogic5430ComponentName\r | |
87f8ccbe | 48 | #\r |
49 | \r | |
50 | [Sources.common]\r | |
51 | ComponentName.c\r | |
52 | DriverSupportedEfiVersion.c\r | |
53 | CirrusLogic5430UgaDraw.c\r | |
54 | CirrusLogic5430GraphicsOutput.c\r | |
55 | CirrusLogic5430.c\r | |
56 | CirrusLogic5430.h\r | |
31f9e631 | 57 | Edid.c\r |
2e293897 | 58 | CirrusLogic5430I2c.h\r |
59 | CirrusLogic5430I2c.c\r | |
87f8ccbe | 60 | \r |
61 | [Packages]\r | |
62 | MdePkg/MdePkg.dec\r | |
63 | OptionRomPkg/OptionRomPkg.dec\r | |
64 | \r | |
65 | [LibraryClasses]\r | |
66 | UefiBootServicesTableLib\r | |
67 | MemoryAllocationLib\r | |
68 | UefiLib\r | |
69 | UefiDriverEntryPoint\r | |
70 | DebugLib\r | |
31f9e631 | 71 | BaseMemoryLib\r |
72 | DevicePathLib\r | |
2e293897 | 73 | TimerLib\r |
87f8ccbe | 74 | \r |
75 | [Protocols]\r | |
76 | gEfiDriverSupportedEfiVersionProtocolGuid # PROTOCOL ALWAYS_PRODUCED\r | |
77 | gEfiUgaDrawProtocolGuid # PROTOCOL BY_START\r | |
78 | gEfiGraphicsOutputProtocolGuid # PROTOCOL BY_START\r | |
31f9e631 | 79 | gEfiEdidDiscoveredProtocolGuid # PROTOCOL BY_START\r |
80 | gEfiEdidActiveProtocolGuid # PROTOCOL BY_START\r | |
81 | gEfiDevicePathProtocolGuid # PROTOCOL BY_START\r | |
87f8ccbe | 82 | gEfiPciIoProtocolGuid # PROTOCOL TO_START\r |
31f9e631 | 83 | gEfiEdidOverrideProtocolGuid # PROTOCOL TO_START\r |
84 | \r | |
85 | \r | |
87f8ccbe | 86 | [FeaturePcd.common]\r |
87 | gOptionRomPkgTokenSpaceGuid.PcdSupportGop\r | |
88 | gOptionRomPkgTokenSpaceGuid.PcdSupportUga\r | |
89 | \r | |
90 | [Pcd]\r | |
91 | gOptionRomPkgTokenSpaceGuid.PcdDriverSupportedEfiVersion\r |