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