2 /******************************************************************************
4 * Module Name: exregion - ACPI default OpRegion (address space) handlers
6 *****************************************************************************/
8 /******************************************************************************
12 * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
13 * All rights reserved.
17 * 2.1. This is your license from Intel Corp. under its intellectual property
18 * rights. You may have additional license terms from the party that provided
19 * you this software, covering your right to use that party's intellectual
22 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
23 * copy of the source code appearing in this file ("Covered Code") an
24 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
25 * base code distributed originally by Intel ("Original Intel Code") to copy,
26 * make derivatives, distribute, use and display any portion of the Covered
27 * Code in any form, with the right to sublicense such rights; and
29 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
30 * license (with the right to sublicense), under only those claims of Intel
31 * patents that are infringed by the Original Intel Code, to make, use, sell,
32 * offer to sell, and import the Covered Code and derivative works thereof
33 * solely to the minimum extent necessary to exercise the above copyright
34 * license, and in no event shall the patent license extend to any additions
35 * to or modifications of the Original Intel Code. No other license or right
36 * is granted directly or by implication, estoppel or otherwise;
38 * The above copyright and patent license is granted only if the following
43 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
44 * Redistribution of source code of any substantial portion of the Covered
45 * Code or modification with rights to further distribute source must include
46 * the above Copyright Notice, the above License, this list of Conditions,
47 * and the following Disclaimer and Export Compliance provision. In addition,
48 * Licensee must cause all Covered Code to which Licensee contributes to
49 * contain a file documenting the changes Licensee made to create that Covered
50 * Code and the date of any change. Licensee must include in that file the
51 * documentation of any changes made by any predecessor Licensee. Licensee
52 * must include a prominent statement that the modification is derived,
53 * directly or indirectly, from Original Intel Code.
55 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
56 * Redistribution of source code of any substantial portion of the Covered
57 * Code or modification without rights to further distribute source must
58 * include the following Disclaimer and Export Compliance provision in the
59 * documentation and/or other materials provided with distribution. In
60 * addition, Licensee may not authorize further sublicense of source of any
61 * portion of the Covered Code, and must include terms to the effect that the
62 * license from Licensee to its licensee is limited to the intellectual
63 * property embodied in the software Licensee provides to its licensee, and
64 * not to intellectual property embodied in modifications its licensee may
67 * 3.3. Redistribution of Executable. Redistribution in executable form of any
68 * substantial portion of the Covered Code or modification must reproduce the
69 * above Copyright Notice, and the following Disclaimer and Export Compliance
70 * provision in the documentation and/or other materials provided with the
73 * 3.4. Intel retains all right, title, and interest in and to the Original
76 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
77 * Intel shall be used in advertising or otherwise to promote the sale, use or
78 * other dealings in products derived from or relating to the Covered Code
79 * without prior written authorization from Intel.
81 * 4. Disclaimer and Export Compliance
83 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
84 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
85 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
86 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
87 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
88 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
91 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
92 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
93 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
94 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
95 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
96 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
97 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
100 * 4.3. Licensee shall not export, either directly or indirectly, any of this
101 * software or system incorporating such software without first obtaining any
102 * required license or other approval from the U. S. Department of Commerce or
103 * any other agency or department of the United States Government. In the
104 * event Licensee exports any such software from the United States or
105 * re-exports any such software from a foreign destination, Licensee shall
106 * ensure that the distribution and export/re-export of the software is in
107 * compliance with all laws, regulations, orders, or other restrictions of the
108 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
109 * any of its subsidiaries will export/re-export any technical data, process,
110 * software, or service, directly or indirectly, to any country for which the
111 * United States government or any agency thereof requires an export license,
112 * other governmental approval, or letter of assurance, without first obtaining
113 * such license, approval or letter.
115 *****************************************************************************/
118 #define __EXREGION_C__
121 #include "accommon.h"
122 #include "acinterp.h"
125 #define _COMPONENT ACPI_EXECUTER
126 ACPI_MODULE_NAME ("exregion")
129 /*******************************************************************************
131 * FUNCTION: AcpiExSystemMemorySpaceHandler
133 * PARAMETERS: Function - Read or Write operation
134 * Address - Where in the space to read or write
135 * BitWidth - Field width in bits (8, 16, or 32)
136 * Value - Pointer to in or out value
137 * HandlerContext - Pointer to Handler's context
138 * RegionContext - Pointer to context specific to the
143 * DESCRIPTION: Handler for the System Memory address space (Op Region)
145 ******************************************************************************/
148 AcpiExSystemMemorySpaceHandler (
150 ACPI_PHYSICAL_ADDRESS Address
,
153 void *HandlerContext
,
156 ACPI_STATUS Status
= AE_OK
;
157 void *LogicalAddrPtr
= NULL
;
158 ACPI_MEM_SPACE_CONTEXT
*MemInfo
= RegionContext
;
161 ACPI_SIZE PageBoundaryMapLength
;
162 #ifdef ACPI_MISALIGNMENT_NOT_SUPPORTED
167 ACPI_FUNCTION_TRACE (ExSystemMemorySpaceHandler
);
170 /* Validate and translate the bit width */
191 ACPI_ERROR ((AE_INFO
, "Invalid SystemMemory width %u",
193 return_ACPI_STATUS (AE_AML_OPERAND_VALUE
);
196 #ifdef ACPI_MISALIGNMENT_NOT_SUPPORTED
198 * Hardware does not support non-aligned data transfers, we must verify
201 (void) AcpiUtShortDivide ((UINT64
) Address
, Length
, NULL
, &Remainder
);
204 return_ACPI_STATUS (AE_AML_ALIGNMENT
);
209 * Does the request fit into the cached memory mapping?
210 * Is 1) Address below the current mapping? OR
211 * 2) Address beyond the current mapping?
213 if ((Address
< MemInfo
->MappedPhysicalAddress
) ||
214 (((UINT64
) Address
+ Length
) >
216 MemInfo
->MappedPhysicalAddress
+ MemInfo
->MappedLength
)))
219 * The request cannot be resolved by the current memory mapping;
220 * Delete the existing mapping and create a new one.
222 if (MemInfo
->MappedLength
)
224 /* Valid mapping, delete it */
226 AcpiOsUnmapMemory (MemInfo
->MappedLogicalAddress
,
227 MemInfo
->MappedLength
);
231 * October 2009: Attempt to map from the requested address to the
232 * end of the region. However, we will never map more than one
233 * page, nor will we cross a page boundary.
235 MapLength
= (ACPI_SIZE
)
236 ((MemInfo
->Address
+ MemInfo
->Length
) - Address
);
239 * If mapping the entire remaining portion of the region will cross
240 * a page boundary, just map up to the page boundary, do not cross.
241 * On some systems, crossing a page boundary while mapping regions
242 * can cause warnings if the pages have different attributes
243 * due to resource management.
245 * This has the added benefit of constraining a single mapping to
246 * one page, which is similar to the original code that used a 4k
249 PageBoundaryMapLength
=
250 ACPI_ROUND_UP (Address
, ACPI_DEFAULT_PAGE_SIZE
) - Address
;
251 if (PageBoundaryMapLength
== 0)
253 PageBoundaryMapLength
= ACPI_DEFAULT_PAGE_SIZE
;
256 if (MapLength
> PageBoundaryMapLength
)
258 MapLength
= PageBoundaryMapLength
;
261 /* Create a new mapping starting at the address given */
263 MemInfo
->MappedLogicalAddress
= AcpiOsMapMemory (
264 (ACPI_PHYSICAL_ADDRESS
) Address
, MapLength
);
265 if (!MemInfo
->MappedLogicalAddress
)
267 ACPI_ERROR ((AE_INFO
,
268 "Could not map memory at 0x%8.8X%8.8X, size %u",
269 ACPI_FORMAT_NATIVE_UINT (Address
), (UINT32
) MapLength
));
270 MemInfo
->MappedLength
= 0;
271 return_ACPI_STATUS (AE_NO_MEMORY
);
274 /* Save the physical address and mapping size */
276 MemInfo
->MappedPhysicalAddress
= Address
;
277 MemInfo
->MappedLength
= MapLength
;
281 * Generate a logical pointer corresponding to the address we want to
284 LogicalAddrPtr
= MemInfo
->MappedLogicalAddress
+
285 ((UINT64
) Address
- (UINT64
) MemInfo
->MappedPhysicalAddress
);
287 ACPI_DEBUG_PRINT ((ACPI_DB_INFO
,
288 "System-Memory (width %u) R/W %u Address=%8.8X%8.8X\n",
289 BitWidth
, Function
, ACPI_FORMAT_NATIVE_UINT (Address
)));
292 * Perform the memory read or write
294 * Note: For machines that do not support non-aligned transfers, the target
295 * address was checked for alignment above. We do not attempt to break the
296 * transfer up into smaller (byte-size) chunks because the AML specifically
297 * asked for a transfer width that the hardware may require.
307 *Value
= (UINT64
) ACPI_GET8 (LogicalAddrPtr
);
311 *Value
= (UINT64
) ACPI_GET16 (LogicalAddrPtr
);
315 *Value
= (UINT64
) ACPI_GET32 (LogicalAddrPtr
);
319 *Value
= (UINT64
) ACPI_GET64 (LogicalAddrPtr
);
323 /* BitWidth was already validated */
333 ACPI_SET8 (LogicalAddrPtr
) = (UINT8
) *Value
;
337 ACPI_SET16 (LogicalAddrPtr
) = (UINT16
) *Value
;
341 ACPI_SET32 ( LogicalAddrPtr
) = (UINT32
) *Value
;
345 ACPI_SET64 (LogicalAddrPtr
) = (UINT64
) *Value
;
349 /* BitWidth was already validated */
355 Status
= AE_BAD_PARAMETER
;
359 return_ACPI_STATUS (Status
);
363 /*******************************************************************************
365 * FUNCTION: AcpiExSystemIoSpaceHandler
367 * PARAMETERS: Function - Read or Write operation
368 * Address - Where in the space to read or write
369 * BitWidth - Field width in bits (8, 16, or 32)
370 * Value - Pointer to in or out value
371 * HandlerContext - Pointer to Handler's context
372 * RegionContext - Pointer to context specific to the
377 * DESCRIPTION: Handler for the System IO address space (Op Region)
379 ******************************************************************************/
382 AcpiExSystemIoSpaceHandler (
384 ACPI_PHYSICAL_ADDRESS Address
,
387 void *HandlerContext
,
390 ACPI_STATUS Status
= AE_OK
;
394 ACPI_FUNCTION_TRACE (ExSystemIoSpaceHandler
);
397 ACPI_DEBUG_PRINT ((ACPI_DB_INFO
,
398 "System-IO (width %u) R/W %u Address=%8.8X%8.8X\n",
399 BitWidth
, Function
, ACPI_FORMAT_NATIVE_UINT (Address
)));
401 /* Decode the function parameter */
407 Status
= AcpiHwReadPort ((ACPI_IO_ADDRESS
) Address
,
414 Status
= AcpiHwWritePort ((ACPI_IO_ADDRESS
) Address
,
415 (UINT32
) *Value
, BitWidth
);
419 Status
= AE_BAD_PARAMETER
;
423 return_ACPI_STATUS (Status
);
427 /*******************************************************************************
429 * FUNCTION: AcpiExPciConfigSpaceHandler
431 * PARAMETERS: Function - Read or Write operation
432 * Address - Where in the space to read or write
433 * BitWidth - Field width in bits (8, 16, or 32)
434 * Value - Pointer to in or out value
435 * HandlerContext - Pointer to Handler's context
436 * RegionContext - Pointer to context specific to the
441 * DESCRIPTION: Handler for the PCI Config address space (Op Region)
443 ******************************************************************************/
446 AcpiExPciConfigSpaceHandler (
448 ACPI_PHYSICAL_ADDRESS Address
,
451 void *HandlerContext
,
454 ACPI_STATUS Status
= AE_OK
;
459 ACPI_FUNCTION_TRACE (ExPciConfigSpaceHandler
);
463 * The arguments to AcpiOs(Read|Write)PciConfiguration are:
465 * PciSegment is the PCI bus segment range 0-31
466 * PciBus is the PCI bus number range 0-255
467 * PciDevice is the PCI device number range 0-31
468 * PciFunction is the PCI device function number
469 * PciRegister is the Config space register range 0-255 bytes
471 * Value - input value for write, output address for read
474 PciId
= (ACPI_PCI_ID
*) RegionContext
;
475 PciRegister
= (UINT16
) (UINT32
) Address
;
477 ACPI_DEBUG_PRINT ((ACPI_DB_INFO
,
478 "Pci-Config %u (%u) Seg(%04x) Bus(%04x) Dev(%04x) Func(%04x) Reg(%04x)\n",
479 Function
, BitWidth
, PciId
->Segment
, PciId
->Bus
, PciId
->Device
,
480 PciId
->Function
, PciRegister
));
487 Status
= AcpiOsReadPciConfiguration (PciId
, PciRegister
,
493 Status
= AcpiOsWritePciConfiguration (PciId
, PciRegister
,
499 Status
= AE_BAD_PARAMETER
;
503 return_ACPI_STATUS (Status
);
507 /*******************************************************************************
509 * FUNCTION: AcpiExCmosSpaceHandler
511 * PARAMETERS: Function - Read or Write operation
512 * Address - Where in the space to read or write
513 * BitWidth - Field width in bits (8, 16, or 32)
514 * Value - Pointer to in or out value
515 * HandlerContext - Pointer to Handler's context
516 * RegionContext - Pointer to context specific to the
521 * DESCRIPTION: Handler for the CMOS address space (Op Region)
523 ******************************************************************************/
526 AcpiExCmosSpaceHandler (
528 ACPI_PHYSICAL_ADDRESS Address
,
531 void *HandlerContext
,
534 ACPI_STATUS Status
= AE_OK
;
537 ACPI_FUNCTION_TRACE (ExCmosSpaceHandler
);
540 return_ACPI_STATUS (Status
);
544 /*******************************************************************************
546 * FUNCTION: AcpiExPciBarSpaceHandler
548 * PARAMETERS: Function - Read or Write operation
549 * Address - Where in the space to read or write
550 * BitWidth - Field width in bits (8, 16, or 32)
551 * Value - Pointer to in or out value
552 * HandlerContext - Pointer to Handler's context
553 * RegionContext - Pointer to context specific to the
558 * DESCRIPTION: Handler for the PCI BarTarget address space (Op Region)
560 ******************************************************************************/
563 AcpiExPciBarSpaceHandler (
565 ACPI_PHYSICAL_ADDRESS Address
,
568 void *HandlerContext
,
571 ACPI_STATUS Status
= AE_OK
;
574 ACPI_FUNCTION_TRACE (ExPciBarSpaceHandler
);
577 return_ACPI_STATUS (Status
);
581 /*******************************************************************************
583 * FUNCTION: AcpiExDataTableSpaceHandler
585 * PARAMETERS: Function - Read or Write operation
586 * Address - Where in the space to read or write
587 * BitWidth - Field width in bits (8, 16, or 32)
588 * Value - Pointer to in or out value
589 * HandlerContext - Pointer to Handler's context
590 * RegionContext - Pointer to context specific to the
595 * DESCRIPTION: Handler for the Data Table address space (Op Region)
597 ******************************************************************************/
600 AcpiExDataTableSpaceHandler (
602 ACPI_PHYSICAL_ADDRESS Address
,
605 void *HandlerContext
,
608 ACPI_FUNCTION_TRACE (ExDataTableSpaceHandler
);
612 * Perform the memory read or write. The BitWidth was already
619 ACPI_MEMCPY (ACPI_CAST_PTR (char, Value
), ACPI_PHYSADDR_TO_PTR (Address
),
620 ACPI_DIV_8 (BitWidth
));
625 ACPI_MEMCPY (ACPI_PHYSADDR_TO_PTR (Address
), ACPI_CAST_PTR (char, Value
),
626 ACPI_DIV_8 (BitWidth
));
631 return_ACPI_STATUS (AE_BAD_PARAMETER
);
634 return_ACPI_STATUS (AE_OK
);