Linux Audio

Check our new training course

Loading...
v6.13.7
  1// SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0
  2/******************************************************************************
  3 *
  4 * Module Name: utosi - Support for the _OSI predefined control method
  5 *
  6 * Copyright (C) 2000 - 2023, Intel Corp.
  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 * ACPICA policy for new _OSI strings:
 19 *
 20 * It is the stated policy of ACPICA that new _OSI strings will be integrated
 21 * into this module as soon as possible after they are defined. It is strongly
 22 * recommended that all ACPICA hosts mirror this policy and integrate any
 23 * changes to this module as soon as possible. There are several historical
 24 * reasons behind this policy:
 25 *
 26 * 1) New BIOSs tend to test only the case where the host responds TRUE to
 27 *    the latest version of Windows, which would respond to the latest/newest
 28 *    _OSI string. Not responding TRUE to the latest version of Windows will
 29 *    risk executing untested code paths throughout the DSDT and SSDTs.
 30 *
 31 * 2) If a new _OSI string is recognized only after a significant delay, this
 32 *    has the potential to cause problems on existing working machines because
 33 *    of the possibility that a new and different path through the ASL code
 34 *    will be executed.
 35 *
 36 * 3) New _OSI strings are tending to come out about once per year. A delay
 37 *    in recognizing a new string for a significant amount of time risks the
 38 *    release of another string which only compounds the initial problem.
 39 *
 40 *****************************************************************************/
 41/*
 42 * Strings supported by the _OSI predefined control method (which is
 43 * implemented internally within this module.)
 44 *
 45 * March 2009: Removed "Linux" as this host no longer wants to respond true
 46 * for this string. Basically, the only safe OS strings are windows-related
 47 * and in many or most cases represent the only test path within the
 48 * BIOS-provided ASL code.
 49 *
 50 * The last element of each entry is used to track the newest version of
 51 * Windows that the BIOS has requested.
 52 */
 53static struct acpi_interface_info acpi_default_supported_interfaces[] = {
 54	/* Operating System Vendor Strings */
 55
 56	{"Windows 2000", NULL, 0, ACPI_OSI_WIN_2000},	/* Windows 2000 */
 57	{"Windows 2001", NULL, 0, ACPI_OSI_WIN_XP},	/* Windows XP */
 58	{"Windows 2001 SP1", NULL, 0, ACPI_OSI_WIN_XP_SP1},	/* Windows XP SP1 */
 59	{"Windows 2001.1", NULL, 0, ACPI_OSI_WINSRV_2003},	/* Windows Server 2003 */
 60	{"Windows 2001 SP2", NULL, 0, ACPI_OSI_WIN_XP_SP2},	/* Windows XP SP2 */
 61	{"Windows 2001.1 SP1", NULL, 0, ACPI_OSI_WINSRV_2003_SP1},	/* Windows Server 2003 SP1 - Added 03/2006 */
 62	{"Windows 2006", NULL, 0, ACPI_OSI_WIN_VISTA},	/* Windows vista - Added 03/2006 */
 63	{"Windows 2006.1", NULL, 0, ACPI_OSI_WINSRV_2008},	/* Windows Server 2008 - Added 09/2009 */
 64	{"Windows 2006 SP1", NULL, 0, ACPI_OSI_WIN_VISTA_SP1},	/* Windows Vista SP1 - Added 09/2009 */
 65	{"Windows 2006 SP2", NULL, 0, ACPI_OSI_WIN_VISTA_SP2},	/* Windows Vista SP2 - Added 09/2010 */
 66	{"Windows 2009", NULL, 0, ACPI_OSI_WIN_7},	/* Windows 7 and Server 2008 R2 - Added 09/2009 */
 67	{"Windows 2012", NULL, 0, ACPI_OSI_WIN_8},	/* Windows 8 and Server 2012 - Added 08/2012 */
 68	{"Windows 2013", NULL, 0, ACPI_OSI_WIN_8_1},	/* Windows 8.1 and Server 2012 R2 - Added 01/2014 */
 69	{"Windows 2015", NULL, 0, ACPI_OSI_WIN_10},	/* Windows 10 - Added 03/2015 */
 70	{"Windows 2016", NULL, 0, ACPI_OSI_WIN_10_RS1},	/* Windows 10 version 1607 - Added 12/2017 */
 71	{"Windows 2017", NULL, 0, ACPI_OSI_WIN_10_RS2},	/* Windows 10 version 1703 - Added 12/2017 */
 72	{"Windows 2017.2", NULL, 0, ACPI_OSI_WIN_10_RS3},	/* Windows 10 version 1709 - Added 02/2018 */
 73	{"Windows 2018", NULL, 0, ACPI_OSI_WIN_10_RS4},	/* Windows 10 version 1803 - Added 11/2018 */
 74	{"Windows 2018.2", NULL, 0, ACPI_OSI_WIN_10_RS5},	/* Windows 10 version 1809 - Added 11/2018 */
 75	{"Windows 2019", NULL, 0, ACPI_OSI_WIN_10_19H1},	/* Windows 10 version 1903 - Added 08/2019 */
 76	{"Windows 2020", NULL, 0, ACPI_OSI_WIN_10_20H1},	/* Windows 10 version 2004 - Added 08/2021 */
 77	{"Windows 2021", NULL, 0, ACPI_OSI_WIN_11},	/* Windows 11 - Added 01/2022 */
 78	{"Windows 2022", NULL, 0, ACPI_OSI_WIN_11_22H2},	/* Windows 11 version 22H2 - Added 04/2024 */
 79
 80	/* Feature Group Strings */
 81
 82	{"Extended Address Space Descriptor", NULL, ACPI_OSI_FEATURE, 0},
 83
 84	/*
 85	 * All "optional" feature group strings (features that are implemented
 86	 * by the host) should be dynamically modified to VALID by the host via
 87	 * acpi_install_interface or acpi_update_interfaces. Such optional feature
 88	 * group strings are set as INVALID by default here.
 
 
 
 
 
 
 
 89	 */
 90
 91	{"Module Device", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0},
 92	{"Processor Device", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0},
 93	{"3.0 Thermal Model", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0},
 94	{"3.0 _SCP Extensions", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0},
 95	{"Processor Aggregator Device", NULL, ACPI_OSI_OPTIONAL_FEATURE, 0}
 96};
 97
 98/*******************************************************************************
 99 *
100 * FUNCTION:    acpi_ut_initialize_interfaces
101 *
102 * PARAMETERS:  None
103 *
104 * RETURN:      Status
105 *
106 * DESCRIPTION: Initialize the global _OSI supported interfaces list
107 *
108 ******************************************************************************/
109
110acpi_status acpi_ut_initialize_interfaces(void)
111{
112	acpi_status status;
113	u32 i;
114
115	status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
116	if (ACPI_FAILURE(status)) {
117		return (status);
118	}
119
120	acpi_gbl_supported_interfaces = acpi_default_supported_interfaces;
121
122	/* Link the static list of supported interfaces */
123
124	for (i = 0;
125	     i < (ACPI_ARRAY_LENGTH(acpi_default_supported_interfaces) - 1);
126	     i++) {
127		acpi_default_supported_interfaces[i].next =
128		    &acpi_default_supported_interfaces[(acpi_size)i + 1];
129	}
130
131	acpi_os_release_mutex(acpi_gbl_osi_mutex);
132	return (AE_OK);
133}
134
135/*******************************************************************************
136 *
137 * FUNCTION:    acpi_ut_interface_terminate
138 *
139 * PARAMETERS:  None
140 *
141 * RETURN:      Status
142 *
143 * DESCRIPTION: Delete all interfaces in the global list. Sets
144 *              acpi_gbl_supported_interfaces to NULL.
145 *
146 ******************************************************************************/
147
148acpi_status acpi_ut_interface_terminate(void)
149{
150	acpi_status status;
151	struct acpi_interface_info *next_interface;
152
153	status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
154	if (ACPI_FAILURE(status)) {
155		return (status);
156	}
157
158	next_interface = acpi_gbl_supported_interfaces;
 
159	while (next_interface) {
160		acpi_gbl_supported_interfaces = next_interface->next;
161
162		if (next_interface->flags & ACPI_OSI_DYNAMIC) {
163
164			/* Only interfaces added at runtime can be freed */
165
 
166			ACPI_FREE(next_interface->name);
167			ACPI_FREE(next_interface);
168		} else {
169			/* Interface is in static list. Reset it to invalid or valid. */
170
171			if (next_interface->flags & ACPI_OSI_DEFAULT_INVALID) {
172				next_interface->flags |= ACPI_OSI_INVALID;
173			} else {
174				next_interface->flags &= ~ACPI_OSI_INVALID;
175			}
176		}
177
178		next_interface = acpi_gbl_supported_interfaces;
179	}
180
181	acpi_os_release_mutex(acpi_gbl_osi_mutex);
182	return (AE_OK);
183}
184
185/*******************************************************************************
186 *
187 * FUNCTION:    acpi_ut_install_interface
188 *
189 * PARAMETERS:  interface_name      - The interface to install
190 *
191 * RETURN:      Status
192 *
193 * DESCRIPTION: Install the interface into the global interface list.
194 *              Caller MUST hold acpi_gbl_osi_mutex
195 *
196 ******************************************************************************/
197
198acpi_status acpi_ut_install_interface(acpi_string interface_name)
199{
200	struct acpi_interface_info *interface_info;
201
202	/* Allocate info block and space for the name string */
203
204	interface_info =
205	    ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_interface_info));
206	if (!interface_info) {
207		return (AE_NO_MEMORY);
208	}
209
210	interface_info->name = ACPI_ALLOCATE_ZEROED(strlen(interface_name) + 1);
 
