utxface.c 15.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/******************************************************************************
 *
3
 * Module Name: utxface - External interfaces, miscellaneous utility functions
L
Linus Torvalds 已提交
4 5 6 7
 *
 *****************************************************************************/

/*
8
 * Copyright (C) 2000 - 2013, Intel Corp.
L
Linus Torvalds 已提交
9 10 11 12 13 14 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
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions, and the following disclaimer,
 *    without modification.
 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
 *    substantially similar to the "NO WARRANTY" disclaimer below
 *    ("Disclaimer") and any redistribution must be conditioned upon
 *    including a substantially similar Disclaimer requirement for further
 *    binary redistribution.
 * 3. Neither the names of the above-listed copyright holders nor the names
 *    of any contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * NO WARRANTY
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGES.
 */

44
#include <linux/export.h>
L
Linus Torvalds 已提交
45
#include <acpi/acpi.h>
L
Len Brown 已提交
46 47
#include "accommon.h"
#include "acdebug.h"
L
Linus Torvalds 已提交
48 49

#define _COMPONENT          ACPI_UTILITIES
L
Len Brown 已提交
50
ACPI_MODULE_NAME("utxface")
L
Linus Torvalds 已提交
51 52 53 54 55 56 57 58 59

/*******************************************************************************
 *
 * FUNCTION:    acpi_terminate
 *
 * PARAMETERS:  None
 *
 * RETURN:      Status
 *
60
 * DESCRIPTION: Shutdown the ACPICA subsystem and release all resources.
L
Linus Torvalds 已提交
61 62
 *
 ******************************************************************************/
L
Len Brown 已提交
63
acpi_status acpi_terminate(void)
L
Linus Torvalds 已提交
64
{
L
Len Brown 已提交
65
	acpi_status status;
L
Linus Torvalds 已提交
66

B
Bob Moore 已提交
67
	ACPI_FUNCTION_TRACE(acpi_terminate);
L
Linus Torvalds 已提交
68

69 70 71 72 73 74 75 76 77 78 79 80 81
	/* Just exit if subsystem is already shutdown */

	if (acpi_gbl_shutdown) {
		ACPI_ERROR((AE_INFO, "ACPI Subsystem is already terminated"));
		return_ACPI_STATUS(AE_OK);
	}

	/* Subsystem appears active, go ahead and shut it down */

	acpi_gbl_shutdown = TRUE;
	acpi_gbl_startup_flags = 0;
	ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Shutting down ACPI Subsystem\n"));

L
Linus Torvalds 已提交
82 83 84 85 86 87
	/* Terminate the AML Debugger if present */

	ACPI_DEBUGGER_EXEC(acpi_gbl_db_terminate_threads = TRUE);

	/* Shutdown and free all resources */

L
Len Brown 已提交
88
	acpi_ut_subsystem_shutdown();
L
Linus Torvalds 已提交
89 90 91

	/* Free the mutex objects */

L
Len Brown 已提交
92
	acpi_ut_mutex_terminate();
L
Linus Torvalds 已提交
93 94 95 96 97

#ifdef ACPI_DEBUGGER

	/* Shut down the debugger */

L
Len Brown 已提交
98
	acpi_db_terminate();
L
Linus Torvalds 已提交
99 100 101 102
#endif

	/* Now we can shutdown the OS-dependent layer */

L
Len Brown 已提交
103 104
	status = acpi_os_terminate();
	return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
105 106
}

B
Bob Moore 已提交
107
ACPI_EXPORT_SYMBOL(acpi_terminate)
108

109
#ifndef ACPI_ASL_COMPILER
L
Linus Torvalds 已提交
110
#ifdef ACPI_FUTURE_USAGE
R
Robert Moore 已提交
111
/*******************************************************************************
L
Linus Torvalds 已提交
112 113 114 115 116 117 118 119
 *
 * FUNCTION:    acpi_subsystem_status
 *
 * PARAMETERS:  None
 *
 * RETURN:      Status of the ACPI subsystem
 *
 * DESCRIPTION: Other drivers that use the ACPI subsystem should call this
R
Robert Moore 已提交
120 121
 *              before making any other calls, to ensure the subsystem
 *              initialized successfully.
L
Linus Torvalds 已提交
122
 *
R
Robert Moore 已提交
123
 ******************************************************************************/
