cregit-Linux how code gets into the kernel

Release 4.11 drivers/acpi/acpica/exutils.c

/******************************************************************************
 *
 * Module Name: exutils - interpreter/scanner utilities
 *
 *****************************************************************************/

/*
 * Copyright (C) 2000 - 2017, Intel Corp.
 * 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.
 */

/*
 * DEFINE_AML_GLOBALS is tested in amlcode.h
 * to determine whether certain global names should be "defined" or only
 * "declared" in the current compilation. This enhances maintainability
 * by enabling a single header file to embody all knowledge of the names
 * in question.
 *
 * Exactly one module of any executable should #define DEFINE_GLOBALS
 * before #including the header files which use this convention. The
 * names in question will be defined and initialized in that module,
 * and declared as extern in all other modules which #include those
 * header files.
 */


#define DEFINE_AML_GLOBALS

#include <acpi/acpi.h>
#include "accommon.h"
#include "acinterp.h"
#include "amlcode.h"


#define _COMPONENT          ACPI_EXECUTER
ACPI_MODULE_NAME("exutils")

/* Local prototypes */
static u32 acpi_ex_digits_needed(u64 value, u32 base);

#ifndef ACPI_NO_METHOD_EXECUTION
/*******************************************************************************
 *
 * FUNCTION:    acpi_ex_enter_interpreter
 *
 * PARAMETERS:  None
 *
 * RETURN:      None
 *
 * DESCRIPTION: Enter the interpreter execution region. Failure to enter
 *              the interpreter region is a fatal system error. Used in
 *              conjunction with exit_interpreter.
 *
 ******************************************************************************/


void acpi_ex_enter_interpreter(void) { acpi_status status; ACPI_FUNCTION_TRACE(ex_enter_interpreter); status = acpi_ut_acquire_mutex(ACPI_MTX_INTERPRETER); if (ACPI_FAILURE(status)) { ACPI_ERROR((AE_INFO, "Could not acquire AML Interpreter mutex")); } status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE); if (ACPI_FAILURE(status)) { ACPI_ERROR((AE_INFO, "Could not acquire AML Namespace mutex")); } return_VOID; }

Contributors

PersonTokensPropCommitsCommitProp
Lv Zheng2537.31%111.11%
Andy Grover1522.39%111.11%
Linus Torvalds1014.93%222.22%
Linus Torvalds (pre-git)710.45%111.11%
Robert Moore57.46%333.33%
Len Brown57.46%111.11%
Total67100.00%9100.00%

/******************************************************************************* * * FUNCTION: acpi_ex_exit_interpreter * * PARAMETERS: None * * RETURN: None * * DESCRIPTION: Exit the interpreter execution region. This is the top level * routine used to exit the interpreter when all processing has * been completed, or when the method blocks. * * Cases where the interpreter is unlocked internally: * 1) Method will be blocked on a Sleep() AML opcode * 2) Method will be blocked on an Acquire() AML opcode * 3) Method will be blocked on a Wait() AML opcode * 4) Method will be blocked to acquire the global lock * 5) Method will be blocked waiting to execute a serialized control * method that is currently executing * 6) About to invoke a user-installed opregion handler * ******************************************************************************/
void acpi_ex_exit_interpreter(void) { acpi_status status; ACPI_FUNCTION_TRACE(ex_exit_interpreter); status = acpi_ut_release_mutex(ACPI_MTX_NAMESPACE); if (ACPI_FAILURE(status)) { ACPI_ERROR((AE_INFO, "Could not release AML Namespace mutex")); } status = acpi_ut_release_mutex(ACPI_MTX_INTERPRETER); if (ACPI_FAILURE(status)) { ACPI_ERROR((AE_INFO, "Could not release AML Interpreter mutex")); } return_VOID; }

Contributors

PersonTokensPropCommitsCommitProp
Lv Zheng2537.31%19.09%
Andy Grover2029.85%218.18%
Linus Torvalds (pre-git)811.94%19.09%
Linus Torvalds710.45%218.18%
Robert Moore57.46%327.27%
Len Brown22.99%218.18%
Total67100.00%11100.00%

/******************************************************************************* * * FUNCTION: acpi_ex_truncate_for32bit_table * * PARAMETERS: obj_desc - Object to be truncated * * RETURN: TRUE if a truncation was performed, FALSE otherwise. * * DESCRIPTION: Truncate an ACPI Integer to 32 bits if the execution mode is * 32-bit, as determined by the revision of the DSDT. * ******************************************************************************/
u8 acpi_ex_truncate_for32bit_table(union acpi_operand_object *obj_desc) { ACPI_FUNCTION_ENTRY(); /* * Object must be a valid number and we must be executing * a control method. Object could be NS node for AML_INT_NAMEPATH_OP. */ if ((!obj_desc) || (ACPI_GET_DESCRIPTOR_TYPE(obj_desc) != ACPI_DESC_TYPE_OPERAND) || (obj_desc->common.type != ACPI_TYPE_INTEGER)) { return (FALSE); } if ((acpi_gbl_integer_byte_width == 4) && (obj_desc->integer.value > (u64)ACPI_UINT32_MAX)) { /* * We are executing in a 32-bit ACPI table. Truncate * the value to 32 bits by zeroing out the upper 32-bit field */ obj_desc->integer.value &= (u64)ACPI_UINT32_MAX; return (TRUE); } return (FALSE); }

