]> git.proxmox.com Git - mirror_edk2.git/blob - EmulatorPkg/EmuSimpleFileSystemDxe/ComponentName.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / EmulatorPkg / EmuSimpleFileSystemDxe / ComponentName.c
1 /** @file
2
3 Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
4 SPDX-License-Identifier: BSD-2-Clause-Patent
5
6 **/
7
8 #include "EmuSimpleFileSystem.h"
9
10 //
11 // EFI Component Name Functions
12 //
13 EFI_STATUS
14 EFIAPI
15 EmuSimpleFileSystemComponentNameGetDriverName (
16 IN EFI_COMPONENT_NAME_PROTOCOL *This,
17 IN CHAR8 *Language,
18 OUT CHAR16 **DriverName
19 );
20
21 EFI_STATUS
22 EFIAPI
23 EmuSimpleFileSystemComponentNameGetControllerName (
24 IN EFI_COMPONENT_NAME_PROTOCOL *This,
25 IN EFI_HANDLE ControllerHandle,
26 IN EFI_HANDLE ChildHandle OPTIONAL,
27 IN CHAR8 *Language,
28 OUT CHAR16 **ControllerName
29 );
30
31 //
32 // EFI Component Name Protocol
33 //
34 GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gEmuSimpleFileSystemComponentName = {
35 EmuSimpleFileSystemComponentNameGetDriverName,
36 EmuSimpleFileSystemComponentNameGetControllerName,
37 "eng"
38 };
39
40 GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gEmuSimpleFileSystemComponentName2 = {
41 (EFI_COMPONENT_NAME2_GET_DRIVER_NAME)EmuSimpleFileSystemComponentNameGetDriverName,
42 (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME)EmuSimpleFileSystemComponentNameGetControllerName,
43 "en"
44 };
45
46 EFI_UNICODE_STRING_TABLE mEmuSimpleFileSystemDriverNameTable[] = {
47 {
48 "eng;en",
49 L"Emu Simple File System Driver"
50 },
51 {
52 NULL,
53 NULL
54 }
55 };
56
57 /**
58 Retrieves a Unicode string that is the user readable name of the driver.
59
60 This function retrieves the user readable name of a driver in the form of a
61 Unicode string. If the driver specified by This has a user readable name in
62 the language specified by Language, then a pointer to the driver name is
63 returned in DriverName, and EFI_SUCCESS is returned. If the driver specified
64 by This does not support the language specified by Language,
65 then EFI_UNSUPPORTED is returned.
66
67 @param This[in] A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or
68 EFI_COMPONENT_NAME_PROTOCOL instance.
69
70 @param Language[in] A pointer to a Null-terminated ASCII string
71 array indicating the language. This is the
72 language of the driver name that the caller is
73 requesting, and it must match one of the
74 languages specified in SupportedLanguages. The
75 number of languages supported by a driver is up
76 to the driver writer. Language is specified
77 in RFC 4646 or ISO 639-2 language code format.
78
79 @param DriverName[out] A pointer to the Unicode string to return.
80 This Unicode string is the name of the
81 driver specified by This in the language
82 specified by Language.
83
84 @retval EFI_SUCCESS The Unicode string for the Driver specified by
85 This and the language specified by Language was
86 returned in DriverName.
87
88 @retval EFI_INVALID_PARAMETER Language is NULL.
89
90 @retval EFI_INVALID_PARAMETER DriverName is NULL.
91
92 @retval EFI_UNSUPPORTED The driver specified by This does not support
93 the language specified by Language.
94
95 **/
96 EFI_STATUS
97 EFIAPI
98 EmuSimpleFileSystemComponentNameGetDriverName (
99 IN EFI_COMPONENT_NAME_PROTOCOL *This,
100 IN CHAR8 *Language,
101 OUT CHAR16 **DriverName
102 )
103 {
104 return LookupUnicodeString2 (
105 Language,
106 This->SupportedLanguages,
107 mEmuSimpleFileSystemDriverNameTable,
108 DriverName,
109 (BOOLEAN)(This == &gEmuSimpleFileSystemComponentName)
110 );
111 }
112
113 /**
114 Retrieves a Unicode string that is the user readable name of the controller
115 that is being managed by a driver.
116
117 This function retrieves the user readable name of the controller specified by
118 ControllerHandle and ChildHandle in the form of a Unicode string. If the
119 driver specified by This has a user readable name in the language specified by
120 Language, then a pointer to the controller name is returned in ControllerName,
121 and EFI_SUCCESS is returned. If the driver specified by This is not currently
122 managing the controller specified by ControllerHandle and ChildHandle,
123 then EFI_UNSUPPORTED is returned. If the driver specified by This does not
124 support the language specified by Language, then EFI_UNSUPPORTED is returned.
125
126 @param This[in] A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or
127 EFI_COMPONENT_NAME_PROTOCOL instance.
128
129 @param ControllerHandle[in] The handle of a controller that the driver
130 specified by This is managing. This handle
131 specifies the controller whose name is to be
132 returned.
133
134 @param ChildHandle[in] The handle of the child controller to retrieve
135 the name of. This is an optional parameter that
136 may be NULL. It will be NULL for device
137 drivers. It will also be NULL for a bus drivers
138 that wish to retrieve the name of the bus
139 controller. It will not be NULL for a bus
140 driver that wishes to retrieve the name of a
141 child controller.
142
143 @param Language[in] A pointer to a Null-terminated ASCII string
144 array indicating the language. This is the
145 language of the driver name that the caller is
146 requesting, and it must match one of the
147 languages specified in SupportedLanguages. The
148 number of languages supported by a driver is up
149 to the driver writer. Language is specified in
150 RFC 4646 or ISO 639-2 language code format.
151
152 @param ControllerName[out] A pointer to the Unicode string to return.
153 This Unicode string is the name of the
154 controller specified by ControllerHandle and
155 ChildHandle in the language specified by
156 Language from the point of view of the driver
157 specified by This.
158
159 @retval EFI_SUCCESS The Unicode string for the user readable name in
160 the language specified by Language for the
161 driver specified by This was returned in
162 DriverName.
163
164 @retval EFI_INVALID_PARAMETER ControllerHandle is not a valid EFI_HANDLE.
165
166 @retval EFI_INVALID_PARAMETER ChildHandle is not NULL and it is not a valid
167 EFI_HANDLE.
168
169 @retval EFI_INVALID_PARAMETER Language is NULL.
170
171 @retval EFI_INVALID_PARAMETER ControllerName is NULL.
172
173 @retval EFI_UNSUPPORTED The driver specified by This is not currently
174 managing the controller specified by
175 ControllerHandle and ChildHandle.
176
177 @retval EFI_UNSUPPORTED The driver specified by This does not support
178 the language specified by Language.
179
180 **/
181 EFI_STATUS
182 EFIAPI
183 EmuSimpleFileSystemComponentNameGetControllerName (
184 IN EFI_COMPONENT_NAME_PROTOCOL *This,
185 IN EFI_HANDLE ControllerHandle,
186 IN EFI_HANDLE ChildHandle OPTIONAL,
187 IN CHAR8 *Language,
188 OUT CHAR16 **ControllerName
189 )
190 {
191 EFI_STATUS Status;
192 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL *SimpleFileSystem;
193 EMU_SIMPLE_FILE_SYSTEM_PRIVATE *Private;
194
195 //
196 // This is a device driver, so ChildHandle must be NULL.
197 //
198 if (ChildHandle != NULL) {
199 return EFI_UNSUPPORTED;
200 }
201
202 //
203 // Make sure this driver is currently managing ControllerHandle
204 //
205 Status = EfiTestManagedDevice (
206 ControllerHandle,
207 gEmuSimpleFileSystemDriverBinding.DriverBindingHandle,
208 &gEmuIoThunkProtocolGuid
209 );
210 if (EFI_ERROR (Status)) {
211 return EFI_UNSUPPORTED;
212 }
213
214 //
215 // Get our context back
216 //
217 Status = gBS->OpenProtocol (
218 ControllerHandle,
219 &gEfiSimpleFileSystemProtocolGuid,
220 (VOID **)&SimpleFileSystem,
221 gEmuSimpleFileSystemDriverBinding.DriverBindingHandle,
222 ControllerHandle,
223 EFI_OPEN_PROTOCOL_GET_PROTOCOL
224 );
225 if (EFI_ERROR (Status)) {
226 return EFI_UNSUPPORTED;
227 }
228
229 Private = EMU_SIMPLE_FILE_SYSTEM_PRIVATE_DATA_FROM_THIS (SimpleFileSystem);
230
231 return LookupUnicodeString2 (
232 Language,
233 This->SupportedLanguages,
234 Private->ControllerNameTable,
235 ControllerName,
236 (BOOLEAN)(This == &gEmuSimpleFileSystemComponentName)
237 );
238 }