L
Len Brown 已提交
124
acpi_status acpi_subsystem_status(void)
L
Linus Torvalds 已提交
125
{
R
Robert Moore 已提交
126

L
Linus Torvalds 已提交
127 128
	if (acpi_gbl_startup_flags & ACPI_INITIALIZED_OK) {
		return (AE_OK);
L
Len Brown 已提交
129
	} else {
L
Linus Torvalds 已提交
130 131 132 133
		return (AE_ERROR);
	}
}

B
Bob Moore 已提交
134 135
ACPI_EXPORT_SYMBOL(acpi_subsystem_status)

R
Robert Moore 已提交
136
/*******************************************************************************
L
Linus Torvalds 已提交
137 138 139
 *
 * FUNCTION:    acpi_get_system_info
 *
R
Robert Moore 已提交
140 141
 * PARAMETERS:  out_buffer      - A buffer to receive the resources for the
 *                                device
L
Linus Torvalds 已提交
142
 *
143
 * RETURN:      status          - the status of the call
L
Linus Torvalds 已提交
144 145
 *
 * DESCRIPTION: This function is called to get information about the current
146
 *              state of the ACPI subsystem. It will return system information
L
Linus Torvalds 已提交
147 148 149 150 151 152
 *              in the out_buffer.
 *
 *              If the function fails an appropriate status will be returned
 *              and the value of out_buffer is undefined.
 *
 ******************************************************************************/
L
Len Brown 已提交
153
acpi_status acpi_get_system_info(struct acpi_buffer * out_buffer)
L
Linus Torvalds 已提交
154
{
L
Len Brown 已提交
155 156
	struct acpi_system_info *info_ptr;
	acpi_status status;
L
Linus Torvalds 已提交
157

B
Bob Moore 已提交
158
	ACPI_FUNCTION_TRACE(acpi_get_system_info);
L
Linus Torvalds 已提交
159 160 161

	/* Parameter validation */

L
Len Brown 已提交
162 163 164
	status = acpi_ut_validate_buffer(out_buffer);
	if (ACPI_FAILURE(status)) {
		return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
165 166 167 168
	}

	/* Validate/Allocate/Clear caller buffer */

L
Len Brown 已提交
169 170 171 172 173
	status =
	    acpi_ut_initialize_buffer(out_buffer,
				      sizeof(struct acpi_system_info));
	if (ACPI_FAILURE(status)) {
		return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
174 175 176 177 178
	}

	/*
	 * Populate the return buffer
	 */
L
Len Brown 已提交
179
	info_ptr = (struct acpi_system_info *)out_buffer->pointer;
L
Linus Torvalds 已提交
180

L
Len Brown 已提交
181
	info_ptr->acpi_ca_version = ACPI_CA_VERSION;
L
Linus Torvalds 已提交
182 183 184

	/* System flags (ACPI capabilities) */

L
Len Brown 已提交
185
	info_ptr->flags = ACPI_SYS_MODE_ACPI;
L
Linus Torvalds 已提交
186 187 188

	/* Timer resolution - 24 or 32 bits  */

189
	if (acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER) {
L
Linus Torvalds 已提交
190
		info_ptr->timer_resolution = 24;
L
Len Brown 已提交
191
	} else {
L
Linus Torvalds 已提交
192 193 194 195 196
		info_ptr->timer_resolution = 32;
	}

	/* Clear the reserved fields */

L
Len Brown 已提交
197 198
	info_ptr->reserved1 = 0;
	info_ptr->reserved2 = 0;
L
Linus Torvalds 已提交
199 200 201

	/* Current debug levels */

L
Len Brown 已提交
202 203
	info_ptr->debug_layer = acpi_dbg_layer;
	info_ptr->debug_level = acpi_dbg_level;
L
Linus Torvalds 已提交
204

L
Len Brown 已提交
205
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
206 207
}