Contributors

PersonTokensPropCommitsCommitProp
Robert Moore4751.09%535.71%
Linus Torvalds (pre-git)3436.96%321.43%
Linus Torvalds66.52%321.43%
Andy Grover55.43%321.43%
Total92100.00%14100.00%

/******************************************************************************* * * FUNCTION: acpi_ex_acquire_global_lock * * PARAMETERS: field_flags - Flags with Lock rule: * always_lock or never_lock * * RETURN: None * * DESCRIPTION: Obtain the ACPI hardware Global Lock, only if the field * flags specifiy that it is to be obtained before field access. * ******************************************************************************/
void acpi_ex_acquire_global_lock(u32 field_flags) { acpi_status status; ACPI_FUNCTION_TRACE(ex_acquire_global_lock); /* Only use the lock if the always_lock bit is set */ if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) { return_VOID; } /* Attempt to get the global lock, wait forever */ status = acpi_ex_acquire_mutex_object(ACPI_WAIT_FOREVER, acpi_gbl_global_lock_mutex, acpi_os_get_thread_id()); if (ACPI_FAILURE(status)) { ACPI_EXCEPTION((AE_INFO, status, "Could not acquire Global Lock")); } return_VOID; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)2335.38%112.50%
Robert Moore2233.85%337.50%
Linus Torvalds1218.46%225.00%
Andy Grover812.31%225.00%
Total65100.00%8100.00%

/******************************************************************************* * * FUNCTION: acpi_ex_release_global_lock * * PARAMETERS: field_flags - Flags with Lock rule: * always_lock or never_lock * * RETURN: None * * DESCRIPTION: Release the ACPI hardware Global Lock * ******************************************************************************/
void acpi_ex_release_global_lock(u32 field_flags) { acpi_status status; ACPI_FUNCTION_TRACE(ex_release_global_lock); /* Only use the lock if the always_lock bit is set */ if (!(field_flags & AML_FIELD_LOCK_RULE_MASK)) { return_VOID; } /* Release the global lock */ status = acpi_ex_release_mutex_object(acpi_gbl_global_lock_mutex); if (ACPI_FAILURE(status)) { /* Report the error, but there isn't much else we can do */ ACPI_EXCEPTION((AE_INFO, status, "Could not release Global Lock")); } return_VOID; }

Contributors

PersonTokensPropCommitsCommitProp
Robert Moore2642.62%433.33%
Andy Grover2236.07%433.33%
Linus Torvalds711.48%216.67%
Linus Torvalds (pre-git)58.20%18.33%
Len Brown11.64%18.33%
Total61100.00%12100.00%

/******************************************************************************* * * FUNCTION: acpi_ex_digits_needed * * PARAMETERS: value - Value to be represented * base - Base of representation * * RETURN: The number of digits. * * DESCRIPTION: Calculate the number of digits needed to represent the Value * in the given Base (Radix) * ******************************************************************************/
static u32 acpi_ex_digits_needed(u64 value, u32 base) { u32 num_digits; u64 current_value; ACPI_FUNCTION_TRACE(ex_digits_needed); /* u64 is unsigned, so we don't worry about a '-' prefix */ if (value == 0) { return_UINT32(1); } current_value = value; num_digits = 0; /* Count the digits in the requested base */ while (current_value) { (void)acpi_ut_short_divide(current_value, base, &current_value, NULL); num_digits++; } return_UINT32(num_digits); }

Contributors

PersonTokensPropCommitsCommitProp
Andy Grover2736.00%321.43%
Linus Torvalds (pre-git)2229.33%321.43%
Linus Torvalds1317.33%321.43%
Robert Moore79.33%428.57%
Len Brown68.00%17.14%
Total75100.00%14100.00%