211	if (!interface_info->name) {
212		ACPI_FREE(interface_info);
213		return (AE_NO_MEMORY);
214	}
215
216	/* Initialize new info and insert at the head of the global list */
217
218	strcpy(interface_info->name, interface_name);
219	interface_info->flags = ACPI_OSI_DYNAMIC;
220	interface_info->next = acpi_gbl_supported_interfaces;
221
222	acpi_gbl_supported_interfaces = interface_info;
223	return (AE_OK);
224}
225
226/*******************************************************************************
227 *
228 * FUNCTION:    acpi_ut_remove_interface
229 *
230 * PARAMETERS:  interface_name      - The interface to remove
231 *
232 * RETURN:      Status
233 *
234 * DESCRIPTION: Remove the interface from the global interface list.
235 *              Caller MUST hold acpi_gbl_osi_mutex
236 *
237 ******************************************************************************/
238
239acpi_status acpi_ut_remove_interface(acpi_string interface_name)
240{
241	struct acpi_interface_info *previous_interface;
242	struct acpi_interface_info *next_interface;
243
244	previous_interface = next_interface = acpi_gbl_supported_interfaces;
245	while (next_interface) {
246		if (!strcmp(interface_name, next_interface->name)) {
247			/*
248			 * Found: name is in either the static list
249			 * or was added at runtime
250			 */
251			if (next_interface->flags & ACPI_OSI_DYNAMIC) {
252
253				/* Interface was added dynamically, remove and free it */
254
255				if (previous_interface == next_interface) {
256					acpi_gbl_supported_interfaces =
257					    next_interface->next;
258				} else {
259					previous_interface->next =
260					    next_interface->next;
261				}
262
263				ACPI_FREE(next_interface->name);
264				ACPI_FREE(next_interface);
265			} else {
266				/*
267				 * Interface is in static list. If marked invalid, then
268				 * it does not actually exist. Else, mark it invalid.
269				 */
270				if (next_interface->flags & ACPI_OSI_INVALID) {
271					return (AE_NOT_EXIST);
272				}
273
274				next_interface->flags |= ACPI_OSI_INVALID;
275			}
276
277			return (AE_OK);
278		}
279
280		previous_interface = next_interface;
281		next_interface = next_interface->next;
282	}
283
284	/* Interface was not found */
285
286	return (AE_NOT_EXIST);
287}
288
289/*******************************************************************************
290 *
291 * FUNCTION:    acpi_ut_update_interfaces
292 *
293 * PARAMETERS:  action              - Actions to be performed during the
294 *                                    update
295 *
296 * RETURN:      Status
297 *
298 * DESCRIPTION: Update _OSI interface strings, disabling or enabling OS vendor
299 *              strings or/and feature group strings.
300 *              Caller MUST hold acpi_gbl_osi_mutex
301 *
302 ******************************************************************************/
303
304acpi_status acpi_ut_update_interfaces(u8 action)
305{
306	struct acpi_interface_info *next_interface;
307
308	next_interface = acpi_gbl_supported_interfaces;
309	while (next_interface) {
310		if (((next_interface->flags & ACPI_OSI_FEATURE) &&
311		     (action & ACPI_FEATURE_STRINGS)) ||
312		    (!(next_interface->flags & ACPI_OSI_FEATURE) &&
313		     (action & ACPI_VENDOR_STRINGS))) {
314			if (action & ACPI_DISABLE_INTERFACES) {
315
316				/* Mark the interfaces as invalid */
317
318				next_interface->flags |= ACPI_OSI_INVALID;
319			} else {
320				/* Mark the interfaces as valid */
321
322				next_interface->flags &= ~ACPI_OSI_INVALID;
323			}
324		}
325
326		next_interface = next_interface->next;
327	}
328
329	return (AE_OK);
330}
331
332/*******************************************************************************
333 *
334 * FUNCTION:    acpi_ut_get_interface
335 *
336 * PARAMETERS:  interface_name      - The interface to find
337 *
338 * RETURN:      struct acpi_interface_info if found. NULL if not found.
339 *
340 * DESCRIPTION: Search for the specified interface name in the global list.
341 *              Caller MUST hold acpi_gbl_osi_mutex
342 *
343 ******************************************************************************/
344
345struct acpi_interface_info *acpi_ut_get_interface(acpi_string interface_name)
346{
347	struct acpi_interface_info *next_interface;
348
349	next_interface = acpi_gbl_supported_interfaces;
350	while (next_interface) {
351		if (!strcmp(interface_name, next_interface->name)) {
352			return (next_interface);
353		}
354
355		next_interface = next_interface->next;
356	}
357
358	return (NULL);
359}
360
361/*******************************************************************************
362 *
363 * FUNCTION:    acpi_ut_osi_implementation
364 *
365 * PARAMETERS:  walk_state          - Current walk state
366 *
367 * RETURN:      Status
368 *              Integer: TRUE (0) if input string is matched
369 *                       FALSE (-1) if string is not matched
370 *
371 * DESCRIPTION: Implementation of the _OSI predefined control method. When
372 *              an invocation of _OSI is encountered in the system AML,
373 *              control is transferred to this function.
374 *
375 * (August 2016)
376 * Note:  _OSI is now defined to return "Ones" to indicate a match, for
377 * compatibility with other ACPI implementations. On a 32-bit DSDT, Ones
378 * is 0xFFFFFFFF. On a 64-bit DSDT, Ones is 0xFFFFFFFFFFFFFFFF
379 * (ACPI_UINT64_MAX).
380 *
381 * This function always returns ACPI_UINT64_MAX for TRUE, and later code
382 * will truncate this to 32 bits if necessary.
383 *
384 ******************************************************************************/
385
386acpi_status acpi_ut_osi_implementation(struct acpi_walk_state *walk_state)
387{
388	union acpi_operand_object *string_desc;
389	union acpi_operand_object *return_desc;
390	struct acpi_interface_info *interface_info;
391	acpi_interface_handler interface_handler;
392	acpi_status status;
393	u64 return_value;
394
395	ACPI_FUNCTION_TRACE(ut_osi_implementation);
396
397	/* Validate the string input argument (from the AML caller) */
398
399	string_desc = walk_state->arguments[0].object;
400	if (!string_desc || (string_desc->common.type != ACPI_TYPE_STRING)) {
401		return_ACPI_STATUS(AE_TYPE);
402	}
403
404	/* Create a return object */
405
406	return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
407	if (!return_desc) {
408		return_ACPI_STATUS(AE_NO_MEMORY);
409	}
410
411	/* Default return value is 0, NOT SUPPORTED */
412
413	return_value = 0;
414	status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
415	if (ACPI_FAILURE(status)) {
416		acpi_ut_remove_reference(return_desc);
417		return_ACPI_STATUS(status);
418	}
419
420	/* Lookup the interface in the global _OSI list */
421
422	interface_info = acpi_ut_get_interface(string_desc->string.pointer);
423	if (interface_info && !(interface_info->flags & ACPI_OSI_INVALID)) {
424		/*
425		 * The interface is supported.
426		 * Update the osi_data if necessary. We keep track of the latest
427		 * version of Windows that has been requested by the BIOS.
428		 */
429		if (interface_info->value > acpi_gbl_osi_data) {
430			acpi_gbl_osi_data = interface_info->value;
431		}
432
433		return_value = ACPI_UINT64_MAX;
434	}
435
436	acpi_os_release_mutex(acpi_gbl_osi_mutex);
437
438	/*
439	 * Invoke an optional _OSI interface handler. The host OS may wish
440	 * to do some interface-specific handling. For example, warn about
441	 * certain interfaces or override the true/false support value.
442	 */
443	interface_handler = acpi_gbl_interface_handler;
444	if (interface_handler) {
445		if (interface_handler
446		    (string_desc->string.pointer, (u32)return_value)) {
447			return_value = ACPI_UINT64_MAX;
448		}
449	}
450
451	ACPI_DEBUG_PRINT_RAW((ACPI_DB_INFO,
452			      "ACPI: BIOS _OSI(\"%s\") is %ssupported\n",
453			      string_desc->string.pointer,
454			      return_value == 0 ? "not " : ""));
455
456	/* Complete the return object */
457
458	return_desc->integer.value = return_value;
459	walk_state->return_desc = return_desc;
460	return_ACPI_STATUS(AE_OK);
461}
v3.1
 
  1/******************************************************************************
  2 *
  3 * Module Name: utosi - Support for the _OSI predefined control method
  4 *
 
 
  5 *****************************************************************************/
  6
  7/*
  8 * Copyright (C) 2000 - 2011, Intel Corp.
  9 * All rights reserved.
 10 *
 11 * Redistribution and use in source and binary forms, with or without
 12 * modification, are permitted provided that the following conditions
 13 * are met:
 14 * 1. Redistributions of source code must retain the above copyright
 15 *    notice, this list of conditions, and the following disclaimer,
 16 *    without modification.
 17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 18 *    substantially similar to the "NO WARRANTY" disclaimer below
 19 *    ("Disclaimer") and any redistribution must be conditioned upon
 20 *    including a substantially similar Disclaimer requirement for further
 21 *    binary redistribution.
 22 * 3. Neither the names of the above-listed copyright holders nor the names
 23 *    of any contributors may be used to endorse or promote products derived
 24 *    from this software without specific prior written permission.
 25 *
 26 * Alternatively, this software may be distributed under the terms of the
 27 * GNU General Public License ("GPL") version 2 as published by the Free
 28 * Software Foundation.
 29 *
 30 * NO WARRANTY
 31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 41 * POSSIBILITY OF SUCH DAMAGES.
 42 */
 43
 44#include <acpi/acpi.h>
 45#include "accommon.h"
 46
 47#define _COMPONENT          ACPI_UTILITIES
 48ACPI_MODULE_NAME("utosi")
 49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 50/*
 51 * Strings supported by the _OSI predefined control method (which is
 52 * implemented internally within this module.)
 53 *
 54 * March 2009: Removed "Linux" as this host no longer wants to respond true
 55 * for this string. Basically, the only safe OS strings are windows-related
 56 * and in many or most cases represent the only test path within the
 57 * BIOS-provided ASL code.
 58 *
 59 * The last element of each entry is used to track the newest version of
 60 * Windows that the BIOS has requested.
 61 */
 62static struct acpi_interface_info acpi_default_supported_interfaces[] = {
 63	/* Operating System Vendor Strings */
 64
 65	{"Windows 2000", NULL, 0, ACPI_OSI_WIN_2000},	/* Windows 2000 */
 66	{"Windows 2001", NULL, 0, ACPI_OSI_WIN_XP},	/* Windows XP */
 67	{"Windows 2001 SP1", NULL, 0, ACPI_OSI_WIN_XP_SP1},	/* Windows XP SP1 */
 68	{"Windows 2001.1", NULL, 0, ACPI_OSI_WINSRV_2003},	/* Windows Server 2003 */
 69	{"Windows 2001 SP2", NULL, 0, ACPI_OSI_WIN_XP_SP2},	/* Windows XP SP2 */
 70	{"Windows 2001.1 SP1", NULL, 0, ACPI_OSI_WINSRV_2003_SP1},	/* Windows Server 2003 SP1 - Added 03/2006 */
 71	{"Windows 2006", NULL, 0, ACPI_OSI_WIN_VISTA},	/* Windows Vista - Added 03/2006 */
 72	{"Windows 2006.1", NULL, 0, ACPI_OSI_WINSRV_2008},	/* Windows Server 2008 - Added 09/2009 */
 73	{"Windows 2006 SP1", NULL, 0, ACPI_OSI_WIN_VISTA_SP1},	/* Windows Vista SP1 - Added 09/2009 */
 74	{"Windows 2006 SP2", NULL, 0, ACPI_OSI_WIN_VISTA_SP2},	/* Windows Vista SP2 - Added 09/2010 */
 75	{"Windows 2009", NULL, 0, ACPI_OSI_WIN_7},	/* Windows 7 and Server 2008 R2 - Added 09/2009 */
 
 
 
 
 
 
 
 
 
 
 
 
 76
 77	/* Feature Group Strings */
 78
 79	{"Extended Address Space Descriptor", NULL, 0, 0}
 80
 81	/*
 82	 * All "optional" feature group strings (features that are implemented
 83	 * by the host) should be dynamically added by the host via
 84	 * acpi_install_interface and should not be manually added here.
 85	 *
 86	 * Examples of optional feature group strings:
 87	 *
 88	 * "Module Device"
 89	 * "Processor Device"
 90	 * "3.0 Thermal Model"
 91	 * "3.0 _SCP Extensions"
 92	 * "Processor Aggregator Device"
 93	 */
 
 
 
 
 
 
 94};
 95
 96/*******************************************************************************
 97 *
 98 * FUNCTION:    acpi_ut_initialize_interfaces
 99 *
100 * PARAMETERS:  None
101 *
102 * RETURN:      Status
103 *
104 * DESCRIPTION: Initialize the global _OSI supported interfaces list
105 *
106 ******************************************************************************/
107
108acpi_status acpi_ut_initialize_interfaces(void)
109{
 
110	u32 i;
111
112	(void)acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
 
 
 
 
113	acpi_gbl_supported_interfaces = acpi_default_supported_interfaces;
114
115	/* Link the static list of supported interfaces */
116
117	for (i = 0;
118	     i < (ACPI_ARRAY_LENGTH(acpi_default_supported_interfaces) - 1);
119	     i++) {
120		acpi_default_supported_interfaces[i].next =
121		    &acpi_default_supported_interfaces[(acpi_size) i + 1];
122	}
123
124	acpi_os_release_mutex(acpi_gbl_osi_mutex);
125	return (AE_OK);
126}
127
128/*******************************************************************************
129 *
130 * FUNCTION:    acpi_ut_interface_terminate
131 *
132 * PARAMETERS:  None
133 *
134 * RETURN:      None
135 *
136 * DESCRIPTION: Delete all interfaces in the global list. Sets
137 *              acpi_gbl_supported_interfaces to NULL.
138 *
139 ******************************************************************************/
140
141void acpi_ut_interface_terminate(void)
142{
 
143	struct acpi_interface_info *next_interface;
144
145	(void)acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
 
 
 
 
146	next_interface = acpi_gbl_supported_interfaces;
147
148	while (next_interface) {
149		acpi_gbl_supported_interfaces = next_interface->next;
150
151		/* Only interfaces added at runtime can be freed */
 
 
152
153		if (next_interface->flags & ACPI_OSI_DYNAMIC) {
154			ACPI_FREE(next_interface->name);
155			ACPI_FREE(next_interface);
 
 
 
 
 
 
 
 
156		}
157
158		next_interface = acpi_gbl_supported_interfaces;
159	}
160
161	acpi_os_release_mutex(acpi_gbl_osi_mutex);
 
162}
163
164/*******************************************************************************
165 *
166 * FUNCTION:    acpi_ut_install_interface
167 *
168 * PARAMETERS:  interface_name      - The interface to install
169 *
170 * RETURN:      Status
171 *
172 * DESCRIPTION: Install the interface into the global interface list.
173 *              Caller MUST hold acpi_gbl_osi_mutex
174 *
175 ******************************************************************************/
176
177acpi_status acpi_ut_install_interface(acpi_string interface_name)
178{
179	struct acpi_interface_info *interface_info;
180
181	/* Allocate info block and space for the name string */
182
183	interface_info =
184	    ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_interface_info));
185	if (!interface_info) {
186		return (AE_NO_MEMORY);
187	}
188
189	interface_info->name =
190	    ACPI_ALLOCATE_ZEROED(ACPI_STRLEN(interface_name) + 1);
191	if (!interface_info->name) {
192		ACPI_FREE(interface_info);
193		return (AE_NO_MEMORY);
194	}
195
196	/* Initialize new info and insert at the head of the global list */
197
198	ACPI_STRCPY(interface_info->name, interface_name);
199	interface_info->flags = ACPI_OSI_DYNAMIC;
200	interface_info->next = acpi_gbl_supported_interfaces;
201
202	acpi_gbl_supported_interfaces = interface_info;
203	return (AE_OK);
204}
205
206/*******************************************************************************
207 *
208 * FUNCTION:    acpi_ut_remove_interface
209 *
210 * PARAMETERS:  interface_name      - The interface to remove
211 *
212 * RETURN:      Status
213 *
214 * DESCRIPTION: Remove the interface from the global interface list.
215 *              Caller MUST hold acpi_gbl_osi_mutex
216 *
217 ******************************************************************************/
218
219acpi_status acpi_ut_remove_interface(acpi_string interface_name)
220{
221	struct acpi_interface_info *previous_interface;
222	struct acpi_interface_info *next_interface;
223
224	previous_interface = next_interface = acpi_gbl_supported_interfaces;
225	while (next_interface) {
226		if (!ACPI_STRCMP(interface_name, next_interface->name)) {
227
228			/* Found: name is in either the static list or was added at runtime */
229
 
230			if (next_interface->flags & ACPI_OSI_DYNAMIC) {
231
232				/* Interface was added dynamically, remove and free it */
233
234				if (previous_interface == next_interface) {
235					acpi_gbl_supported_interfaces =
236					    next_interface->next;
237				} else {
238					previous_interface->next =
239					    next_interface->next;
240				}
241
242				ACPI_FREE(next_interface->name);
243				ACPI_FREE(next_interface);
244			} else {
245				/*
246				 * Interface is in static list. If marked invalid, then it
247				 * does not actually exist. Else, mark it invalid.
248				 */
249				if (next_interface->flags & ACPI_OSI_INVALID) {
250					return (AE_NOT_EXIST);
251				}
252
253				next_interface->flags |= ACPI_OSI_INVALID;
254			}
255
256			return (AE_OK);
257		}
258
259		previous_interface = next_interface;
260		next_interface = next_interface->next;
261	}
262
263	/* Interface was not found */
264
265	return (AE_NOT_EXIST);
266}
267
268/*******************************************************************************
269 *
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
270 * FUNCTION:    acpi_ut_get_interface
271 *
272 * PARAMETERS:  interface_name      - The interface to find
273 *
274 * RETURN:      struct acpi_interface_info if found. NULL if not found.
275 *
276 * DESCRIPTION: Search for the specified interface name in the global list.
277 *              Caller MUST hold acpi_gbl_osi_mutex
278 *
279 ******************************************************************************/
280
281struct acpi_interface_info *acpi_ut_get_interface(acpi_string interface_name)
282{
283	struct acpi_interface_info *next_interface;
284
285	next_interface = acpi_gbl_supported_interfaces;
286	while (next_interface) {
287		if (!ACPI_STRCMP(interface_name, next_interface->name)) {
288			return (next_interface);
289		}
290
291		next_interface = next_interface->next;
292	}
293
294	return (NULL);
295}
296
297/*******************************************************************************
298 *
299 * FUNCTION:    acpi_ut_osi_implementation
300 *
301 * PARAMETERS:  walk_state          - Current walk state
302 *
303 * RETURN:      Status
 
 
304 *
305 * DESCRIPTION: Implementation of the _OSI predefined control method. When
306 *              an invocation of _OSI is encountered in the system AML,
307 *              control is transferred to this function.
308 *
 
 
 
 
 
 
 
 
 
309 ******************************************************************************/
310
311acpi_status acpi_ut_osi_implementation(struct acpi_walk_state * walk_state)
312{
313	union acpi_operand_object *string_desc;
314	union acpi_operand_object *return_desc;
315	struct acpi_interface_info *interface_info;
316	acpi_interface_handler interface_handler;
317	u32 return_value;
 
318
319	ACPI_FUNCTION_TRACE(ut_osi_implementation);
320
321	/* Validate the string input argument (from the AML caller) */
322
323	string_desc = walk_state->arguments[0].object;
324	if (!string_desc || (string_desc->common.type != ACPI_TYPE_STRING)) {
325		return_ACPI_STATUS(AE_TYPE);
326	}
327
328	/* Create a return object */
329
330	return_desc = acpi_ut_create_internal_object(ACPI_TYPE_INTEGER);
331	if (!return_desc) {
332		return_ACPI_STATUS(AE_NO_MEMORY);
333	}
334
335	/* Default return value is 0, NOT SUPPORTED */
336
337	return_value = 0;
338	(void)acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
 
 
 
 
339
340	/* Lookup the interface in the global _OSI list */
341
342	interface_info = acpi_ut_get_interface(string_desc->string.pointer);
343	if (interface_info && !(interface_info->flags & ACPI_OSI_INVALID)) {
344		/*
345		 * The interface is supported.
346		 * Update the osi_data if necessary. We keep track of the latest
347		 * version of Windows that has been requested by the BIOS.
348		 */
349		if (interface_info->value > acpi_gbl_osi_data) {
350			acpi_gbl_osi_data = interface_info->value;
351		}
352
353		return_value = ACPI_UINT32_MAX;
354	}
355
356	acpi_os_release_mutex(acpi_gbl_osi_mutex);
357
358	/*
359	 * Invoke an optional _OSI interface handler. The host OS may wish
360	 * to do some interface-specific handling. For example, warn about
361	 * certain interfaces or override the true/false support value.
362	 */
363	interface_handler = acpi_gbl_interface_handler;
364	if (interface_handler) {
365		return_value =
366		    interface_handler(string_desc->string.pointer,
367				      return_value);
 
368	}
369
370	ACPI_DEBUG_PRINT_RAW((ACPI_DB_INFO,
371			      "ACPI: BIOS _OSI(\"%s\") is %ssupported\n",
372			      string_desc->string.pointer,
373			      return_value == 0 ? "not " : ""));
374
375	/* Complete the return object */
376
377	return_desc->integer.value = return_value;
378	walk_state->return_desc = return_desc;
379	return_ACPI_STATUS(AE_OK);
380}