B
Bob Moore 已提交
208
ACPI_EXPORT_SYMBOL(acpi_get_system_info)
L
Linus Torvalds 已提交
209 210 211 212 213

/*****************************************************************************
 *
 * FUNCTION:    acpi_install_initialization_handler
 *
214 215
 * PARAMETERS:  handler             - Callback procedure
 *              function            - Not (currently) used, see below
L
Linus Torvalds 已提交
216 217 218 219 220 221 222 223 224
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Install an initialization handler
 *
 * TBD: When a second function is added, must save the Function also.
 *
 ****************************************************************************/
acpi_status
L
Len Brown 已提交
225
acpi_install_initialization_handler(acpi_init_handler handler, u32 function)
L
Linus Torvalds 已提交
226 227 228 229 230 231 232 233 234 235 236
{

	if (!handler) {
		return (AE_BAD_PARAMETER);
	}

	if (acpi_gbl_init_handler) {
		return (AE_ALREADY_EXISTS);
	}

	acpi_gbl_init_handler = handler;
237
	return (AE_OK);
L
Linus Torvalds 已提交
238 239
}

B
Bob Moore 已提交
240
ACPI_EXPORT_SYMBOL(acpi_install_initialization_handler)
L
Len Brown 已提交
241
#endif				/*  ACPI_FUTURE_USAGE  */
242

L
Linus Torvalds 已提交
243 244 245 246 247 248 249 250 251 252 253
/*****************************************************************************
 *
 * FUNCTION:    acpi_purge_cached_objects
 *
 * PARAMETERS:  None
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Empty all caches (delete the cached objects)
 *
 ****************************************************************************/
L
Len Brown 已提交
254
acpi_status acpi_purge_cached_objects(void)
L
Linus Torvalds 已提交
255
{
B
Bob Moore 已提交
256
	ACPI_FUNCTION_TRACE(acpi_purge_cached_objects);
L
Linus Torvalds 已提交
257

L
Len Brown 已提交
258 259 260 261
	(void)acpi_os_purge_cache(acpi_gbl_state_cache);
	(void)acpi_os_purge_cache(acpi_gbl_operand_cache);
	(void)acpi_os_purge_cache(acpi_gbl_ps_node_cache);
	(void)acpi_os_purge_cache(acpi_gbl_ps_node_ext_cache);
262

L
Len Brown 已提交
263
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
264
}
B
Bob Moore 已提交
265 266

ACPI_EXPORT_SYMBOL(acpi_purge_cached_objects)
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289

/*****************************************************************************
 *
 * FUNCTION:    acpi_install_interface
 *
 * PARAMETERS:  interface_name      - The interface to install
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Install an _OSI interface to the global list
 *
 ****************************************************************************/
acpi_status acpi_install_interface(acpi_string interface_name)
{
	acpi_status status;
	struct acpi_interface_info *interface_info;

	/* Parameter validation */

	if (!interface_name || (ACPI_STRLEN(interface_name) == 0)) {
		return (AE_BAD_PARAMETER);
	}

290 291 292 293
	status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
	if (ACPI_FAILURE(status)) {
		return (status);
	}
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341

	/* Check if the interface name is already in the global list */

	interface_info = acpi_ut_get_interface(interface_name);
	if (interface_info) {
		/*
		 * The interface already exists in the list. This is OK if the
		 * interface has been marked invalid -- just clear the bit.
		 */
		if (interface_info->flags & ACPI_OSI_INVALID) {
			interface_info->flags &= ~ACPI_OSI_INVALID;
			status = AE_OK;
		} else {
			status = AE_ALREADY_EXISTS;
		}
	} else {
		/* New interface name, install into the global list */

		status = acpi_ut_install_interface(interface_name);
	}

	acpi_os_release_mutex(acpi_gbl_osi_mutex);
	return (status);
}

ACPI_EXPORT_SYMBOL(acpi_install_interface)

