hc
2024-03-25 edb30157bad0c0001c32b854271ace01d3b9a16a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#/** @file
# USB DisplayLink driver that implements blt and EDID commands
#
# USB DisplayLink driver consumes I/O Protocol and Device Path Protocol, and produces
# Graphics Output Protocol on DisplayLink devices.
# 1. DisplayLink reference
# 2. UEFI Specification, v2.1
#
#  Copyright (c) 2018-2019, DisplayLink (UK) Ltd. All rights reserved.
#
#  SPDX-License-Identifier: BSD-2-Clause-Patent
#
#**/
 
 
[Defines]
  INF_VERSION                    = 0x0001001B
  BASE_NAME                      = DisplayLinkGop
  FILE_GUID                      = 2D2E62AA-9ECF-43b7-8219-94E7FC713DFF
  MODULE_TYPE                    = UEFI_DRIVER
  VERSION_STRING                 = 1.0
  ENTRY_POINT                    = UsbDisplayLinkDriverBindingEntryPoint
  UNLOAD_IMAGE                   = UsbDisplayLinkDriverCombinedGopUnload
  INF_DRIVER_VERSION             = 0x00000001
 
[Sources]
  CapabilityDescriptor.c
  ComponentName.c
  Edid.c
  Edid.h
  Gop.c
  UsbDescriptors.c
  UsbDescriptors.h
  UsbDisplayLink.c
  UsbDisplayLink.h
  UsbTransfer.c
  VideoModes.c
 
[Packages]
  MdePkg/MdePkg.dec
 
[LibraryClasses]
  BaseMemoryLib
  DebugLib
  MemoryAllocationLib
  ReportStatusCodeLib
  UefiBootServicesTableLib
  UefiDriverEntryPoint
  UefiLib
  UefiUsbLib
 
[Protocols]
  gEfiUsbIoProtocolGuid                         ## TO_START
  gEfiEdidActiveProtocolGuid                    # PROTOCOL BY_START
  gEfiEdidDiscoveredProtocolGuid                # PROTOCOL BY_START
  gEfiEdidOverrideProtocolGuid                  # PROTOCOL TO_START
  gEfiHiiDatabaseProtocolGuid
  gEfiHiiFontProtocolGuid
 
[Guids]
  gEfiEventExitBootServicesGuid
  gEfiGlobalVariableGuid
 
[Pcd]
  gEfiMdePkgTokenSpaceGuid.PcdUefiLibMaxPrintBufferSize     ## CONSUMES