]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Disk/DiskIoDxe/ComponentName.c
e957212f275b15540cd955d84705faad34698cdc
[mirror_edk2.git] / MdeModulePkg / Universal / Disk / DiskIoDxe / ComponentName.c
1 /** @file
2 UEFI Component Name protocol for DiskIo driver.
3
4 Copyright (c) 2006 - 2007, Intel Corporation
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include "DiskIo.h"
16
17 //
18 // EFI Component Name Protocol
19 //
20 GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gDiskIoComponentName = {
21 DiskIoComponentNameGetDriverName,
22 DiskIoComponentNameGetControllerName,
23 "eng"
24 };
25
26 //
27 // EFI Component Name 2 Protocol
28 //
29 GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gDiskIoComponentName2 = {
30 (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) DiskIoComponentNameGetDriverName,
31 (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) DiskIoComponentNameGetControllerName,
32 "en"
33 };
34
35
36 static EFI_UNICODE_STRING_TABLE mDiskIoDriverNameTable[] = {
37 {
38 "eng;en",
39 (CHAR16 *)L"Generic Disk I/O Driver"
40 },
41 {
42 NULL,
43 NULL
44 }
45 };
46
47
48
49 /**
50 Retrieves a Unicode string that is the user readable name of the driver.
51
52 This function retrieves the user readable name of a driver in the form of a
53 Unicode string. If the driver specified by This has a user readable name in
54 the language specified by Language, then a pointer to the driver name is
55 returned in DriverName, and EFI_SUCCESS is returned. If the driver specified
56 by This does not support the language specified by Language,
57 then EFI_UNSUPPORTED is returned.
58
59 @param This[in] A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or
60 EFI_COMPONENT_NAME_PROTOCOL instance.
61
62 @param Language[in] A pointer to a Null-terminated ASCII string
63 array indicating the language. This is the
64 language of the driver name that the caller is
65 requesting, and it must match one of the
66 languages specified in SupportedLanguages. The
67 number of languages supported by a driver is up
68 to the driver writer. Language is specified
69 in RFC 3066 or ISO 639-2 language code format.
70
71 @param DriverName[out] A pointer to the Unicode string to return.
72 This Unicode string is the name of the
73 driver specified by This in the language
74 specified by Language.
75
76 @retval EFI_SUCCESS The Unicode string for the Driver specified by
77 This and the language specified by Language was
78 returned in DriverName.
79
80 @retval EFI_INVALID_PARAMETER Language is NULL.
81
82 @retval EFI_INVALID_PARAMETER DriverName is NULL.
83
84 @retval EFI_UNSUPPORTED The driver specified by This does not support
85 the language specified by Language.
86
87 **/
88 EFI_STATUS
89 EFIAPI
90 DiskIoComponentNameGetDriverName (
91 IN EFI_COMPONENT_NAME_PROTOCOL *This,
92 IN CHAR8 *Language,
93 OUT CHAR16 **DriverName
94 )
95 {
96 return LookupUnicodeString2 (
97 Language,
98 This->SupportedLanguages,
99 mDiskIoDriverNameTable,
100 DriverName,
101 (BOOLEAN)(This == &gDiskIoComponentName)
102 );
103 }
104
105
106
107 /**
108 Retrieves a Unicode string that is the user readable name of the controller
109 that is being managed by a driver.
110
111 This function retrieves the user readable name of the controller specified by
112 ControllerHandle and ChildHandle in the form of a Unicode string. If the
113 driver specified by This has a user readable name in the language specified by
114 Language, then a pointer to the controller name is returned in ControllerName,
115 and EFI_SUCCESS is returned. If the driver specified by This is not currently
116 managing the controller specified by ControllerHandle and ChildHandle,
117 then EFI_UNSUPPORTED is returned. If the driver specified by This does not
118 support the language specified by Language, then EFI_UNSUPPORTED is returned.
119
120 @param This[in] A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or
121 EFI_COMPONENT_NAME_PROTOCOL instance.
122
123 @param ControllerHandle[in] The handle of a controller that the driver
124 specified by This is managing. This handle
125 specifies the controller whose name is to be
126 returned.
127
128 @param ChildHandle[in] The handle of the child controller to retrieve
129 the name of. This is an optional parameter that
130 may be NULL. It will be NULL for device
131 drivers. It will also be NULL for a bus drivers
132 that wish to retrieve the name of the bus
133 controller. It will not be NULL for a bus
134 driver that wishes to retrieve the name of a
135 child controller.
136
137 @param Language[in] A pointer to a Null-terminated ASCII string
138 array indicating the language. This is the
139 language of the driver name that the caller is
140 requesting, and it must match one of the
141 languages specified in SupportedLanguages. The
142 number of languages supported by a driver is up
143 to the driver writer. Language is specified in
144 RFC 3066 or ISO 639-2 language code format.
145
146 @param ControllerName[out] A pointer to the Unicode string to return.
147 This Unicode string is the name of the
148 controller specified by ControllerHandle and
149 ChildHandle in the language specified by
150 Language from the point of view of the driver
151 specified by This.
152
153 @retval EFI_SUCCESS The Unicode string for the user readable name in
154 the language specified by Language for the
155 driver specified by This was returned in
156 DriverName.
157
158 @retval EFI_INVALID_PARAMETER ControllerHandle is not a valid EFI_HANDLE.
159
160 @retval EFI_INVALID_PARAMETER ChildHandle is not NULL and it is not a valid
161 EFI_HANDLE.
162
163 @retval EFI_INVALID_PARAMETER Language is NULL.
164
165 @retval EFI_INVALID_PARAMETER ControllerName is NULL.
166
167 @retval EFI_UNSUPPORTED The driver specified by This is not currently
168 managing the controller specified by
169 ControllerHandle and ChildHandle.
170
171 @retval EFI_UNSUPPORTED The driver specified by This does not support
172 the language specified by Language.
173
174 **/
175 EFI_STATUS
176 EFIAPI
177 DiskIoComponentNameGetControllerName (
178 IN EFI_COMPONENT_NAME_PROTOCOL *This,
179 IN EFI_HANDLE ControllerHandle,
180 IN EFI_HANDLE ChildHandle OPTIONAL,
181 IN CHAR8 *Language,
182 OUT CHAR16 **ControllerName
183 )
184 {
185 return EFI_UNSUPPORTED;
186 }