/*****************************************************************************
 *
 * FUNCTION:    acpi_remove_interface
 *
 * PARAMETERS:  interface_name      - The interface to remove
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Remove an _OSI interface from the global list
 *
 ****************************************************************************/
acpi_status acpi_remove_interface(acpi_string interface_name)
{
	acpi_status status;

	/* Parameter validation */

	if (!interface_name || (ACPI_STRLEN(interface_name) == 0)) {
		return (AE_BAD_PARAMETER);
	}

342 343 344 345
	status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
	if (ACPI_FAILURE(status)) {
		return (status);
	}
346 347 348 349 350 351 352 353 354 355 356 357 358

	status = acpi_ut_remove_interface(interface_name);

	acpi_os_release_mutex(acpi_gbl_osi_mutex);
	return (status);
}

ACPI_EXPORT_SYMBOL(acpi_remove_interface)

/*****************************************************************************
 *
 * FUNCTION:    acpi_install_interface_handler
 *
359
 * PARAMETERS:  handler             - The _OSI interface handler to install
360 361 362 363 364 365 366 367 368 369 370
 *                                    NULL means "remove existing handler"
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Install a handler for the predefined _OSI ACPI method.
 *              invoked during execution of the internal implementation of
 *              _OSI. A NULL handler simply removes any existing handler.
 *
 ****************************************************************************/
acpi_status acpi_install_interface_handler(acpi_interface_handler handler)
{
371
	acpi_status status;
372

373 374 375 376
	status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
	if (ACPI_FAILURE(status)) {
		return (status);
	}
377 378 379 380 381 382 383 384 385 386 387 388

	if (handler && acpi_gbl_interface_handler) {
		status = AE_ALREADY_EXISTS;
	} else {
		acpi_gbl_interface_handler = handler;
	}

	acpi_os_release_mutex(acpi_gbl_osi_mutex);
	return (status);
}

ACPI_EXPORT_SYMBOL(acpi_install_interface_handler)
389

390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
/*****************************************************************************
 *
 * FUNCTION:    acpi_update_interfaces
 *
 * PARAMETERS:  action              - Actions to be performed during the
 *                                    update
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Update _OSI interface strings, disabling or enabling OS vendor
 *              string or/and feature group strings.
 *
 ****************************************************************************/
acpi_status acpi_update_interfaces(u8 action)
{
	acpi_status status;

	status = acpi_os_acquire_mutex(acpi_gbl_osi_mutex, ACPI_WAIT_FOREVER);
	if (ACPI_FAILURE(status)) {
		return (status);
	}

	status = acpi_ut_update_interfaces(action);

	acpi_os_release_mutex(acpi_gbl_osi_mutex);
	return (status);
}

418 419 420 421 422
/*****************************************************************************
 *
 * FUNCTION:    acpi_check_address_range
 *
 * PARAMETERS:  space_id            - Address space ID
423 424 425
 *              address             - Start address
 *              length              - Length
 *              warn                - TRUE if warning on overlap desired
426 427 428 429 430 431 432
 *
 * RETURN:      Count of the number of conflicts detected.
 *
 * DESCRIPTION: Check if the input address range overlaps any of the
 *              ASL operation region address ranges.
 *
 ****************************************************************************/
433

434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
u32
acpi_check_address_range(acpi_adr_space_type space_id,
			 acpi_physical_address address,
			 acpi_size length, u8 warn)
{
	u32 overlaps;
	acpi_status status;

	status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE);
	if (ACPI_FAILURE(status)) {
		return (0);
	}

	overlaps = acpi_ut_check_address_range(space_id, address,
					       (u32)length, warn);

	(void)acpi_ut_release_mutex(ACPI_MTX_NAMESPACE);
	return (overlaps);
}

