]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Bus/Scsi/ScsiDiskDxe/ComponentName.c
Update the copyright notice format
[mirror_edk2.git] / MdeModulePkg / Bus / Scsi / ScsiDiskDxe / ComponentName.c
CommitLineData
3b2dbece 1/** @file\r
2 UEFI Component Name(2) protocol implementation for SCSI disk driver.\r
6ad55b15 3\r
cd5ebaa0
HT
4Copyright (c) 2004 - 2008, Intel Corporation. All rights reserved.<BR>\r
5This program and the accompanying materials\r
3b2dbece 6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
6ad55b15 9\r
3b2dbece 10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
6ad55b15 12\r
3b2dbece 13**/\r
6ad55b15 14\r
ed7748fe 15\r
6ad55b15 16#include "ScsiDisk.h"\r
17\r
18//\r
19// EFI Component Name Protocol\r
20//\r
1307dcd7 21GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gScsiDiskComponentName = {\r
6ad55b15 22 ScsiDiskComponentNameGetDriverName,\r
23 ScsiDiskComponentNameGetControllerName,\r
24 "eng"\r
1307dcd7 25};\r
70da5bc2 26\r
27//\r
28// EFI Component Name 2 Protocol\r
29//\r
1307dcd7 30GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gScsiDiskComponentName2 = {\r
70da5bc2 31 (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) ScsiDiskComponentNameGetDriverName,\r
32 (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) ScsiDiskComponentNameGetControllerName,\r
33 "en"\r
1307dcd7 34};\r
70da5bc2 35\r
6ad55b15 36\r
d1aeb0bd 37GLOBAL_REMOVE_IF_UNREFERENCED EFI_UNICODE_STRING_TABLE mScsiDiskDriverNameTable[] = {\r
70da5bc2 38 { "eng;en", (CHAR16 *) L"Scsi Disk Driver" },\r
6ad55b15 39 { NULL , NULL }\r
40};\r
41\r
70da5bc2 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
9beb888e 52 @param This A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or\r
70da5bc2 53 EFI_COMPONENT_NAME_PROTOCOL instance.\r
54\r
9beb888e 55 @param Language A pointer to a Null-terminated ASCII string\r
70da5bc2 56 array indicating the language. This is the\r
57 language of the driver name that the caller is\r
58 requesting, and it must match one of the\r
59 languages specified in SupportedLanguages. The\r
60 number of languages supported by a driver is up\r
61 to the driver writer. Language is specified\r
0254efc0 62 in RFC 4646 or ISO 639-2 language code format.\r
70da5bc2 63\r
9beb888e 64 @param DriverName A pointer to the Unicode string to return.\r
70da5bc2 65 This Unicode string is the name of the\r
66 driver specified by This in the language\r
67 specified by Language.\r
68\r
69 @retval EFI_SUCCESS The Unicode string for the Driver specified by\r
70 This and the language specified by Language was\r
71 returned in DriverName.\r
72\r
73 @retval EFI_INVALID_PARAMETER Language is NULL.\r
74\r
75 @retval EFI_INVALID_PARAMETER DriverName is NULL.\r
76\r
77 @retval EFI_UNSUPPORTED The driver specified by This does not support\r
78 the language specified by Language.\r
79\r
80**/\r
6ad55b15 81EFI_STATUS\r
82EFIAPI\r
83ScsiDiskComponentNameGetDriverName (\r
84 IN EFI_COMPONENT_NAME_PROTOCOL *This,\r
85 IN CHAR8 *Language,\r
86 OUT CHAR16 **DriverName\r
87 )\r
6ad55b15 88{\r
70da5bc2 89 return LookupUnicodeString2 (\r
90 Language,\r
91 This->SupportedLanguages,\r
92 mScsiDiskDriverNameTable,\r
93 DriverName,\r
94 (BOOLEAN)(This == &gScsiDiskComponentName)\r
95 );\r
6ad55b15 96}\r
97\r
70da5bc2 98/**\r
99 Retrieves a Unicode string that is the user readable name of the controller\r
100 that is being managed by a driver.\r
101\r
102 This function retrieves the user readable name of the controller specified by\r
103 ControllerHandle and ChildHandle in the form of a Unicode string. If the\r
104 driver specified by This has a user readable name in the language specified by\r
105 Language, then a pointer to the controller name is returned in ControllerName,\r
106 and EFI_SUCCESS is returned. If the driver specified by This is not currently\r
107 managing the controller specified by ControllerHandle and ChildHandle,\r
108 then EFI_UNSUPPORTED is returned. If the driver specified by This does not\r
109 support the language specified by Language, then EFI_UNSUPPORTED is returned.\r
110\r
9beb888e 111 @param This A pointer to the EFI_COMPONENT_NAME2_PROTOCOL or\r
70da5bc2 112 EFI_COMPONENT_NAME_PROTOCOL instance.\r
113\r
9beb888e 114 @param ControllerHandle The handle of a controller that the driver\r
70da5bc2 115 specified by This is managing. This handle\r
116 specifies the controller whose name is to be\r
117 returned.\r
118\r
9beb888e 119 @param ChildHandle The handle of the child controller to retrieve\r
70da5bc2 120 the name of. This is an optional parameter that\r
121 may be NULL. It will be NULL for device\r
122 drivers. It will also be NULL for a bus drivers\r
123 that wish to retrieve the name of the bus\r
124 controller. It will not be NULL for a bus\r
125 driver that wishes to retrieve the name of a\r
126 child controller.\r
127\r
9beb888e 128 @param Language A pointer to a Null-terminated ASCII string\r
70da5bc2 129 array indicating the language. This is the\r
130 language of the driver name that the caller is\r
131 requesting, and it must match one of the\r
132 languages specified in SupportedLanguages. The\r
133 number of languages supported by a driver is up\r
134 to the driver writer. Language is specified in\r
0254efc0 135 RFC 4646 or ISO 639-2 language code format.\r
70da5bc2 136\r
9beb888e 137 @param ControllerName A pointer to the Unicode string to return.\r
70da5bc2 138 This Unicode string is the name of the\r
139 controller specified by ControllerHandle and\r
140 ChildHandle in the language specified by\r
141 Language from the point of view of the driver\r
142 specified by This.\r
143\r
144 @retval EFI_SUCCESS The Unicode string for the user readable name in\r
145 the language specified by Language for the\r
146 driver specified by This was returned in\r
147 DriverName.\r
148\r
149 @retval EFI_INVALID_PARAMETER ControllerHandle is not a valid EFI_HANDLE.\r
150\r
151 @retval EFI_INVALID_PARAMETER ChildHandle is not NULL and it is not a valid\r
152 EFI_HANDLE.\r
153\r
154 @retval EFI_INVALID_PARAMETER Language is NULL.\r
155\r
156 @retval EFI_INVALID_PARAMETER ControllerName is NULL.\r
157\r
158 @retval EFI_UNSUPPORTED The driver specified by This is not currently\r
159 managing the controller specified by\r
160 ControllerHandle and ChildHandle.\r
161\r
162 @retval EFI_UNSUPPORTED The driver specified by This does not support\r
163 the language specified by Language.\r
164\r
165**/\r
6ad55b15 166EFI_STATUS\r
167EFIAPI\r
168ScsiDiskComponentNameGetControllerName (\r
169 IN EFI_COMPONENT_NAME_PROTOCOL *This,\r
170 IN EFI_HANDLE ControllerHandle,\r
171 IN EFI_HANDLE ChildHandle OPTIONAL,\r
172 IN CHAR8 *Language,\r
173 OUT CHAR16 **ControllerName\r
174 )\r
6ad55b15 175{\r
176 EFI_STATUS Status;\r
177 SCSI_DISK_DEV *ScsiDiskDevice;\r
178 EFI_BLOCK_IO_PROTOCOL *BlockIo;\r
179\r
180 //\r
181 // This is a device driver, so ChildHandle must be NULL.\r
182 //\r
183 if (ChildHandle != NULL) {\r
184 return EFI_UNSUPPORTED;\r
185 }\r
186 \r
187 //\r
188 // Make sure this driver is currently managing ControllerHandle\r
189 //\r
190 Status = EfiTestManagedDevice (\r
191 ControllerHandle,\r
192 gScsiDiskDriverBinding.DriverBindingHandle,\r
193 &gEfiScsiIoProtocolGuid\r
194 );\r
195 if (EFI_ERROR (Status)) {\r
196 return Status;\r
197 }\r
198 //\r
199 // Get the device context\r
200 //\r
201 Status = gBS->OpenProtocol (\r
202 ControllerHandle,\r
203 &gEfiBlockIoProtocolGuid,\r
204 (VOID **) &BlockIo,\r
205 gScsiDiskDriverBinding.DriverBindingHandle,\r
206 ControllerHandle,\r
207 EFI_OPEN_PROTOCOL_GET_PROTOCOL\r
208 );\r
209\r
210 if (EFI_ERROR (Status)) {\r
211 return Status;\r
212 }\r
213\r
214 ScsiDiskDevice = SCSI_DISK_DEV_FROM_THIS (BlockIo);\r
215\r
70da5bc2 216 return LookupUnicodeString2 (\r
217 Language,\r
218 This->SupportedLanguages,\r
219 ScsiDiskDevice->ControllerNameTable,\r
220 ControllerName,\r
221 (BOOLEAN)(This == &gScsiDiskComponentName)\r
222 );\r
6ad55b15 223\r
224}\r