1
2
3
4
5
6
7
8
9
10#include <acpi/acpi.h>
11#include "accommon.h"
12
13#define _COMPONENT ACPI_UTILITIES
14ACPI_MODULE_NAME("utosi")
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53static struct acpi_interface_info acpi_default_supported_interfaces[] = {
54
55
56 {"Windows 2000", NULL, 0, ACPI_OSI_WIN_2000},
57 {"Windows 2001", NULL, 0, ACPI_OSI_WIN_XP},
58 {"Windows 2001 SP1", NULL, 0, ACPI_OSI_WIN_XP_SP1},
59 {"Windows 2001.1", NULL, 0, ACPI_OSI_WINSRV_2003},
60 {"Windows 2001 SP2", NULL, 0, ACPI_OSI_WIN_XP_SP2},
61 {"Windows 2001.1 SP1", NULL, 0, ACPI_OSI_WINSRV_2003_SP1},
62 {"Windows 2006", NULL, 0, ACPI_OSI_WIN_VISTA},
63 {"Windows 2006.1", NULL, 0, ACPI_OSI_WINSRV_2008},
64 {"Windows 2006 SP1", NULL, 0, ACPI_OSI_WIN_VISTA_SP1},
65 {"Windows 2006 SP2", NULL, 0, ACPI_OSI_WIN_VISTA_SP2},
66 {"Windows 2009", NULL, 0, ACPI_OSI_WIN_7},
67 {"Windows 2012", NULL, 0, ACPI_OSI_WIN_8},
68 {"Windows 2013", NULL, 0, ACPI_OSI_WIN_8_1},
69 {"Windows 2015", NULL, 0, ACPI_OSI_WIN_10},
70 {"Windows 2016", NULL, 0, ACPI_OSI_WIN_10_RS1},
71 {"Windows 2017", NULL, 0, ACPI_OSI_WIN_10_RS2},
72 {"Windows 2017.2", NULL, 0, ACPI_OSI_WIN_10_RS3},
73 {"Windows 2018", NULL, 0, ACPI_OSI_WIN_10_RS4},
74 {"Windows 2018.2", NULL, 0, ACPI_OSI_WIN_10_RS5},
75 {"Windows 2019", NULL, 0, ACPI_OSI_WIN_10_19H1},
76
77
78
79 {"Extended Address Space Descriptor", NULL, ACPI_OSI_FEATURE, 0},
80
81
82
83
84
85
86
87
88 {"Module Device", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0},
89 {"Processor Device", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0},
90 {"3.0 Thermal Model", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0},
91 {"3.0 _SCP Extensions", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0},
92 {"Processor Aggregator Device", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0}
93};
94
95
96
97
98
99
100
101
102
103
104
105
106
107acpi_status acpi_ut_initialize_interfaces(void)
108{
109 acpi_status status;
110 u32 i;
111
112 status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
113 if (ACPI_FAILURE(status)) {
114 return (status);
115 }
116
117 acpi_gbl_supported_interfaces = acpi_default_supported_interfaces;
118
119
120
121 for (i = 0;
122 i < (ACPI_ARRAY_LENGTH(acpi_default_supported_interfaces) - 1);
123 i++) {
124 acpi_default_supported_interfaces[i].next =
125 &acpi_default_supported_interfaces[(acpi_size)i + 1];
126 }
127
128 acpi_os_release_mutex(acpi_gbl_osi_mutex);
129 return (AE_OK);
130}
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145acpi_status acpi_ut_interface_terminate(void)
146{
147 acpi_status status;
148 struct acpi_interface_info *next_interface;
149
150 status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
151 if (ACPI_FAILURE(status)) {
152 return (status);
153 }
154
155 next_interface = acpi_gbl_supported_interfaces;
156 while (next_interface) {
157 acpi_gbl_supported_interfaces = next_interface->next;
158
159 if (next_interface->flags & ACPI_OSI_DYNAMIC) {
160
161
162
163 ACPI_FREE(next_interface->name);
164 ACPI_FREE(next_interface);
165 } else {
166
167
168 if (next_interface->flags & ACPI_OSI_DEFAULT_INVALID) {
169 next_interface->flags |= ACPI_OSI_INVALID;
170 } else {
171 next_interface->flags &= ~ACPI_OSI_INVALID;
172 }
173 }
174
175 next_interface = acpi_gbl_supported_interfaces;
176 }
177
178 acpi_os_release_mutex(acpi_gbl_osi_mutex);
179 return (AE_OK);
180}
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195acpi_status acpi_ut_install_interface(acpi_string interface_name)
196{
197 struct acpi_interface_info *interface_info;
198
199
200
201 interface_info =
202 ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_interface_info));
203 if (!interface_info) {
204 return (AE_NO_MEMORY);
205 }
206
207 interface_info->name = ACPI_ALLOCATE_ZEROED(strlen(interface_name) + 1);
208 if (!interface_info->name) {
209 ACPI_FREE(interface_info);
210 return (AE_NO_MEMORY);
211 }
212
213
214
215 strcpy(interface_info->name, interface_name);
216 interface_info->flags = ACPI_OSI_DYNAMIC;
217 interface_info->next = acpi_gbl_supported_interfaces;
218
219 acpi_gbl_supported_interfaces = interface_info;
220 return (AE_OK);
221}
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236acpi_status acpi_ut_remove_interface(acpi_string interface_name)
237{
238 struct acpi_interface_info *previous_interface;
239 struct acpi_interface_info *next_interface;
240
241 previous_interface = next_interface = acpi_gbl_supported_interfaces;
242 while (next_interface) {
243 if (!strcmp(interface_name, next_interface->name)) {
244
245
246
247
248 if (next_interface->flags & ACPI_OSI_DYNAMIC) {
249
250
251
252 if (previous_interface == next_interface) {
253 acpi_gbl_supported_interfaces =
254 next_interface->next;
255 } else {
256 previous_interface->next =
257 next_interface->next;
258 }
259
260 ACPI_FREE(next_interface->name);
261 ACPI_FREE(next_interface);
262 } else {
263
264
265
266
267 if (next_interface->flags & ACPI_OSI_INVALID) {
268 return (AE_NOT_EXIST);
269 }
270
271 next_interface->flags |= ACPI_OSI_INVALID;
272 }
273
274 return (AE_OK);
275 }
276
277 previous_interface = next_interface;
278 next_interface = next_interface->next;
279 }
280
281
282
283 return (AE_NOT_EXIST);
284}
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301acpi_status acpi_ut_update_interfaces(u8 action)
302{
303 struct acpi_interface_info *next_interface;
304
305 next_interface = acpi_gbl_supported_interfaces;
306 while (next_interface) {
307 if (((next_interface->flags & ACPI_OSI_FEATURE) &&
308 (action & ACPI_FEATURE_STRINGS)) ||
309 (!(next_interface->flags & ACPI_OSI_FEATURE) &&
310 (action & ACPI_VENDOR_STRINGS))) {
311 if (action & ACPI_DISABLE_INTERFACES) {
312
313
314
315 next_interface->flags |= ACPI_OSI_INVALID;
316 } else {
317
318
319 next_interface->flags &= ~ACPI_OSI_INVALID;
320 }
321 }
322
323 next_interface = next_interface->next;
324 }
325
326 return (AE_OK);
327}
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342struct acpi_interface_info *acpi_ut_get_interface(acpi_string interface_name)
343{
344 struct acpi_interface_info *next_interface;
345
346 next_interface = acpi_gbl_supported_interfaces;
347 while (next_interface) {
348 if (!strcmp(interface_name, next_interface->name)) {
349 return (next_interface);
350 }
351
352 next_interface = next_interface->next;
353 }
354
355 return (NULL);
356}
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383acpi_status acpi_ut_osi_implementation(struct acpi_walk_state *walk_state)
384{
385 union acpi_operand_object *string_desc;
386 union acpi_operand_object *return_desc;
387 struct acpi_interface_info *interface_info;
388 acpi_interface_handler interface_handler;
389 acpi_status status;
390 u64 return_value;
391
392 ACPI_FUNCTION_TRACE(ut_osi_implementation);
393
394
395
396 string_desc = walk_state->arguments[0].object;
397 if (!string_desc || (string_desc->common.type != ACPI_TYPE_STRING)) {
398 return_ACPI_STATUS(AE_TYPE);
399 }
400
401
402
403 return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
404 if (!return_desc) {
405 return_ACPI_STATUS(AE_NO_MEMORY);
406 }
407
408
409
410 return_value = 0;
411 status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
412 if (ACPI_FAILURE(status)) {
413 acpi_ut_remove_reference(return_desc);
414 return_ACPI_STATUS(status);
415 }
416
417
418
419 interface_info = acpi_ut_get_interface(string_desc->string.pointer);
420 if (interface_info && !(interface_info->flags & ACPI_OSI_INVALID)) {
421
422
423
424
425
426 if (interface_info->value > acpi_gbl_osi_data) {
427 acpi_gbl_osi_data = interface_info->value;
428 }
429
430 return_value = ACPI_UINT64_MAX;
431 }
432
433 acpi_os_release_mutex(acpi_gbl_osi_mutex);
434
435
436
437
438
439
440 interface_handler = acpi_gbl_interface_handler;
441 if (interface_handler) {
442 if (interface_handler
443 (string_desc->string.pointer, (u32)return_value)) {
444 return_value = ACPI_UINT64_MAX;
445 }
446 }
447
448 ACPI_DEBUG_PRINT_RAW((ACPI_DB_INFO,
449 "ACPI: BIOS _OSI(\"%s\") is %ssupported\n",
450 string_desc->string.pointer,
451 return_value == 0 ? "not " : ""));
452
453
454
455 return_desc->integer.value = return_value;
456 walk_state->return_desc = return_desc;
457 return_ACPI_STATUS(AE_OK);
458}
459