2 /******************************************************************************
4 * Module Name: exregion - ACPI default op_region (address space) handlers
6 *****************************************************************************/
9 * Copyright (C) 2000 - 2010, Intel Corp.
10 * All rights reserved.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions, and the following disclaimer,
17 * without modification.
18 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
19 * substantially similar to the "NO WARRANTY" disclaimer below
20 * ("Disclaimer") and any redistribution must be conditioned upon
21 * including a substantially similar Disclaimer requirement for further
22 * binary redistribution.
23 * 3. Neither the names of the above-listed copyright holders nor the names
24 * of any contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
27 * Alternatively, this software may be distributed under the terms of the
28 * GNU General Public License ("GPL") version 2 as published by the Free
29 * Software Foundation.
32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
36 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
41 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
42 * POSSIBILITY OF SUCH DAMAGES.
45 #include <acpi/acpi.h>
49 #define _COMPONENT ACPI_EXECUTER
50 ACPI_MODULE_NAME("exregion")
52 /*******************************************************************************
54 * FUNCTION: acpi_ex_system_memory_space_handler
56 * PARAMETERS: Function - Read or Write operation
57 * Address - Where in the space to read or write
58 * bit_width - Field width in bits (8, 16, or 32)
59 * Value - Pointer to in or out value
60 * handler_context - Pointer to Handler's context
61 * region_context - Pointer to context specific to the
66 * DESCRIPTION: Handler for the System Memory address space (Op Region)
68 ******************************************************************************/
70 acpi_ex_system_memory_space_handler(u32 function
,
71 acpi_physical_address address
,
74 void *handler_context
, void *region_context
)
76 acpi_status status
= AE_OK
;
77 void *logical_addr_ptr
= NULL
;
78 struct acpi_mem_space_context
*mem_info
= region_context
;
81 acpi_size page_boundary_map_length
;
82 #ifdef ACPI_MISALIGNMENT_NOT_SUPPORTED
86 ACPI_FUNCTION_TRACE(ex_system_memory_space_handler
);
88 /* Validate and translate the bit width */
108 ACPI_ERROR((AE_INFO
, "Invalid SystemMemory width %d",
110 return_ACPI_STATUS(AE_AML_OPERAND_VALUE
);
113 #ifdef ACPI_MISALIGNMENT_NOT_SUPPORTED
115 * Hardware does not support non-aligned data transfers, we must verify
118 (void)acpi_ut_short_divide((u64
) address
, length
, NULL
, &remainder
);
119 if (remainder
!= 0) {
120 return_ACPI_STATUS(AE_AML_ALIGNMENT
);
125 * Does the request fit into the cached memory mapping?
126 * Is 1) Address below the current mapping? OR
127 * 2) Address beyond the current mapping?
129 if ((address
< mem_info
->mapped_physical_address
) ||
130 (((u64
) address
+ length
) > ((u64
)
131 mem_info
->mapped_physical_address
+
132 mem_info
->mapped_length
))) {
134 * The request cannot be resolved by the current memory mapping;
135 * Delete the existing mapping and create a new one.
137 if (mem_info
->mapped_length
) {
139 /* Valid mapping, delete it */
141 acpi_os_unmap_memory(mem_info
->mapped_logical_address
,
142 mem_info
->mapped_length
);
146 * Attempt to map from the requested address to the end of the region.
147 * However, we will never map more than one page, nor will we cross
150 map_length
= (acpi_size
)
151 ((mem_info
->address
+ mem_info
->length
) - address
);
154 * If mapping the entire remaining portion of the region will cross
155 * a page boundary, just map up to the page boundary, do not cross.
156 * On some systems, crossing a page boundary while mapping regions
157 * can cause warnings if the pages have different attributes
158 * due to resource management
160 page_boundary_map_length
=
161 ACPI_ROUND_UP(address
, ACPI_DEFAULT_PAGE_SIZE
) - address
;
163 if (!page_boundary_map_length
) {
164 page_boundary_map_length
= ACPI_DEFAULT_PAGE_SIZE
;
167 if (map_length
> page_boundary_map_length
) {
168 map_length
= page_boundary_map_length
;
171 /* Create a new mapping starting at the address given */
173 mem_info
->mapped_logical_address
= acpi_os_map_memory((acpi_physical_address
) address
, map_length
);
174 if (!mem_info
->mapped_logical_address
) {
176 "Could not map memory at %8.8X%8.8X, size %X",
177 ACPI_FORMAT_NATIVE_UINT(address
),
179 mem_info
->mapped_length
= 0;
180 return_ACPI_STATUS(AE_NO_MEMORY
);
183 /* Save the physical address and mapping size */
185 mem_info
->mapped_physical_address
= address
;
186 mem_info
->mapped_length
= map_length
;
190 * Generate a logical pointer corresponding to the address we want to
193 logical_addr_ptr
= mem_info
->mapped_logical_address
+
194 ((u64
) address
- (u64
) mem_info
->mapped_physical_address
);
196 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
197 "System-Memory (width %d) R/W %d Address=%8.8X%8.8X\n",
199 ACPI_FORMAT_NATIVE_UINT(address
)));
202 * Perform the memory read or write
204 * Note: For machines that do not support non-aligned transfers, the target
205 * address was checked for alignment above. We do not attempt to break the
206 * transfer up into smaller (byte-size) chunks because the AML specifically
207 * asked for a transfer width that the hardware may require.
215 *value
= (u64
) ACPI_GET8(logical_addr_ptr
);
219 *value
= (u64
) ACPI_GET16(logical_addr_ptr
);
223 *value
= (u64
) ACPI_GET32(logical_addr_ptr
);
227 *value
= (u64
) ACPI_GET64(logical_addr_ptr
);
231 /* bit_width was already validated */
240 ACPI_SET8(logical_addr_ptr
) = (u8
) * value
;
244 ACPI_SET16(logical_addr_ptr
) = (u16
) * value
;
248 ACPI_SET32(logical_addr_ptr
) = (u32
) * value
;
252 ACPI_SET64(logical_addr_ptr
) = (u64
) * value
;
256 /* bit_width was already validated */
262 status
= AE_BAD_PARAMETER
;
266 return_ACPI_STATUS(status
);
269 /*******************************************************************************
271 * FUNCTION: acpi_ex_system_io_space_handler
273 * PARAMETERS: Function - Read or Write operation
274 * Address - Where in the space to read or write
275 * bit_width - Field width in bits (8, 16, or 32)
276 * Value - Pointer to in or out value
277 * handler_context - Pointer to Handler's context
278 * region_context - Pointer to context specific to the
283 * DESCRIPTION: Handler for the System IO address space (Op Region)
285 ******************************************************************************/
288 acpi_ex_system_io_space_handler(u32 function
,
289 acpi_physical_address address
,
292 void *handler_context
, void *region_context
)
294 acpi_status status
= AE_OK
;
297 ACPI_FUNCTION_TRACE(ex_system_io_space_handler
);
299 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
300 "System-IO (width %d) R/W %d Address=%8.8X%8.8X\n",
302 ACPI_FORMAT_NATIVE_UINT(address
)));
304 /* Decode the function parameter */
309 status
= acpi_hw_read_port((acpi_io_address
) address
,
310 &value32
, bit_width
);
316 status
= acpi_hw_write_port((acpi_io_address
) address
,
317 (u32
) * value
, bit_width
);
321 status
= AE_BAD_PARAMETER
;
325 return_ACPI_STATUS(status
);
328 /*******************************************************************************
330 * FUNCTION: acpi_ex_pci_config_space_handler
332 * PARAMETERS: Function - Read or Write operation
333 * Address - Where in the space to read or write
334 * bit_width - Field width in bits (8, 16, or 32)
335 * Value - Pointer to in or out value
336 * handler_context - Pointer to Handler's context
337 * region_context - Pointer to context specific to the
342 * DESCRIPTION: Handler for the PCI Config address space (Op Region)
344 ******************************************************************************/
347 acpi_ex_pci_config_space_handler(u32 function
,
348 acpi_physical_address address
,
351 void *handler_context
, void *region_context
)
353 acpi_status status
= AE_OK
;
354 struct acpi_pci_id
*pci_id
;
358 ACPI_FUNCTION_TRACE(ex_pci_config_space_handler
);
361 * The arguments to acpi_os(Read|Write)pci_configuration are:
363 * pci_segment is the PCI bus segment range 0-31
364 * pci_bus is the PCI bus number range 0-255
365 * pci_device is the PCI device number range 0-31
366 * pci_function is the PCI device function number
367 * pci_register is the Config space register range 0-255 bytes
369 * Value - input value for write, output address for read
372 pci_id
= (struct acpi_pci_id
*)region_context
;
373 pci_register
= (u16
) (u32
) address
;
375 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
376 "Pci-Config %d (%d) Seg(%04x) Bus(%04x) Dev(%04x) Func(%04x) Reg(%04x)\n",
377 function
, bit_width
, pci_id
->segment
, pci_id
->bus
,
378 pci_id
->device
, pci_id
->function
, pci_register
));
383 status
= acpi_os_read_pci_configuration(pci_id
, pci_register
,
384 &value32
, bit_width
);
390 status
= acpi_os_write_pci_configuration(pci_id
, pci_register
,
396 status
= AE_BAD_PARAMETER
;
400 return_ACPI_STATUS(status
);
403 /*******************************************************************************
405 * FUNCTION: acpi_ex_cmos_space_handler
407 * PARAMETERS: Function - Read or Write operation
408 * Address - Where in the space to read or write
409 * bit_width - Field width in bits (8, 16, or 32)
410 * Value - Pointer to in or out value
411 * handler_context - Pointer to Handler's context
412 * region_context - Pointer to context specific to the
417 * DESCRIPTION: Handler for the CMOS address space (Op Region)
419 ******************************************************************************/
422 acpi_ex_cmos_space_handler(u32 function
,
423 acpi_physical_address address
,
426 void *handler_context
, void *region_context
)
428 acpi_status status
= AE_OK
;
430 ACPI_FUNCTION_TRACE(ex_cmos_space_handler
);
432 return_ACPI_STATUS(status
);
435 /*******************************************************************************
437 * FUNCTION: acpi_ex_pci_bar_space_handler
439 * PARAMETERS: Function - Read or Write operation
440 * Address - Where in the space to read or write
441 * bit_width - Field width in bits (8, 16, or 32)
442 * Value - Pointer to in or out value
443 * handler_context - Pointer to Handler's context
444 * region_context - Pointer to context specific to the
449 * DESCRIPTION: Handler for the PCI bar_target address space (Op Region)
451 ******************************************************************************/
454 acpi_ex_pci_bar_space_handler(u32 function
,
455 acpi_physical_address address
,
458 void *handler_context
, void *region_context
)
460 acpi_status status
= AE_OK
;
462 ACPI_FUNCTION_TRACE(ex_pci_bar_space_handler
);
464 return_ACPI_STATUS(status
);
467 /*******************************************************************************
469 * FUNCTION: acpi_ex_data_table_space_handler
471 * PARAMETERS: Function - Read or Write operation
472 * Address - Where in the space to read or write
473 * bit_width - Field width in bits (8, 16, or 32)
474 * Value - Pointer to in or out value
475 * handler_context - Pointer to Handler's context
476 * region_context - Pointer to context specific to the
481 * DESCRIPTION: Handler for the Data Table address space (Op Region)
483 ******************************************************************************/
486 acpi_ex_data_table_space_handler(u32 function
,
487 acpi_physical_address address
,
490 void *handler_context
, void *region_context
)
492 ACPI_FUNCTION_TRACE(ex_data_table_space_handler
);
494 /* Perform the memory read or write */
499 ACPI_MEMCPY(ACPI_CAST_PTR(char, value
),
500 ACPI_PHYSADDR_TO_PTR(address
),
501 ACPI_DIV_8(bit_width
));
507 return_ACPI_STATUS(AE_SUPPORT
);
510 return_ACPI_STATUS(AE_OK
);