878ddf1f |
1 | /*++\r |
2 | \r |
3 | Copyright (c) 2006, Intel Corporation \r |
4 | All rights reserved. This program and the accompanying materials \r |
5 | are licensed and made available under the terms and conditions of the BSD License \r |
6 | which accompanies this distribution. The full text of the license may be found at \r |
7 | http://opensource.org/licenses/bsd-license.php \r |
8 | \r |
9 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, \r |
10 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. \r |
11 | \r |
12 | Module Name:\r |
13 | \r |
14 | ComponentName.c\r |
15 | \r |
16 | Abstract:\r |
17 | \r |
18 | --*/\r |
19 | \r |
20 | #include "CirrusLogic5430.h"\r |
21 | \r |
22 | //\r |
23 | // EFI Component Name Functions\r |
24 | //\r |
25 | EFI_STATUS\r |
26 | EFIAPI\r |
27 | CirrusLogic5430ComponentNameGetDriverName (\r |
28 | IN EFI_COMPONENT_NAME_PROTOCOL *This,\r |
29 | IN CHAR8 *Language,\r |
30 | OUT CHAR16 **DriverName\r |
31 | );\r |
32 | \r |
33 | EFI_STATUS\r |
34 | EFIAPI\r |
35 | CirrusLogic5430ComponentNameGetControllerName (\r |
36 | IN EFI_COMPONENT_NAME_PROTOCOL *This,\r |
37 | IN EFI_HANDLE ControllerHandle,\r |
38 | IN EFI_HANDLE ChildHandle OPTIONAL,\r |
39 | IN CHAR8 *Language,\r |
40 | OUT CHAR16 **ControllerName\r |
41 | );\r |
42 | \r |
43 | //\r |
44 | // EFI Component Name Protocol\r |
45 | //\r |
46 | EFI_COMPONENT_NAME_PROTOCOL gCirrusLogic5430ComponentName = {\r |
47 | CirrusLogic5430ComponentNameGetDriverName,\r |
48 | CirrusLogic5430ComponentNameGetControllerName,\r |
49 | "eng"\r |
50 | };\r |
51 | \r |
52 | static EFI_UNICODE_STRING_TABLE mCirrusLogic5430DriverNameTable[] = {\r |
53 | { "eng", (CHAR16 *) L"Cirrus Logic 5430 UGA Driver" },\r |
54 | { NULL , NULL }\r |
55 | };\r |
56 | \r |
57 | static EFI_UNICODE_STRING_TABLE mCirrusLogic5430ControllerNameTable[] = {\r |
58 | { "eng", (CHAR16 *) L"Cirrus Logic 5430 PCI Adapter" },\r |
59 | { NULL , NULL }\r |
60 | };\r |
61 | \r |
62 | EFI_STATUS\r |
63 | EFIAPI\r |
64 | CirrusLogic5430ComponentNameGetDriverName (\r |
65 | IN EFI_COMPONENT_NAME_PROTOCOL *This,\r |
66 | IN CHAR8 *Language,\r |
67 | OUT CHAR16 **DriverName\r |
68 | )\r |
69 | /*++\r |
70 | \r |
71 | Routine Description:\r |
72 | Retrieves a Unicode string that is the user readable name of the EFI Driver.\r |
73 | \r |
74 | Arguments:\r |
75 | This - A pointer to the EFI_COMPONENT_NAME_PROTOCOL instance.\r |
76 | Language - A pointer to a three character ISO 639-2 language identifier.\r |
77 | This is the language of the driver name that that the caller \r |
78 | is requesting, and it must match one of the languages specified\r |
79 | in SupportedLanguages. The number of languages supported by a \r |
80 | driver is up to the driver writer.\r |
81 | DriverName - A pointer to the Unicode string to return. This Unicode string\r |
82 | is the name of the driver specified by This in the language \r |
83 | specified by Language.\r |
84 | \r |
85 | Returns:\r |
86 | EFI_SUCCESS - The Unicode string for the Driver specified by This\r |
87 | and the language specified by Language was returned \r |
88 | in DriverName.\r |
89 | EFI_INVALID_PARAMETER - Language is NULL.\r |
90 | EFI_INVALID_PARAMETER - DriverName is NULL.\r |
91 | EFI_UNSUPPORTED - The driver specified by This does not support the \r |
92 | language specified by Language.\r |
93 | \r |
94 | --*/\r |
95 | {\r |
96 | return LookupUnicodeString (\r |
97 | Language,\r |
98 | gCirrusLogic5430ComponentName.SupportedLanguages,\r |
99 | mCirrusLogic5430DriverNameTable,\r |
100 | DriverName\r |
101 | );\r |
102 | }\r |
103 | \r |
104 | EFI_STATUS\r |
105 | EFIAPI\r |
106 | CirrusLogic5430ComponentNameGetControllerName (\r |
107 | IN EFI_COMPONENT_NAME_PROTOCOL *This,\r |
108 | IN EFI_HANDLE ControllerHandle,\r |
109 | IN EFI_HANDLE ChildHandle OPTIONAL,\r |
110 | IN CHAR8 *Language,\r |
111 | OUT CHAR16 **ControllerName\r |
112 | )\r |
113 | /*++\r |
114 | \r |
115 | Routine Description:\r |
116 | Retrieves a Unicode string that is the user readable name of the controller\r |
117 | that is being managed by an EFI Driver.\r |
118 | \r |
119 | Arguments:\r |
120 | This - A pointer to the EFI_COMPONENT_NAME_PROTOCOL instance.\r |
121 | ControllerHandle - The handle of a controller that the driver specified by \r |
122 | This is managing. This handle specifies the controller \r |
123 | whose name is to be returned.\r |
124 | ChildHandle - The handle of the child controller to retrieve the name \r |
125 | of. This is an optional parameter that may be NULL. It \r |
126 | will be NULL for device drivers. It will also be NULL \r |
127 | for a bus drivers that wish to retrieve the name of the \r |
128 | bus controller. It will not be NULL for a bus driver \r |
129 | that wishes to retrieve the name of a child controller.\r |
130 | Language - A pointer to a three character ISO 639-2 language \r |
131 | identifier. This is the language of the controller name \r |
132 | that that the caller is requesting, and it must match one\r |
133 | of the languages specified in SupportedLanguages. The \r |
134 | number of languages supported by a driver is up to the \r |
135 | driver writer.\r |
136 | ControllerName - A pointer to the Unicode string to return. This Unicode\r |
137 | string is the name of the controller specified by \r |
138 | ControllerHandle and ChildHandle in the language specified\r |
139 | by Language from the point of view of the driver specified\r |
140 | by This. \r |
141 | \r |
142 | Returns:\r |
143 | EFI_SUCCESS - The Unicode string for the user readable name in the \r |
144 | language specified by Language for the driver \r |
145 | specified by This was returned in DriverName.\r |
146 | EFI_INVALID_PARAMETER - ControllerHandle is not a valid EFI_HANDLE.\r |
147 | EFI_INVALID_PARAMETER - ChildHandle is not NULL and it is not a valid EFI_HANDLE.\r |
148 | EFI_INVALID_PARAMETER - Language is NULL.\r |
149 | EFI_INVALID_PARAMETER - ControllerName is NULL.\r |
150 | EFI_UNSUPPORTED - The driver specified by This is not currently managing \r |
151 | the controller specified by ControllerHandle and \r |
152 | ChildHandle.\r |
153 | EFI_UNSUPPORTED - The driver specified by This does not support the \r |
154 | language specified by Language.\r |
155 | \r |
156 | --*/\r |
157 | {\r |
158 | EFI_UGA_DRAW_PROTOCOL *UgaDraw;\r |
159 | EFI_STATUS Status;\r |
160 | CIRRUS_LOGIC_5430_PRIVATE_DATA *Private;\r |
161 | EFI_PCI_IO_PROTOCOL *PciIoProtocol;\r |
162 | \r |
163 | //\r |
164 | // This is a device driver, so ChildHandle must be NULL.\r |
165 | //\r |
166 | if (ChildHandle != NULL) {\r |
167 | return EFI_UNSUPPORTED;\r |
168 | }\r |
169 | \r |
170 | //\r |
171 | // Check Controller's handle\r |
172 | //\r |
173 | Status = gBS->OpenProtocol (\r |
174 | ControllerHandle,\r |
175 | &gEfiPciIoProtocolGuid,\r |
176 | (VOID **) &PciIoProtocol,\r |
177 | gCirrusLogic5430DriverBinding.DriverBindingHandle,\r |
178 | ControllerHandle,\r |
179 | EFI_OPEN_PROTOCOL_BY_DRIVER\r |
180 | );\r |
181 | if (!EFI_ERROR (Status)) {\r |
182 | gBS->CloseProtocol (\r |
183 | ControllerHandle,\r |
184 | &gEfiPciIoProtocolGuid,\r |
185 | gCirrusLogic5430DriverBinding.DriverBindingHandle,\r |
186 | ControllerHandle\r |
187 | );\r |
188 | \r |
189 | return EFI_UNSUPPORTED;\r |
190 | }\r |
191 | \r |
192 | if (Status != EFI_ALREADY_STARTED) {\r |
193 | return EFI_UNSUPPORTED;\r |
194 | }\r |
195 | \r |
196 | //\r |
197 | // Get the UGA Draw Protocol on Controller\r |
198 | //\r |
199 | Status = gBS->OpenProtocol (\r |
200 | ControllerHandle,\r |
201 | &gEfiUgaDrawProtocolGuid,\r |
202 | (VOID **) &UgaDraw,\r |
203 | gCirrusLogic5430DriverBinding.DriverBindingHandle,\r |
204 | ControllerHandle,\r |
205 | EFI_OPEN_PROTOCOL_GET_PROTOCOL\r |
206 | );\r |
207 | if (EFI_ERROR (Status)) {\r |
208 | return Status;\r |
209 | }\r |
210 | \r |
211 | //\r |
212 | // Get the Cirrus Logic 5430's Device structure\r |
213 | //\r |
214 | Private = CIRRUS_LOGIC_5430_PRIVATE_DATA_FROM_UGA_DRAW_THIS (UgaDraw);\r |
215 | \r |
216 | return LookupUnicodeString (\r |
217 | Language,\r |
218 | gCirrusLogic5430ComponentName.SupportedLanguages,\r |
219 | mCirrusLogic5430ControllerNameTable,\r |
220 | ControllerName\r |
221 | );\r |
222 | }\r |