ydong10 | b4c8f8e | 2011-12-16 05:48:06 +0000 | [diff] [blame] | 1 | ## @file
|
jljusten | eaf4f33 | 2011-04-12 15:08:51 +0000 | [diff] [blame] | 2 | # This driver is a sample implementation of the Graphics Output Protocol for
|
| 3 | # the QEMU (Cirrus Logic 5446) video controller.
|
| 4 | #
|
lzeng14 | 46293a4 | 2011-06-28 02:24:46 +0000 | [diff] [blame] | 5 | # Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
jljusten | eaf4f33 | 2011-04-12 15:08:51 +0000 | [diff] [blame] | 6 | #
|
| 7 | # This program and the accompanying materials
|
| 8 | # are licensed and made available under the terms and conditions of the BSD License
|
| 9 | # which accompanies this distribution. The full text of the license may be found at
|
| 10 | # http://opensource.org/licenses/bsd-license.php
|
| 11 | #
|
| 12 | # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
| 13 | # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
| 14 | #
|
ydong10 | b4c8f8e | 2011-12-16 05:48:06 +0000 | [diff] [blame] | 15 | ##
|
jljusten | eaf4f33 | 2011-04-12 15:08:51 +0000 | [diff] [blame] | 16 |
|
| 17 | [Defines]
|
| 18 | INF_VERSION = 0x00010005
|
| 19 | BASE_NAME = QemuVideoDxe
|
| 20 | FILE_GUID = e3752948-b9a1-4770-90c4-df41c38986be
|
| 21 | MODULE_TYPE = UEFI_DRIVER
|
| 22 | VERSION_STRING = 1.0
|
| 23 |
|
| 24 | ENTRY_POINT = InitializeQemuVideo
|
| 25 |
|
jljusten | eaf4f33 | 2011-04-12 15:08:51 +0000 | [diff] [blame] | 26 | #
|
| 27 | # The following information is for reference only and not required by the build tools.
|
| 28 | #
|
Laszlo Ersek | 84a75f7 | 2015-02-23 16:02:29 +0000 | [diff] [blame] | 29 | # VALID_ARCHITECTURES = IA32 X64 IPF EBC ARM AARCH64
|
jljusten | eaf4f33 | 2011-04-12 15:08:51 +0000 | [diff] [blame] | 30 | #
|
| 31 | # DRIVER_BINDING = gQemuVideoDriverBinding
|
| 32 | # COMPONENT_NAME = gQemuVideoComponentName
|
| 33 | #
|
| 34 |
|
| 35 | [Sources.common]
|
| 36 | ComponentName.c
|
| 37 | Driver.c
|
| 38 | DriverSupportedEfiVersion.c
|
| 39 | Gop.c
|
| 40 | Initialize.c
|
Laszlo Ersek | 84a75f7 | 2015-02-23 16:02:29 +0000 | [diff] [blame] | 41 |
|
| 42 | [Sources.Ia32, Sources.X64]
|
Laszlo Ersek | 9080334 | 2014-05-20 16:33:00 +0000 | [diff] [blame] | 43 | VbeShim.c
|
jljusten | eaf4f33 | 2011-04-12 15:08:51 +0000 | [diff] [blame] | 44 |
|
| 45 | [Packages]
|
| 46 | MdePkg/MdePkg.dec
|
| 47 | OptionRomPkg/OptionRomPkg.dec
|
Laszlo Ersek | 9080334 | 2014-05-20 16:33:00 +0000 | [diff] [blame] | 48 | OvmfPkg/OvmfPkg.dec
|
jljusten | eaf4f33 | 2011-04-12 15:08:51 +0000 | [diff] [blame] | 49 |
|
| 50 | [LibraryClasses]
|
| 51 | BaseMemoryLib
|
| 52 | BltLib
|
| 53 | DebugLib
|
| 54 | DevicePathLib
|
| 55 | MemoryAllocationLib
|
Laszlo Ersek | 9080334 | 2014-05-20 16:33:00 +0000 | [diff] [blame] | 56 | PciLib
|
| 57 | PrintLib
|
jljusten | eaf4f33 | 2011-04-12 15:08:51 +0000 | [diff] [blame] | 58 | TimerLib
|
| 59 | UefiBootServicesTableLib
|
| 60 | UefiDriverEntryPoint
|
| 61 | UefiLib
|
| 62 |
|
| 63 | [Protocols]
|
| 64 | gEfiDriverSupportedEfiVersionProtocolGuid # PROTOCOL ALWAYS_PRODUCED
|
| 65 | gEfiGraphicsOutputProtocolGuid # PROTOCOL BY_START
|
| 66 | gEfiDevicePathProtocolGuid # PROTOCOL BY_START
|
| 67 | gEfiPciIoProtocolGuid # PROTOCOL TO_START
|
| 68 |
|
| 69 | [Pcd]
|
| 70 | gOptionRomPkgTokenSpaceGuid.PcdDriverSupportedEfiVersion
|
| 71 |
|