1 /******************************************************************************
3 * Module Name: utosi - Support for the _OSI predefined control method
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2013, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
44 #include <acpi/acpi.h>
47 #define _COMPONENT ACPI_UTILITIES
48 ACPI_MODULE_NAME("utosi")
51 * Strings supported by the _OSI predefined control method (which is
52 * implemented internally within this module.)
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.
59 * The last element of each entry is used to track the newest version of
60 * Windows that the BIOS has requested.
62 static struct acpi_interface_info acpi_default_supported_interfaces
[] = {
63 /* Operating System Vendor Strings */
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 {"Windows 2012", NULL
, 0, ACPI_OSI_WIN_8
}, /* Windows 8 and Server 2012 - Added 08/2012 */
78 /* Feature Group Strings */
80 {"Extended Address Space Descriptor", NULL
, ACPI_OSI_FEATURE
, 0},
83 * All "optional" feature group strings (features that are implemented
84 * by the host) should be dynamically modified to VALID by the host via
85 * acpi_install_interface or acpi_update_interfaces. Such optional feature
86 * group strings are set as INVALID by default here.
89 {"Module Device", NULL
, ACPI_OSI_OPTIONAL_FEATURE
, 0},
90 {"Processor Device", NULL
, ACPI_OSI_OPTIONAL_FEATURE
, 0},
91 {"3.0 Thermal Model", NULL
, ACPI_OSI_OPTIONAL_FEATURE
, 0},
92 {"3.0 _SCP Extensions", NULL
, ACPI_OSI_OPTIONAL_FEATURE
, 0},
93 {"Processor Aggregator Device", NULL
, ACPI_OSI_OPTIONAL_FEATURE
, 0}
96 /*******************************************************************************
98 * FUNCTION: acpi_ut_initialize_interfaces
104 * DESCRIPTION: Initialize the global _OSI supported interfaces list
106 ******************************************************************************/
108 acpi_status
acpi_ut_initialize_interfaces(void)
113 status
= acpi_os_acquire_mutex(acpi_gbl_osi_mutex
, ACPI_WAIT_FOREVER
);
114 if (ACPI_FAILURE(status
)) {
118 acpi_gbl_supported_interfaces
= acpi_default_supported_interfaces
;
120 /* Link the static list of supported interfaces */
123 i
< (ACPI_ARRAY_LENGTH(acpi_default_supported_interfaces
) - 1);
125 acpi_default_supported_interfaces
[i
].next
=
126 &acpi_default_supported_interfaces
[(acpi_size
) i
+ 1];
129 acpi_os_release_mutex(acpi_gbl_osi_mutex
);
133 /*******************************************************************************
135 * FUNCTION: acpi_ut_interface_terminate
141 * DESCRIPTION: Delete all interfaces in the global list. Sets
142 * acpi_gbl_supported_interfaces to NULL.
144 ******************************************************************************/
146 acpi_status
acpi_ut_interface_terminate(void)
149 struct acpi_interface_info
*next_interface
;
151 status
= acpi_os_acquire_mutex(acpi_gbl_osi_mutex
, ACPI_WAIT_FOREVER
);
152 if (ACPI_FAILURE(status
)) {
156 next_interface
= acpi_gbl_supported_interfaces
;
157 while (next_interface
) {
158 acpi_gbl_supported_interfaces
= next_interface
->next
;
160 if (next_interface
->flags
& ACPI_OSI_DYNAMIC
) {
162 /* Only interfaces added at runtime can be freed */
164 ACPI_FREE(next_interface
->name
);
165 ACPI_FREE(next_interface
);
167 /* Interface is in static list. Reset it to invalid or valid. */
169 if (next_interface
->flags
& ACPI_OSI_DEFAULT_INVALID
) {
170 next_interface
->flags
|= ACPI_OSI_INVALID
;
172 next_interface
->flags
&= ~ACPI_OSI_INVALID
;
176 next_interface
= acpi_gbl_supported_interfaces
;
179 acpi_os_release_mutex(acpi_gbl_osi_mutex
);
183 /*******************************************************************************
185 * FUNCTION: acpi_ut_install_interface
187 * PARAMETERS: interface_name - The interface to install
191 * DESCRIPTION: Install the interface into the global interface list.
192 * Caller MUST hold acpi_gbl_osi_mutex
194 ******************************************************************************/
196 acpi_status
acpi_ut_install_interface(acpi_string interface_name
)
198 struct acpi_interface_info
*interface_info
;
200 /* Allocate info block and space for the name string */
203 ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_interface_info
));
204 if (!interface_info
) {
205 return (AE_NO_MEMORY
);
208 interface_info
->name
=
209 ACPI_ALLOCATE_ZEROED(ACPI_STRLEN(interface_name
) + 1);
210 if (!interface_info
->name
) {
211 ACPI_FREE(interface_info
);
212 return (AE_NO_MEMORY
);
215 /* Initialize new info and insert at the head of the global list */
217 ACPI_STRCPY(interface_info
->name
, interface_name
);
218 interface_info
->flags
= ACPI_OSI_DYNAMIC
;
219 interface_info
->next
= acpi_gbl_supported_interfaces
;
221 acpi_gbl_supported_interfaces
= interface_info
;
225 /*******************************************************************************
227 * FUNCTION: acpi_ut_remove_interface
229 * PARAMETERS: interface_name - The interface to remove
233 * DESCRIPTION: Remove the interface from the global interface list.
234 * Caller MUST hold acpi_gbl_osi_mutex
236 ******************************************************************************/
238 acpi_status
acpi_ut_remove_interface(acpi_string interface_name
)
240 struct acpi_interface_info
*previous_interface
;
241 struct acpi_interface_info
*next_interface
;
243 previous_interface
= next_interface
= acpi_gbl_supported_interfaces
;
244 while (next_interface
) {
245 if (!ACPI_STRCMP(interface_name
, next_interface
->name
)) {
247 /* Found: name is in either the static list or was added at runtime */
249 if (next_interface
->flags
& ACPI_OSI_DYNAMIC
) {
251 /* Interface was added dynamically, remove and free it */
253 if (previous_interface
== next_interface
) {
254 acpi_gbl_supported_interfaces
=
255 next_interface
->next
;
257 previous_interface
->next
=
258 next_interface
->next
;
261 ACPI_FREE(next_interface
->name
);
262 ACPI_FREE(next_interface
);
265 * Interface is in static list. If marked invalid, then it
266 * does not actually exist. Else, mark it invalid.
268 if (next_interface
->flags
& ACPI_OSI_INVALID
) {
269 return (AE_NOT_EXIST
);
272 next_interface
->flags
|= ACPI_OSI_INVALID
;
278 previous_interface
= next_interface
;
279 next_interface
= next_interface
->next
;
282 /* Interface was not found */
284 return (AE_NOT_EXIST
);
287 /*******************************************************************************
289 * FUNCTION: acpi_ut_update_interfaces
291 * PARAMETERS: action - Actions to be performed during the
296 * DESCRIPTION: Update _OSI interface strings, disabling or enabling OS vendor
297 * strings or/and feature group strings.
298 * Caller MUST hold acpi_gbl_osi_mutex
300 ******************************************************************************/
302 acpi_status
acpi_ut_update_interfaces(u8 action
)
304 struct acpi_interface_info
*next_interface
;
306 next_interface
= acpi_gbl_supported_interfaces
;
307 while (next_interface
) {
308 if (((next_interface
->flags
& ACPI_OSI_FEATURE
) &&
309 (action
& ACPI_FEATURE_STRINGS
)) ||
310 (!(next_interface
->flags
& ACPI_OSI_FEATURE
) &&
311 (action
& ACPI_VENDOR_STRINGS
))) {
312 if (action
& ACPI_DISABLE_INTERFACES
) {
314 /* Mark the interfaces as invalid */
316 next_interface
->flags
|= ACPI_OSI_INVALID
;
318 /* Mark the interfaces as valid */
320 next_interface
->flags
&= ~ACPI_OSI_INVALID
;
324 next_interface
= next_interface
->next
;
330 /*******************************************************************************
332 * FUNCTION: acpi_ut_get_interface
334 * PARAMETERS: interface_name - The interface to find
336 * RETURN: struct acpi_interface_info if found. NULL if not found.
338 * DESCRIPTION: Search for the specified interface name in the global list.
339 * Caller MUST hold acpi_gbl_osi_mutex
341 ******************************************************************************/
343 struct acpi_interface_info
*acpi_ut_get_interface(acpi_string interface_name
)
345 struct acpi_interface_info
*next_interface
;
347 next_interface
= acpi_gbl_supported_interfaces
;
348 while (next_interface
) {
349 if (!ACPI_STRCMP(interface_name
, next_interface
->name
)) {
350 return (next_interface
);
353 next_interface
= next_interface
->next
;
359 /*******************************************************************************
361 * FUNCTION: acpi_ut_osi_implementation
363 * PARAMETERS: walk_state - Current walk state
367 * DESCRIPTION: Implementation of the _OSI predefined control method. When
368 * an invocation of _OSI is encountered in the system AML,
369 * control is transferred to this function.
371 ******************************************************************************/
373 acpi_status
acpi_ut_osi_implementation(struct acpi_walk_state
* walk_state
)
375 union acpi_operand_object
*string_desc
;
376 union acpi_operand_object
*return_desc
;
377 struct acpi_interface_info
*interface_info
;
378 acpi_interface_handler interface_handler
;
382 ACPI_FUNCTION_TRACE(ut_osi_implementation
);
384 /* Validate the string input argument (from the AML caller) */
386 string_desc
= walk_state
->arguments
[0].object
;
387 if (!string_desc
|| (string_desc
->common
.type
!= ACPI_TYPE_STRING
)) {
388 return_ACPI_STATUS(AE_TYPE
);
391 /* Create a return object */
393 return_desc
= acpi_ut_create_internal_object(ACPI_TYPE_INTEGER
);
395 return_ACPI_STATUS(AE_NO_MEMORY
);
398 /* Default return value is 0, NOT SUPPORTED */
401 status
= acpi_os_acquire_mutex(acpi_gbl_osi_mutex
, ACPI_WAIT_FOREVER
);
402 if (ACPI_FAILURE(status
)) {
403 acpi_ut_remove_reference(return_desc
);
404 return_ACPI_STATUS(status
);
407 /* Lookup the interface in the global _OSI list */
409 interface_info
= acpi_ut_get_interface(string_desc
->string
.pointer
);
410 if (interface_info
&& !(interface_info
->flags
& ACPI_OSI_INVALID
)) {
412 * The interface is supported.
413 * Update the osi_data if necessary. We keep track of the latest
414 * version of Windows that has been requested by the BIOS.
416 if (interface_info
->value
> acpi_gbl_osi_data
) {
417 acpi_gbl_osi_data
= interface_info
->value
;
420 return_value
= ACPI_UINT32_MAX
;
423 acpi_os_release_mutex(acpi_gbl_osi_mutex
);
426 * Invoke an optional _OSI interface handler. The host OS may wish
427 * to do some interface-specific handling. For example, warn about
428 * certain interfaces or override the true/false support value.
430 interface_handler
= acpi_gbl_interface_handler
;
431 if (interface_handler
) {
433 interface_handler(string_desc
->string
.pointer
,
437 ACPI_DEBUG_PRINT_RAW((ACPI_DB_INFO
,
438 "ACPI: BIOS _OSI(\"%s\") is %ssupported\n",
439 string_desc
->string
.pointer
,
440 return_value
== 0 ? "not " : ""));
442 /* Complete the return object */
444 return_desc
->integer
.value
= return_value
;
445 walk_state
->return_desc
= return_desc
;
446 return_ACPI_STATUS(AE_OK
);