ACPI_EXPORT_SYMBOL(acpi_check_address_range)
455
#endif				/* !ACPI_ASL_COMPILER */
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
/*******************************************************************************
 *
 * FUNCTION:    acpi_decode_pld_buffer
 *
 * PARAMETERS:  in_buffer           - Buffer returned by _PLD method
 *              length              - Length of the in_buffer
 *              return_buffer       - Where the decode buffer is returned
 *
 * RETURN:      Status and the decoded _PLD buffer. User must deallocate
 *              the buffer via ACPI_FREE.
 *
 * DESCRIPTION: Decode the bit-packed buffer returned by the _PLD method into
 *              a local struct that is much more useful to an ACPI driver.
 *
 ******************************************************************************/
acpi_status
acpi_decode_pld_buffer(u8 *in_buffer,
		       acpi_size length, struct acpi_pld_info ** return_buffer)
{
	struct acpi_pld_info *pld_info;
	u32 *buffer = ACPI_CAST_PTR(u32, in_buffer);
	u32 dword;

	/* Parameter validation */

	if (!in_buffer || !return_buffer || (length < 16)) {
		return (AE_BAD_PARAMETER);
	}

	pld_info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_pld_info));
	if (!pld_info) {
		return (AE_NO_MEMORY);
	}

	/* First 32-bit DWord */

	ACPI_MOVE_32_TO_32(&dword, &buffer[0]);
	pld_info->revision = ACPI_PLD_GET_REVISION(&dword);
	pld_info->ignore_color = ACPI_PLD_GET_IGNORE_COLOR(&dword);
	pld_info->color = ACPI_PLD_GET_COLOR(&dword);

	/* Second 32-bit DWord */

	ACPI_MOVE_32_TO_32(&dword, &buffer[1]);
	pld_info->width = ACPI_PLD_GET_WIDTH(&dword);
	pld_info->height = ACPI_PLD_GET_HEIGHT(&dword);

	/* Third 32-bit DWord */

	ACPI_MOVE_32_TO_32(&dword, &buffer[2]);
	pld_info->user_visible = ACPI_PLD_GET_USER_VISIBLE(&dword);
	pld_info->dock = ACPI_PLD_GET_DOCK(&dword);
	pld_info->lid = ACPI_PLD_GET_LID(&dword);
	pld_info->panel = ACPI_PLD_GET_PANEL(&dword);
	pld_info->vertical_position = ACPI_PLD_GET_VERTICAL(&dword);
	pld_info->horizontal_position = ACPI_PLD_GET_HORIZONTAL(&dword);
	pld_info->shape = ACPI_PLD_GET_SHAPE(&dword);
	pld_info->group_orientation = ACPI_PLD_GET_ORIENTATION(&dword);
	pld_info->group_token = ACPI_PLD_GET_TOKEN(&dword);
	pld_info->group_position = ACPI_PLD_GET_POSITION(&dword);
	pld_info->bay = ACPI_PLD_GET_BAY(&dword);

	/* Fourth 32-bit DWord */

	ACPI_MOVE_32_TO_32(&dword, &buffer[3]);
	pld_info->ejectable = ACPI_PLD_GET_EJECTABLE(&dword);
	pld_info->ospm_eject_required = ACPI_PLD_GET_OSPM_EJECT(&dword);
	pld_info->cabinet_number = ACPI_PLD_GET_CABINET(&dword);
	pld_info->card_cage_number = ACPI_PLD_GET_CARD_CAGE(&dword);
	pld_info->reference = ACPI_PLD_GET_REFERENCE(&dword);
	pld_info->rotation = ACPI_PLD_GET_ROTATION(&dword);
	pld_info->order = ACPI_PLD_GET_ORDER(&dword);

	if (length >= ACPI_PLD_BUFFER_SIZE) {

		/* Fifth 32-bit DWord (Revision 2 of _PLD) */

		ACPI_MOVE_32_TO_32(&dword, &buffer[4]);
		pld_info->vertical_offset = ACPI_PLD_GET_VERT_OFFSET(&dword);
		pld_info->horizontal_offset = ACPI_PLD_GET_HORIZ_OFFSET(&dword);
	}

	*return_buffer = pld_info;
	return (AE_OK);
}

ACPI_EXPORT_SYMBOL(acpi_decode_pld_buffer)