]> git.proxmox.com Git - mirror_edk2.git/blame - IntelFrameworkModulePkg/Bus/Pci/VgaMiniPortDxe/ComponentName.c
IntelFrameworkModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / IntelFrameworkModulePkg / Bus / Pci / VgaMiniPortDxe / ComponentName.c
CommitLineData
733f03aa 1/** @file\r
269e4559 2 Implements EFI Component Name Protocol for VGA Mini Port Driver.\r
0a6f4824
LG
3\r
4Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
c0a00b14 5SPDX-License-Identifier: BSD-2-Clause-Patent\r
733f03aa 6\r
7**/\r
8\r
9#include "VgaMiniPort.h"\r
10\r
733f03aa 11\r
12//\r
13// EFI Component Name Protocol\r
14//\r
1307dcd7 15GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gPciVgaMiniPortComponentName = {\r
733f03aa 16 PciVgaMiniPortComponentNameGetDriverName,\r
17 PciVgaMiniPortComponentNameGetControllerName,\r
18 "eng"\r
1307dcd7 19};\r
733f03aa 20\r
21//\r
22// EFI Component Name 2 Protocol\r
23//\r
1307dcd7 24GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gPciVgaMiniPortComponentName2 = {\r
733f03aa 25 (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) PciVgaMiniPortComponentNameGetDriverName,\r
26 (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) PciVgaMiniPortComponentNameGetControllerName,\r
27 "en"\r
1307dcd7 28};\r
733f03aa 29\r
30\r
d1aeb0bd 31GLOBAL_REMOVE_IF_UNREFERENCED EFI_UNICODE_STRING_TABLE mPciVgaMiniPortDriverNameTable[] = {\r
733f03aa 32 {\r
33 "eng;en",\r
34 L"PCI VGA Mini Port Driver"\r
35 },\r
36 {\r
37 NULL,\r
38 NULL\r
39 }\r
40};\r
41\r
42/**\r
43 Retrieves a Unicode string that is the user readable name of the driver.\r
44\r
45 This function retrieves the user readable name of a driver in the form of a\r
46 Unicode string. If the driver specified by This has a user readable name in\r
47 the language specified by Language, then a pointer to the driver name is\r
48 returned in DriverName, and EFI_SUCCESS is returned. If the driver specified\r
49 by This does not support the language specified by Language,\r
50 then EFI_UNSUPPORTED is returned.\r
51\r
269e4559 52 @param This A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or\r
733f03aa 53 EFI_COMPONENT_NAME_PROTOCOL instance.\r
269e4559 54 @param Language A pointer to a Null-terminated ASCII string\r
733f03aa 55 array indicating the language. This is the\r
56 language of the driver name that the caller is\r
57 requesting, and it must match one of the\r
58 languages specified in SupportedLanguages. The\r
59 number of languages supported by a driver is up\r
60 to the driver writer. Language is specified\r
4bca47e1 61 in RFC 4646 or ISO 639-2 language code format.\r
269e4559 62 @param DriverName A pointer to the Unicode string to return.\r
733f03aa 63 This Unicode string is the name of the\r
64 driver specified by This in the language\r
65 specified by Language.\r
66\r
67 @retval EFI_SUCCESS The Unicode string for the Driver specified by\r
68 This and the language specified by Language was\r
69 returned in DriverName.\r
733f03aa 70 @retval EFI_INVALID_PARAMETER Language is NULL.\r
733f03aa 71 @retval EFI_INVALID_PARAMETER DriverName is NULL.\r
733f03aa 72 @retval EFI_UNSUPPORTED The driver specified by This does not support\r
73 the language specified by Language.\r
74\r
75**/\r
76EFI_STATUS\r
77EFIAPI\r
78PciVgaMiniPortComponentNameGetDriverName (\r
79 IN EFI_COMPONENT_NAME_PROTOCOL *This,\r
80 IN CHAR8 *Language,\r
81 OUT CHAR16 **DriverName\r
82 )\r
83{\r
84 return LookupUnicodeString2 (\r
85 Language,\r
86 This->SupportedLanguages,\r
87 mPciVgaMiniPortDriverNameTable,\r
88 DriverName,\r
89 (BOOLEAN)(This == &gPciVgaMiniPortComponentName)\r
90 );\r
91}\r
92\r
93/**\r
94 Retrieves a Unicode string that is the user readable name of the controller\r
95 that is being managed by a driver.\r
96\r
97 This function retrieves the user readable name of the controller specified by\r
98 ControllerHandle and ChildHandle in the form of a Unicode string. If the\r
99 driver specified by This has a user readable name in the language specified by\r
100 Language, then a pointer to the controller name is returned in ControllerName,\r
101 and EFI_SUCCESS is returned. If the driver specified by This is not currently\r
102 managing the controller specified by ControllerHandle and ChildHandle,\r
103 then EFI_UNSUPPORTED is returned. If the driver specified by This does not\r
104 support the language specified by Language, then EFI_UNSUPPORTED is returned.\r
105\r
269e4559 106 @param This A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or\r
733f03aa 107 EFI_COMPONENT_NAME_PROTOCOL instance.\r
269e4559 108 @param ControllerHandle The handle of a controller that the driver\r
733f03aa 109 specified by This is managing. This handle\r
110 specifies the controller whose name is to be\r
111 returned.\r
269e4559 112 @param ChildHandle The handle of the child controller to retrieve\r
733f03aa 113 the name of. This is an optional parameter that\r
114 may be NULL. It will be NULL for device\r
115 drivers. It will also be NULL for a bus drivers\r
116 that wish to retrieve the name of the bus\r
117 controller. It will not be NULL for a bus\r
118 driver that wishes to retrieve the name of a\r
119 child controller.\r
269e4559 120 @param Language A pointer to a Null-terminated ASCII string\r
733f03aa 121 array indicating the language. This is the\r
122 language of the driver name that the caller is\r
123 requesting, and it must match one of the\r
124 languages specified in SupportedLanguages. The\r
125 number of languages supported by a driver is up\r
126 to the driver writer. Language is specified in\r
4bca47e1 127 RFC 4646 or ISO 639-2 language code format.\r
269e4559 128 @param ControllerName A pointer to the Unicode string to return.\r
733f03aa 129 This Unicode string is the name of the\r
130 controller specified by ControllerHandle and\r
131 ChildHandle in the language specified by\r
132 Language from the point of view of the driver\r
133 specified by This.\r
134\r
135 @retval EFI_SUCCESS The Unicode string for the user readable name in\r
136 the language specified by Language for the\r
137 driver specified by This was returned in\r
138 DriverName.\r
c2d9a4d2 139 @retval EFI_INVALID_PARAMETER ControllerHandle is NULL.\r
733f03aa 140 @retval EFI_INVALID_PARAMETER ChildHandle is not NULL and it is not a valid\r
141 EFI_HANDLE.\r
733f03aa 142 @retval EFI_INVALID_PARAMETER Language is NULL.\r
733f03aa 143 @retval EFI_INVALID_PARAMETER ControllerName is NULL.\r
733f03aa 144 @retval EFI_UNSUPPORTED The driver specified by This is not currently\r
145 managing the controller specified by\r
146 ControllerHandle and ChildHandle.\r
733f03aa 147 @retval EFI_UNSUPPORTED The driver specified by This does not support\r
148 the language specified by Language.\r
149\r
150**/\r
151EFI_STATUS\r
152EFIAPI\r
153PciVgaMiniPortComponentNameGetControllerName (\r
154 IN EFI_COMPONENT_NAME_PROTOCOL *This,\r
155 IN EFI_HANDLE ControllerHandle,\r
156 IN EFI_HANDLE ChildHandle OPTIONAL,\r
157 IN CHAR8 *Language,\r
158 OUT CHAR16 **ControllerName\r
159 )\r
160{\r
161 return EFI_UNSUPPORTED;\r
162}\r