3 Copyright (c) 2006, Intel Corporation. All rights reserved.<BR>
4 This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
11 #include "EmuBusDriverDxe.h"
14 // EFI Component Name Functions
18 EmuBusDriverComponentNameGetDriverName (
19 IN EFI_COMPONENT_NAME_PROTOCOL
*This
,
21 OUT CHAR16
**DriverName
26 EmuBusDriverComponentNameGetControllerName (
27 IN EFI_COMPONENT_NAME_PROTOCOL
*This
,
28 IN EFI_HANDLE ControllerHandle
,
29 IN EFI_HANDLE ChildHandle OPTIONAL
,
31 OUT CHAR16
**ControllerName
35 // EFI Component Name Protocol
37 GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gEmuBusDriverComponentName
= {
38 EmuBusDriverComponentNameGetDriverName
,
39 EmuBusDriverComponentNameGetControllerName
,
44 // EFI Component Name 2 Protocol
46 GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gEmuBusDriverComponentName2
= {
47 (EFI_COMPONENT_NAME2_GET_DRIVER_NAME
) EmuBusDriverComponentNameGetDriverName
,
48 (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME
) EmuBusDriverComponentNameGetControllerName
,
52 GLOBAL_REMOVE_IF_UNREFERENCED EFI_UNICODE_STRING_TABLE mEmuBusDriverNameTable
[] = {
53 { "eng", L
"Emu Bus Driver" },
58 Retrieves a Unicode string that is the user readable name of the driver.
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.
67 @param This[in] A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or
68 EFI_COMPONENT_NAME_PROTOCOL instance.
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.
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.
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.
88 @retval EFI_INVALID_PARAMETER Language is NULL.
90 @retval EFI_INVALID_PARAMETER DriverName is NULL.
92 @retval EFI_UNSUPPORTED The driver specified by This does not support
93 the language specified by Language.
98 EmuBusDriverComponentNameGetDriverName (
99 IN EFI_COMPONENT_NAME_PROTOCOL
*This
,
101 OUT CHAR16
**DriverName
104 return LookupUnicodeString2 (
106 This
->SupportedLanguages
,
107 mEmuBusDriverNameTable
,
109 (BOOLEAN
)(This
== &gEmuBusDriverComponentName
)
114 Retrieves a Unicode string that is the user readable name of the controller
115 that is being managed by a driver.
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.
126 @param This[in] A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or
127 EFI_COMPONENT_NAME_PROTOCOL instance.
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
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
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.
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
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
164 @retval EFI_INVALID_PARAMETER ControllerHandle is not a valid EFI_HANDLE.
166 @retval EFI_INVALID_PARAMETER ChildHandle is not NULL and it is not a valid
169 @retval EFI_INVALID_PARAMETER Language is NULL.
171 @retval EFI_INVALID_PARAMETER ControllerName is NULL.
173 @retval EFI_UNSUPPORTED The driver specified by This is not currently
174 managing the controller specified by
175 ControllerHandle and ChildHandle.
177 @retval EFI_UNSUPPORTED The driver specified by This does not support
178 the language specified by Language.
183 EmuBusDriverComponentNameGetControllerName (
184 IN EFI_COMPONENT_NAME_PROTOCOL
*This
,
185 IN EFI_HANDLE ControllerHandle
,
186 IN EFI_HANDLE ChildHandle OPTIONAL
,
188 OUT CHAR16
**ControllerName
192 EMU_IO_THUNK_PROTOCOL
*EmuIo
;
193 EMU_IO_DEVICE
*Private
;
196 // Make sure this driver is currently managing ControllHandle
198 Status
= EfiTestManagedDevice (
200 gEmuBusDriverBinding
.DriverBindingHandle
,
201 &gEmuThunkProtocolGuid
203 if (EFI_ERROR (Status
)) {
208 // This is a bus driver, so ChildHandle can not be NULL.
210 if (ChildHandle
== NULL
) {
211 return EFI_UNSUPPORTED
;
214 Status
= EfiTestChildHandle (
217 &gEmuThunkProtocolGuid
219 if (EFI_ERROR (Status
)) {
224 // Get our context back
226 Status
= gBS
->OpenProtocol (
228 &gEmuIoThunkProtocolGuid
,
230 gEmuBusDriverBinding
.DriverBindingHandle
,
232 EFI_OPEN_PROTOCOL_GET_PROTOCOL
234 if (EFI_ERROR (Status
)) {
235 return EFI_UNSUPPORTED
;
238 Private
= EMU_IO_DEVICE_FROM_THIS (EmuIo
);
240 return LookupUnicodeString2 (
242 This
->SupportedLanguages
,
243 Private
->ControllerNameTable
,
245 (BOOLEAN
)(This
== &gEmuBusDriverComponentName
)