Last change
on this file since 100681 was 100681, checked in by vboxsync, 17 months ago |
Devices/EFI/Firmware: Add skeleton for a VMware SVGA 3 video controller driver required for ARM as there is no legacy VGA support, bugref:10490 [build fix]
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.7 KB
|
Line | |
---|
1 | ## @file
|
---|
2 | # This driver is a sample implementation of the Graphics Output Protocol for
|
---|
3 | # the VMware SVGA 3 video controller (based on QemuVideoDxe).
|
---|
4 | #
|
---|
5 | # Copyright (c) 2023, Oracle and/or its affiliates.
|
---|
6 | # Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
|
---|
7 | #
|
---|
8 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | #
|
---|
10 | ##
|
---|
11 |
|
---|
12 | [Defines]
|
---|
13 | INF_VERSION = 0x00010005
|
---|
14 | BASE_NAME = VmwSvga3VideoDxe
|
---|
15 | FILE_GUID = 764e7341-35ac-4415-bd3e-000ff455d5b1
|
---|
16 | MODULE_TYPE = UEFI_DRIVER
|
---|
17 | VERSION_STRING = 1.0
|
---|
18 |
|
---|
19 | ENTRY_POINT = InitializeVmwSvga3Video
|
---|
20 |
|
---|
21 | #
|
---|
22 | # The following information is for reference only and not required by the build tools.
|
---|
23 | #
|
---|
24 | # VALID_ARCHITECTURES = IA32 X64 EBC
|
---|
25 | #
|
---|
26 | # DRIVER_BINDING = gVmwSvga3VideoDriverBinding
|
---|
27 | # COMPONENT_NAME = gVmwSvga3VideoComponentName
|
---|
28 | #
|
---|
29 |
|
---|
30 | [Sources.common]
|
---|
31 | ComponentName.c
|
---|
32 | Driver.c
|
---|
33 | Gop.c
|
---|
34 | VmwSvga3.h
|
---|
35 |
|
---|
36 | [Packages]
|
---|
37 | MdePkg/MdePkg.dec
|
---|
38 | MdeModulePkg/MdeModulePkg.dec
|
---|
39 | VBoxPkg/VBoxPkg.dec
|
---|
40 |
|
---|
41 | [LibraryClasses]
|
---|
42 | BaseMemoryLib
|
---|
43 | FrameBufferBltLib
|
---|
44 | DebugLib
|
---|
45 | DevicePathLib
|
---|
46 | MemoryAllocationLib
|
---|
47 | PcdLib
|
---|
48 | PciLib
|
---|
49 | PrintLib
|
---|
50 | TimerLib
|
---|
51 | UefiBootServicesTableLib
|
---|
52 | UefiDriverEntryPoint
|
---|
53 | UefiLib
|
---|
54 |
|
---|
55 | [Protocols]
|
---|
56 | gEfiGraphicsOutputProtocolGuid # PROTOCOL BY_START
|
---|
57 | gEfiDevicePathProtocolGuid # PROTOCOL BY_START
|
---|
58 | gEfiPciIoProtocolGuid # PROTOCOL TO_START
|
---|
59 |
|
---|
60 | [Pcd]
|
---|
61 | gEfiMdeModulePkgTokenSpaceGuid.PcdNullPointerDetectionPropertyMask
|
---|
62 | gEfiMdeModulePkgTokenSpaceGuid.PcdVideoHorizontalResolution
|
---|
63 | gEfiMdeModulePkgTokenSpaceGuid.PcdVideoVerticalResolution
|
---|
Note:
See
TracBrowser
for help on using the repository browser.