/******************************************************************************* * * FUNCTION: acpi_ex_eisa_id_to_string * * PARAMETERS: out_string - Where to put the converted string (8 bytes) * compressed_id - EISAID to be converted * * RETURN: None * * DESCRIPTION: Convert a numeric EISAID to string representation. Return * buffer must be large enough to hold the string. The string * returned is always exactly of length ACPI_EISAID_STRING_SIZE * (includes null terminator). The EISAID is always 32 bits. * ******************************************************************************/
void acpi_ex_eisa_id_to_string(char *out_string, u64 compressed_id) { u32 swapped_id; ACPI_FUNCTION_ENTRY(); /* The EISAID should be a 32-bit integer */ if (compressed_id > ACPI_UINT32_MAX) { ACPI_WARNING((AE_INFO, "Expected EISAID is larger than 32 bits: " "0x%8.8X%8.8X, truncating", ACPI_FORMAT_UINT64(compressed_id))); } /* Swap ID to big-endian to get contiguous bits */ swapped_id = acpi_ut_dword_byte_swap((u32)compressed_id); /* First 3 bytes are uppercase letters. Next 4 bytes are hexadecimal */ out_string[0] = (char)(0x40 + (((unsigned long)swapped_id >> 26) & 0x1F)); out_string[1] = (char)(0x40 + ((swapped_id >> 21) & 0x1F)); out_string[2] = (char)(0x40 + ((swapped_id >> 16) & 0x1F)); out_string[3] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 12); out_string[4] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 8); out_string[5] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 4); out_string[6] = acpi_ut_hex_to_ascii_char((u64) swapped_id, 0); out_string[7] = 0; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)10353.93%19.09%
Robert Moore5126.70%327.27%
Linus Torvalds2010.47%218.18%
Andy Grover168.38%436.36%
Len Brown10.52%19.09%
Total191100.00%11100.00%

/******************************************************************************* * * FUNCTION: acpi_ex_integer_to_string * * PARAMETERS: out_string - Where to put the converted string. At least * 21 bytes are needed to hold the largest * possible 64-bit integer. * value - Value to be converted * * RETURN: Converted string in out_string * * DESCRIPTION: Convert a 64-bit integer to decimal string representation. * Assumes string buffer is large enough to hold the string. The * largest string is (ACPI_MAX64_DECIMAL_DIGITS + 1). * ******************************************************************************/
void acpi_ex_integer_to_string(char *out_string, u64 value) { u32 count; u32 digits_needed; u32 remainder; ACPI_FUNCTION_ENTRY(); digits_needed = acpi_ex_digits_needed(value, 10); out_string[digits_needed] = 0; for (count = digits_needed; count > 0; count--) { (void)acpi_ut_short_divide(value, 10, &value, &remainder); out_string[count - 1] = (char)('0' + remainder); } }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)5462.07%19.09%
Linus Torvalds2022.99%327.27%
Andy Grover66.90%327.27%
Robert Moore44.60%218.18%
Len Brown33.45%218.18%
Total87100.00%11100.00%

/******************************************************************************* * * FUNCTION: acpi_ex_pci_cls_to_string * * PARAMETERS: out_string - Where to put the converted string (7 bytes) * class_code - PCI class code to be converted (3 bytes) * * RETURN: Converted string in out_string * * DESCRIPTION: Convert 3-bytes PCI class code to string representation. * Return buffer must be large enough to hold the string. The * string returned is always exactly of length * ACPI_PCICLS_STRING_SIZE (includes null terminator). * ******************************************************************************/
void acpi_ex_pci_cls_to_string(char *out_string, u8 class_code[3]) { ACPI_FUNCTION_ENTRY(); /* All 3 bytes are hexadecimal */ out_string[0] = acpi_ut_hex_to_ascii_char((u64)class_code[0], 4); out_string[1] = acpi_ut_hex_to_ascii_char((u64)class_code[0], 0); out_string[2] = acpi_ut_hex_to_ascii_char((u64)class_code[1], 4); out_string[3] = acpi_ut_hex_to_ascii_char((u64)class_code[1], 0); out_string[4] = acpi_ut_hex_to_ascii_char((u64)class_code[2], 4); out_string[5] = acpi_ut_hex_to_ascii_char((u64)class_code[2], 0); out_string[6] = 0; }

Contributors

PersonTokensPropCommitsCommitProp
Suravee Suthikulpanit134100.00%1100.00%
Total134100.00%1100.00%

/******************************************************************************* * * FUNCTION: acpi_is_valid_space_id * * PARAMETERS: space_id - ID to be validated * * RETURN: TRUE if space_id is a valid/supported ID. * * DESCRIPTION: Validate an operation region space_ID. * ******************************************************************************/
u8 acpi_is_valid_space_id(u8 space_id) { if ((space_id >= ACPI_NUM_PREDEFINED_REGIONS) && (space_id < ACPI_USER_REGION_BEGIN) && (space_id != ACPI_ADR_SPACE_DATA_TABLE) && (space_id != ACPI_ADR_SPACE_FIXED_HARDWARE)) { return (FALSE); } return (TRUE); }

Contributors

PersonTokensPropCommitsCommitProp
Robert Moore46100.00%1100.00%
Total46100.00%1100.00%

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)26728.46%36.67%
Robert Moore23725.27%2044.44%
Suravee Suthikulpanit13414.29%12.22%
Andy Grover12613.43%1022.22%
Linus Torvalds10010.66%48.89%
Lv Zheng515.44%24.44%
Len Brown222.35%48.89%
Patrick Mochel10.11%12.22%
Total938100.00%45100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.