]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Scsi/ScsiBusDxe/ComponentName.c
444ca445cf9a3149cef067dca45783cc0f533849
[mirror_edk2.git] / MdeModulePkg / Bus / Scsi / ScsiBusDxe / ComponentName.c
1 /*++
2
3 Copyright (c) 2006, Intel Corporation
4 All rights reserved. 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
8
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
11
12 Module Name:
13
14 ComponentName.c
15
16 Abstract:
17
18 --*/
19
20 //
21 // The package level header files this module uses
22 //
23 #include <PiDxe.h>
24
25 //
26 // The protocols, PPI and GUID defintions for this module
27 //
28 #include <Protocol/ScsiPassThru.h>
29 #include <Protocol/ScsiIo.h>
30 #include <Protocol/ComponentName.h>
31 #include <Protocol/DriverBinding.h>
32 #include <Protocol/DevicePath.h>
33 //
34 // The Library classes this module consumes
35 //
36 #include <Library/DebugLib.h>
37 #include <Library/UefiDriverEntryPoint.h>
38 #include <Library/UefiLib.h>
39 #include <Library/BaseMemoryLib.h>
40 #include <Library/ScsiLib.h>
41 #include <Library/UefiBootServicesTableLib.h>
42 #include <Library/DevicePathLib.h>
43
44
45 #include "ScsiBus.h"
46
47 //
48 // EFI Component Name Protocol
49 //
50 EFI_COMPONENT_NAME_PROTOCOL gScsiBusComponentName = {
51 ScsiBusComponentNameGetDriverName,
52 ScsiBusComponentNameGetControllerName,
53 "eng"
54 };
55
56 static EFI_UNICODE_STRING_TABLE mScsiBusDriverNameTable[] = {
57 { "eng", (CHAR16 *) L"SCSI Bus Driver" },
58 { NULL , NULL }
59 };
60
61 EFI_STATUS
62 EFIAPI
63 ScsiBusComponentNameGetDriverName (
64 IN EFI_COMPONENT_NAME_PROTOCOL *This,
65 IN CHAR8 *Language,
66 OUT CHAR16 **DriverName
67 )
68 /*++
69
70 Routine Description:
71 Retrieves a Unicode string that is the user readable name of the EFI Driver.
72
73 Arguments:
74 This - A pointer to the EFI_COMPONENT_NAME_PROTOCOL instance.
75 Language - A pointer to a three character ISO 639-2 language identifier.
76 This is the language of the driver name that that the caller
77 is requesting, and it must match one of the languages specified
78 in SupportedLanguages. The number of languages supported by a
79 driver is up to the driver writer.
80 DriverName - A pointer to the Unicode string to return. This Unicode string
81 is the name of the driver specified by This in the language
82 specified by Language.
83
84 Returns:
85 EFI_SUCCESS - The Unicode string for the Driver specified by This
86 and the language specified by Language was returned
87 in DriverName.
88 EFI_INVALID_PARAMETER - Language is NULL.
89 EFI_INVALID_PARAMETER - DriverName is NULL.
90 EFI_UNSUPPORTED - The driver specified by This does not support the
91 language specified by Language.
92
93 --*/
94 {
95 return LookupUnicodeString (
96 Language,
97 gScsiBusComponentName.SupportedLanguages,
98 mScsiBusDriverNameTable,
99 DriverName
100 );
101 }
102
103 EFI_STATUS
104 EFIAPI
105 ScsiBusComponentNameGetControllerName (
106 IN EFI_COMPONENT_NAME_PROTOCOL *This,
107 IN EFI_HANDLE ControllerHandle,
108 IN EFI_HANDLE ChildHandle OPTIONAL,
109 IN CHAR8 *Language,
110 OUT CHAR16 **ControllerName
111 )
112 /*++
113
114 Routine Description:
115 Retrieves a Unicode string that is the user readable name of the controller
116 that is being managed by an EFI Driver.
117
118 Arguments:
119 This - A pointer to the EFI_COMPONENT_NAME_PROTOCOL instance.
120 ControllerHandle - The handle of a controller that the driver specified by
121 This is managing. This handle specifies the controller
122 whose name is to be returned.
123 ChildHandle - The handle of the child controller to retrieve the name
124 of. This is an optional parameter that may be NULL. It
125 will be NULL for device drivers. It will also be NULL
126 for a bus drivers that wish to retrieve the name of the
127 bus controller. It will not be NULL for a bus driver
128 that wishes to retrieve the name of a child controller.
129 Language - A pointer to a three character ISO 639-2 language
130 identifier. This is the language of the controller name
131 that that the caller is requesting, and it must match one
132 of the languages specified in SupportedLanguages. The
133 number of languages supported by a driver is up to the
134 driver writer.
135 ControllerName - A pointer to the Unicode string to return. This Unicode
136 string is the name of the controller specified by
137 ControllerHandle and ChildHandle in the language
138 specified by Language from the point of view of the
139 driver specified by This.
140
141 Returns:
142 EFI_SUCCESS - The Unicode string for the user readable name in the
143 language specified by Language for the driver
144 specified by This was returned in DriverName.
145 EFI_INVALID_PARAMETER - ControllerHandle is not a valid EFI_HANDLE.
146 EFI_INVALID_PARAMETER - ChildHandle is not NULL and it is not a valid
147 EFI_HANDLE.
148 EFI_INVALID_PARAMETER - Language is NULL.
149 EFI_INVALID_PARAMETER - ControllerName is NULL.
150 EFI_UNSUPPORTED - The driver specified by This is not currently
151 managing the controller specified by
152 ControllerHandle and ChildHandle.
153 EFI_UNSUPPORTED - The driver specified by This does not support the
154 language specified by Language.
155
156 --*/
157 {
158 return EFI_UNSUPPORTED;
159 }