2005-04-16 22:20:36 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: exregion - ACPI default op_region (address space) handlers
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
2015-02-05 07:20:45 +00:00
|
|
|
* Copyright (C) 2000 - 2015, Intel Corp.
|
2005-04-16 22:20:36 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <acpi/acpi.h>
|
2009-01-09 05:30:03 +00:00
|
|
|
#include "accommon.h"
|
|
|
|
#include "acinterp.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#define _COMPONENT ACPI_EXECUTER
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_MODULE_NAME("exregion")
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_system_memory_space_handler
|
|
|
|
*
|
2012-07-12 01:40:10 +00:00
|
|
|
* PARAMETERS: function - Read or Write operation
|
|
|
|
* address - Where in the space to read or write
|
2005-04-16 22:20:36 +00:00
|
|
|
* bit_width - Field width in bits (8, 16, or 32)
|
2012-07-12 01:40:10 +00:00
|
|
|
* value - Pointer to in or out value
|
2005-04-16 22:20:36 +00:00
|
|
|
* handler_context - Pointer to Handler's context
|
|
|
|
* region_context - Pointer to context specific to the
|
|
|
|
* accessed region
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Handler for the System Memory address space (Op Region)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
acpi_status
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_ex_system_memory_space_handler(u32 function,
|
|
|
|
acpi_physical_address address,
|
|
|
|
u32 bit_width,
|
2010-01-21 02:06:32 +00:00
|
|
|
u64 *value,
|
2005-08-05 04:44:28 +00:00
|
|
|
void *handler_context, void *region_context)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_status status = AE_OK;
|
|
|
|
void *logical_addr_ptr = NULL;
|
|
|
|
struct acpi_mem_space_context *mem_info = region_context;
|
|
|
|
u32 length;
|
2009-10-22 01:11:11 +00:00
|
|
|
acpi_size map_length;
|
|
|
|
acpi_size page_boundary_map_length;
|
2005-10-21 04:00:00 +00:00
|
|
|
#ifdef ACPI_MISALIGNMENT_NOT_SUPPORTED
|
2005-08-05 04:44:28 +00:00
|
|
|
u32 remainder;
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
|
|
|
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 21:15:00 +00:00
|
|
|
ACPI_FUNCTION_TRACE(ex_system_memory_space_handler);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Validate and translate the bit width */
|
|
|
|
|
|
|
|
switch (bit_width) {
|
|
|
|
case 8:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
length = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 16:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
length = 2;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 32:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
length = 4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 64:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
length = 8;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2010-03-05 09:56:40 +00:00
|
|
|
ACPI_ERROR((AE_INFO, "Invalid SystemMemory width %u",
|
2006-01-27 21:43:00 +00:00
|
|
|
bit_width));
|
2005-08-05 04:44:28 +00:00
|
|
|
return_ACPI_STATUS(AE_AML_OPERAND_VALUE);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2005-10-21 04:00:00 +00:00
|
|
|
#ifdef ACPI_MISALIGNMENT_NOT_SUPPORTED
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Hardware does not support non-aligned data transfers, we must verify
|
|
|
|
* the request.
|
|
|
|
*/
|
2010-01-21 02:06:32 +00:00
|
|
|
(void)acpi_ut_short_divide((u64) address, length, NULL, &remainder);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (remainder != 0) {
|
2005-08-05 04:44:28 +00:00
|
|
|
return_ACPI_STATUS(AE_AML_ALIGNMENT);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Does the request fit into the cached memory mapping?
|
|
|
|
* Is 1) Address below the current mapping? OR
|
|
|
|
* 2) Address beyond the current mapping?
|
|
|
|
*/
|
|
|
|
if ((address < mem_info->mapped_physical_address) ||
|
2010-01-21 02:06:32 +00:00
|
|
|
(((u64) address + length) > ((u64)
|
|
|
|
mem_info->mapped_physical_address +
|
|
|
|
mem_info->mapped_length))) {
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* The request cannot be resolved by the current memory mapping;
|
|
|
|
* Delete the existing mapping and create a new one.
|
|
|
|
*/
|
|
|
|
if (mem_info->mapped_length) {
|
2006-10-02 04:00:00 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Valid mapping, delete it */
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_os_unmap_memory(mem_info->mapped_logical_address,
|
|
|
|
mem_info->mapped_length);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-12-19 05:36:49 +00:00
|
|
|
* October 2009: Attempt to map from the requested address to the
|
|
|
|
* end of the region. However, we will never map more than one
|
|
|
|
* page, nor will we cross a page boundary.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2009-10-22 01:11:11 +00:00
|
|
|
map_length = (acpi_size)
|
2005-08-05 04:44:28 +00:00
|
|
|
((mem_info->address + mem_info->length) - address);
|
2005-04-19 02:49:35 +00:00
|
|
|
|
2009-10-22 01:11:11 +00:00
|
|
|
/*
|
|
|
|
* If mapping the entire remaining portion of the region will cross
|
|
|
|
* a page boundary, just map up to the page boundary, do not cross.
|
|
|
|
* On some systems, crossing a page boundary while mapping regions
|
|
|
|
* can cause warnings if the pages have different attributes
|
2012-12-19 05:36:49 +00:00
|
|
|
* due to resource management.
|
|
|
|
*
|
|
|
|
* This has the added benefit of constraining a single mapping to
|
|
|
|
* one page, which is similar to the original code that used a 4k
|
|
|
|
* maximum window.
|
2009-10-22 01:11:11 +00:00
|
|
|
*/
|
2015-04-13 03:49:54 +00:00
|
|
|
page_boundary_map_length = (acpi_size)
|
|
|
|
(ACPI_ROUND_UP(address, ACPI_DEFAULT_PAGE_SIZE) - address);
|
2012-12-20 01:07:26 +00:00
|
|
|
if (page_boundary_map_length == 0) {
|
2009-10-22 01:11:11 +00:00
|
|
|
page_boundary_map_length = ACPI_DEFAULT_PAGE_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (map_length > page_boundary_map_length) {
|
|
|
|
map_length = page_boundary_map_length;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a new mapping starting at the address given */
|
|
|
|
|
2015-04-13 03:48:31 +00:00
|
|
|
mem_info->mapped_logical_address =
|
|
|
|
acpi_os_map_memory(address, map_length);
|
2007-02-02 16:48:18 +00:00
|
|
|
if (!mem_info->mapped_logical_address) {
|
2006-01-27 21:43:00 +00:00
|
|
|
ACPI_ERROR((AE_INFO,
|
2010-03-05 09:56:40 +00:00
|
|
|
"Could not map memory at 0x%8.8X%8.8X, size %u",
|
2015-04-13 03:48:52 +00:00
|
|
|
ACPI_FORMAT_UINT64(address),
|
2015-04-13 03:48:12 +00:00
|
|
|
(u32)map_length));
|
2005-04-16 22:20:36 +00:00
|
|
|
mem_info->mapped_length = 0;
|
2007-02-02 16:48:18 +00:00
|
|
|
return_ACPI_STATUS(AE_NO_MEMORY);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Save the physical address and mapping size */
|
|
|
|
|
|
|
|
mem_info->mapped_physical_address = address;
|
2009-10-22 01:11:11 +00:00
|
|
|
mem_info->mapped_length = map_length;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Generate a logical pointer corresponding to the address we want to
|
|
|
|
* access
|
|
|
|
*/
|
|
|
|
logical_addr_ptr = mem_info->mapped_logical_address +
|
2010-01-21 02:06:32 +00:00
|
|
|
((u64) address - (u64) mem_info->mapped_physical_address);
|
2005-08-05 04:44:28 +00:00
|
|
|
|
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_INFO,
|
2010-05-26 03:47:13 +00:00
|
|
|
"System-Memory (width %u) R/W %u Address=%8.8X%8.8X\n",
|
2015-04-13 03:48:52 +00:00
|
|
|
bit_width, function, ACPI_FORMAT_UINT64(address)));
|
2005-08-05 04:44:28 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Perform the memory read or write
|
|
|
|
*
|
|
|
|
* Note: For machines that do not support non-aligned transfers, the target
|
2012-10-31 02:26:55 +00:00
|
|
|
* address was checked for alignment above. We do not attempt to break the
|
2005-08-05 04:44:28 +00:00
|
|
|
* transfer up into smaller (byte-size) chunks because the AML specifically
|
|
|
|
* asked for a transfer width that the hardware may require.
|
|
|
|
*/
|
2005-04-16 22:20:36 +00:00
|
|
|
switch (function) {
|
|
|
|
case ACPI_READ:
|
|
|
|
|
|
|
|
*value = 0;
|
|
|
|
switch (bit_width) {
|
|
|
|
case 8:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
|
|
|
*value = (u64)ACPI_GET8(logical_addr_ptr);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 16:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
|
|
|
*value = (u64)ACPI_GET16(logical_addr_ptr);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 32:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
|
|
|
*value = (u64)ACPI_GET32(logical_addr_ptr);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 64:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
|
|
|
*value = (u64)ACPI_GET64(logical_addr_ptr);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
2007-02-02 16:48:23 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
default:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* bit_width was already validated */
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_WRITE:
|
|
|
|
|
|
|
|
switch (bit_width) {
|
|
|
|
case 8:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2012-12-19 05:38:24 +00:00
|
|
|
ACPI_SET8(logical_addr_ptr, *value);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 16:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2012-12-19 05:38:24 +00:00
|
|
|
ACPI_SET16(logical_addr_ptr, *value);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 32:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2012-12-19 05:38:24 +00:00
|
|
|
ACPI_SET32(logical_addr_ptr, *value);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 64:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2012-12-19 05:38:24 +00:00
|
|
|
ACPI_SET64(logical_addr_ptr, *value);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* bit_width was already validated */
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
status = AE_BAD_PARAMETER;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_system_io_space_handler
|
|
|
|
*
|
2012-07-12 01:40:10 +00:00
|
|
|
* PARAMETERS: function - Read or Write operation
|
|
|
|
* address - Where in the space to read or write
|
2005-04-16 22:20:36 +00:00
|
|
|
* bit_width - Field width in bits (8, 16, or 32)
|
2012-07-12 01:40:10 +00:00
|
|
|
* value - Pointer to in or out value
|
2005-04-16 22:20:36 +00:00
|
|
|
* handler_context - Pointer to Handler's context
|
|
|
|
* region_context - Pointer to context specific to the
|
|
|
|
* accessed region
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Handler for the System IO address space (Op Region)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_ex_system_io_space_handler(u32 function,
|
|
|
|
acpi_physical_address address,
|
|
|
|
u32 bit_width,
|
2010-01-21 02:06:32 +00:00
|
|
|
u64 *value,
|
2005-08-05 04:44:28 +00:00
|
|
|
void *handler_context, void *region_context)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_status status = AE_OK;
|
|
|
|
u32 value32;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 21:15:00 +00:00
|
|
|
ACPI_FUNCTION_TRACE(ex_system_io_space_handler);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_INFO,
|
2010-05-26 03:47:13 +00:00
|
|
|
"System-IO (width %u) R/W %u Address=%8.8X%8.8X\n",
|
2015-04-13 03:48:52 +00:00
|
|
|
bit_width, function, ACPI_FORMAT_UINT64(address)));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Decode the function parameter */
|
|
|
|
|
|
|
|
switch (function) {
|
|
|
|
case ACPI_READ:
|
|
|
|
|
2009-03-19 01:37:47 +00:00
|
|
|
status = acpi_hw_read_port((acpi_io_address) address,
|
2005-08-05 04:44:28 +00:00
|
|
|
&value32, bit_width);
|
2005-04-16 22:20:36 +00:00
|
|
|
*value = value32;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_WRITE:
|
|
|
|
|
2009-03-19 01:37:47 +00:00
|
|
|
status = acpi_hw_write_port((acpi_io_address) address,
|
2005-08-05 04:44:28 +00:00
|
|
|
(u32) * value, bit_width);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-06-08 00:58:14 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
status = AE_BAD_PARAMETER;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_pci_config_space_handler
|
|
|
|
*
|
2012-07-12 01:40:10 +00:00
|
|
|
* PARAMETERS: function - Read or Write operation
|
|
|
|
* address - Where in the space to read or write
|
2005-04-16 22:20:36 +00:00
|
|
|
* bit_width - Field width in bits (8, 16, or 32)
|
2012-07-12 01:40:10 +00:00
|
|
|
* value - Pointer to in or out value
|
2005-04-16 22:20:36 +00:00
|
|
|
* handler_context - Pointer to Handler's context
|
|
|
|
* region_context - Pointer to context specific to the
|
|
|
|
* accessed region
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Handler for the PCI Config address space (Op Region)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_ex_pci_config_space_handler(u32 function,
|
|
|
|
acpi_physical_address address,
|
|
|
|
u32 bit_width,
|
2010-01-21 02:06:32 +00:00
|
|
|
u64 *value,
|
2005-08-05 04:44:28 +00:00
|
|
|
void *handler_context, void *region_context)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_status status = AE_OK;
|
|
|
|
struct acpi_pci_id *pci_id;
|
|
|
|
u16 pci_register;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 21:15:00 +00:00
|
|
|
ACPI_FUNCTION_TRACE(ex_pci_config_space_handler);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The arguments to acpi_os(Read|Write)pci_configuration are:
|
|
|
|
*
|
|
|
|
* pci_segment is the PCI bus segment range 0-31
|
|
|
|
* pci_bus is the PCI bus number range 0-255
|
|
|
|
* pci_device is the PCI device number range 0-31
|
|
|
|
* pci_function is the PCI device function number
|
|
|
|
* pci_register is the Config space register range 0-255 bytes
|
|
|
|
*
|
2012-07-12 01:40:10 +00:00
|
|
|
* value - input value for write, output address for read
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
*/
|
2005-08-05 04:44:28 +00:00
|
|
|
pci_id = (struct acpi_pci_id *)region_context;
|
2005-04-16 22:20:36 +00:00
|
|
|
pci_register = (u16) (u32) address;
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
ACPI_DEBUG_PRINT((ACPI_DB_INFO,
|
2015-12-29 05:54:36 +00:00
|
|
|
"Pci-Config %u (%u) Seg(%04x) Bus(%04x) "
|
|
|
|
"Dev(%04x) Func(%04x) Reg(%04x)\n",
|
2005-08-05 04:44:28 +00:00
|
|
|
function, bit_width, pci_id->segment, pci_id->bus,
|
|
|
|
pci_id->device, pci_id->function, pci_register));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
switch (function) {
|
|
|
|
case ACPI_READ:
|
|
|
|
|
2013-10-31 01:29:49 +00:00
|
|
|
*value = 0;
|
2015-12-29 05:54:36 +00:00
|
|
|
status =
|
|
|
|
acpi_os_read_pci_configuration(pci_id, pci_register, value,
|
|
|
|
bit_width);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_WRITE:
|
|
|
|
|
2015-12-29 05:54:36 +00:00
|
|
|
status =
|
|
|
|
acpi_os_write_pci_configuration(pci_id, pci_register,
|
|
|
|
*value, bit_width);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
status = AE_BAD_PARAMETER;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_cmos_space_handler
|
|
|
|
*
|
2012-07-12 01:40:10 +00:00
|
|
|
* PARAMETERS: function - Read or Write operation
|
|
|
|
* address - Where in the space to read or write
|
2005-04-16 22:20:36 +00:00
|
|
|
* bit_width - Field width in bits (8, 16, or 32)
|
2012-07-12 01:40:10 +00:00
|
|
|
* value - Pointer to in or out value
|
2005-04-16 22:20:36 +00:00
|
|
|
* handler_context - Pointer to Handler's context
|
|
|
|
* region_context - Pointer to context specific to the
|
|
|
|
* accessed region
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Handler for the CMOS address space (Op Region)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_ex_cmos_space_handler(u32 function,
|
|
|
|
acpi_physical_address address,
|
|
|
|
u32 bit_width,
|
2010-01-21 02:06:32 +00:00
|
|
|
u64 *value,
|
2005-08-05 04:44:28 +00:00
|
|
|
void *handler_context, void *region_context)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_status status = AE_OK;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 21:15:00 +00:00
|
|
|
ACPI_FUNCTION_TRACE(ex_cmos_space_handler);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_pci_bar_space_handler
|
|
|
|
*
|
2012-07-12 01:40:10 +00:00
|
|
|
* PARAMETERS: function - Read or Write operation
|
|
|
|
* address - Where in the space to read or write
|
2005-04-16 22:20:36 +00:00
|
|
|
* bit_width - Field width in bits (8, 16, or 32)
|
2012-07-12 01:40:10 +00:00
|
|
|
* value - Pointer to in or out value
|
2005-04-16 22:20:36 +00:00
|
|
|
* handler_context - Pointer to Handler's context
|
|
|
|
* region_context - Pointer to context specific to the
|
|
|
|
* accessed region
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Handler for the PCI bar_target address space (Op Region)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_ex_pci_bar_space_handler(u32 function,
|
|
|
|
acpi_physical_address address,
|
|
|
|
u32 bit_width,
|
2010-01-21 02:06:32 +00:00
|
|
|
u64 *value,
|
2005-08-05 04:44:28 +00:00
|
|
|
void *handler_context, void *region_context)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_status status = AE_OK;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 21:15:00 +00:00
|
|
|
ACPI_FUNCTION_TRACE(ex_pci_bar_space_handler);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-08-05 04:44:28 +00:00
|
|
|
return_ACPI_STATUS(status);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: acpi_ex_data_table_space_handler
|
|
|
|
*
|
2012-07-12 01:40:10 +00:00
|
|
|
* PARAMETERS: function - Read or Write operation
|
|
|
|
* address - Where in the space to read or write
|
2005-04-16 22:20:36 +00:00
|
|
|
* bit_width - Field width in bits (8, 16, or 32)
|
2012-07-12 01:40:10 +00:00
|
|
|
* value - Pointer to in or out value
|
2005-04-16 22:20:36 +00:00
|
|
|
* handler_context - Pointer to Handler's context
|
|
|
|
* region_context - Pointer to context specific to the
|
|
|
|
* accessed region
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Handler for the Data Table address space (Op Region)
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
acpi_status
|
2005-08-05 04:44:28 +00:00
|
|
|
acpi_ex_data_table_space_handler(u32 function,
|
|
|
|
acpi_physical_address address,
|
|
|
|
u32 bit_width,
|
2010-01-21 02:06:32 +00:00
|
|
|
u64 *value,
|
2005-08-05 04:44:28 +00:00
|
|
|
void *handler_context, void *region_context)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
ACPI: ACPICA 20060421
Removed a device initialization optimization introduced in
20051216 where the _STA method was not run unless an _INI
was also present for the same device. This optimization
could cause problems because it could allow _INI methods
to be run within a not-present device subtree (If a
not-present device had no _INI, _STA would not be run,
the not-present status would not be discovered, and the
children of the device would be incorrectly traversed.)
Implemented a new _STA optimization where namespace
subtrees that do not contain _INI are identified and
ignored during device initialization. Selectively running
_STA can significantly improve boot time on large machines
(with assistance from Len Brown.)
Implemented support for the device initialization case
where the returned _STA flags indicate a device not-present
but functioning. In this case, _INI is not run, but the
device children are examined for presence, as per the
ACPI specification.
Implemented an additional change to the IndexField support
in order to conform to MS behavior. The value written to
the Index Register is not simply a byte offset, it is a
byte offset in units of the access width of the parent
Index Field. (Fiodor Suietov)
Defined and deployed a new OSL interface,
acpi_os_validate_address(). This interface is called during
the creation of all AML operation regions, and allows
the host OS to exert control over what addresses it will
allow the AML code to access. Operation Regions whose
addresses are disallowed will cause a runtime exception
when they are actually accessed (will not affect or abort
table loading.)
Defined and deployed a new OSL interface,
acpi_os_validate_interface(). This interface allows the host OS
to match the various "optional" interface/behavior strings
for the _OSI predefined control method as appropriate
(with assistance from Bjorn Helgaas.)
Restructured and corrected various problems in the
exception handling code paths within DsCallControlMethod
and DsTerminateControlMethod in dsmethod (with assistance
from Takayoshi Kochi.)
Modified the Linux source converter to ignore quoted string
literals while converting identifiers from mixed to lower
case. This will correct problems with the disassembler
and other areas where such strings must not be modified.
The ACPI_FUNCTION_* macros no longer require quotes around
the function name. This allows the Linux source converter
to convert the names, now that the converter ignores
quoted strings.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2006-04-21 21:15:00 +00:00
|
|
|
ACPI_FUNCTION_TRACE(ex_data_table_space_handler);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-04-01 03:09:00 +00:00
|
|
|
/*
|
|
|
|
* Perform the memory read or write. The bit_width was already
|
|
|
|
* validated.
|
|
|
|
*/
|
2005-04-16 22:20:36 +00:00
|
|
|
switch (function) {
|
|
|
|
case ACPI_READ:
|
|
|
|
|
2015-07-01 06:45:11 +00:00
|
|
|
memcpy(ACPI_CAST_PTR(char, value),
|
|
|
|
ACPI_PHYSADDR_TO_PTR(address), ACPI_DIV_8(bit_width));
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ACPI_WRITE:
|
2010-04-01 03:09:00 +00:00
|
|
|
|
2015-07-01 06:45:11 +00:00
|
|
|
memcpy(ACPI_PHYSADDR_TO_PTR(address),
|
|
|
|
ACPI_CAST_PTR(char, value), ACPI_DIV_8(bit_width));
|
2010-04-01 03:09:00 +00:00
|
|
|
break;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
default:
|
|
|
|
|
2010-04-01 03:09:00 +00:00
|
|
|
return_ACPI_STATUS(AE_BAD_PARAMETER);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-05-26 20:36:00 +00:00
|
|
|
return_ACPI_STATUS(AE_OK);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|