2 /******************************************************************************
4 * Module Name: exregion - ACPI default op_region (address space) handlers
6 *****************************************************************************/
9 * Copyright (C) 2000 - 2006, R. Byron Moore
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>
46 #include <acpi/acinterp.h>
48 #define _COMPONENT ACPI_EXECUTER
49 ACPI_MODULE_NAME("exregion")
51 /*******************************************************************************
53 * FUNCTION: acpi_ex_system_memory_space_handler
55 * PARAMETERS: Function - Read or Write operation
56 * Address - Where in the space to read or write
57 * bit_width - Field width in bits (8, 16, or 32)
58 * Value - Pointer to in or out value
59 * handler_context - Pointer to Handler's context
60 * region_context - Pointer to context specific to the
65 * DESCRIPTION: Handler for the System Memory address space (Op Region)
67 ******************************************************************************/
69 acpi_ex_system_memory_space_handler(u32 function
,
70 acpi_physical_address address
,
73 void *handler_context
, void *region_context
)
75 acpi_status status
= AE_OK
;
76 void *logical_addr_ptr
= NULL
;
77 struct acpi_mem_space_context
*mem_info
= region_context
;
79 acpi_size window_size
;
80 #ifdef ACPI_MISALIGNMENT_NOT_SUPPORTED
84 ACPI_FUNCTION_TRACE("ex_system_memory_space_handler");
86 /* Validate and translate the bit width */
106 ACPI_ERROR((AE_INFO
, "Invalid system_memory width %d",
108 return_ACPI_STATUS(AE_AML_OPERAND_VALUE
);
111 #ifdef ACPI_MISALIGNMENT_NOT_SUPPORTED
113 * Hardware does not support non-aligned data transfers, we must verify
116 (void)acpi_ut_short_divide((acpi_integer
) address
, length
, NULL
,
118 if (remainder
!= 0) {
119 return_ACPI_STATUS(AE_AML_ALIGNMENT
);
124 * Does the request fit into the cached memory mapping?
125 * Is 1) Address below the current mapping? OR
126 * 2) Address beyond the current mapping?
128 if ((address
< mem_info
->mapped_physical_address
) ||
129 (((acpi_integer
) address
+ length
) > ((acpi_integer
)
131 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
) {
138 /* Valid mapping, delete it */
140 acpi_os_unmap_memory(mem_info
->mapped_logical_address
,
141 mem_info
->mapped_length
);
145 * Don't attempt to map memory beyond the end of the region, and
146 * constrain the maximum mapping size to something reasonable.
148 window_size
= (acpi_size
)
149 ((mem_info
->address
+ mem_info
->length
) - address
);
151 if (window_size
> ACPI_SYSMEM_REGION_WINDOW_SIZE
) {
152 window_size
= ACPI_SYSMEM_REGION_WINDOW_SIZE
;
155 /* Create a new mapping starting at the address given */
157 status
= acpi_os_map_memory(address
, window_size
,
159 mapped_logical_address
);
160 if (ACPI_FAILURE(status
)) {
162 "Could not map memory at %8.8X%8.8X, size %X",
163 ACPI_FORMAT_UINT64(address
),
165 mem_info
->mapped_length
= 0;
166 return_ACPI_STATUS(status
);
169 /* Save the physical address and mapping size */
171 mem_info
->mapped_physical_address
= address
;
172 mem_info
->mapped_length
= window_size
;
176 * Generate a logical pointer corresponding to the address we want to
179 logical_addr_ptr
= mem_info
->mapped_logical_address
+
180 ((acpi_integer
) address
-
181 (acpi_integer
) mem_info
->mapped_physical_address
);
183 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
184 "system_memory %d (%d width) Address=%8.8X%8.8X\n",
185 function
, bit_width
, ACPI_FORMAT_UINT64(address
)));
188 * Perform the memory read or write
190 * Note: For machines that do not support non-aligned transfers, the target
191 * address was checked for alignment above. We do not attempt to break the
192 * transfer up into smaller (byte-size) chunks because the AML specifically
193 * asked for a transfer width that the hardware may require.
201 *value
= (acpi_integer
) ACPI_GET8(logical_addr_ptr
);
205 *value
= (acpi_integer
) ACPI_GET16(logical_addr_ptr
);
209 *value
= (acpi_integer
) ACPI_GET32(logical_addr_ptr
);
212 #if ACPI_MACHINE_WIDTH != 16
214 *value
= (acpi_integer
) ACPI_GET64(logical_addr_ptr
);
218 /* bit_width was already validated */
227 ACPI_SET8(logical_addr_ptr
) = (u8
) * value
;
231 ACPI_SET16(logical_addr_ptr
) = (u16
) * value
;
235 ACPI_SET32(logical_addr_ptr
) = (u32
) * value
;
238 #if ACPI_MACHINE_WIDTH != 16
240 ACPI_SET64(logical_addr_ptr
) = (u64
) * value
;
245 /* bit_width was already validated */
251 status
= AE_BAD_PARAMETER
;
255 return_ACPI_STATUS(status
);
258 /*******************************************************************************
260 * FUNCTION: acpi_ex_system_io_space_handler
262 * PARAMETERS: Function - Read or Write operation
263 * Address - Where in the space to read or write
264 * bit_width - Field width in bits (8, 16, or 32)
265 * Value - Pointer to in or out value
266 * handler_context - Pointer to Handler's context
267 * region_context - Pointer to context specific to the
272 * DESCRIPTION: Handler for the System IO address space (Op Region)
274 ******************************************************************************/
277 acpi_ex_system_io_space_handler(u32 function
,
278 acpi_physical_address address
,
280 acpi_integer
* value
,
281 void *handler_context
, void *region_context
)
283 acpi_status status
= AE_OK
;
286 ACPI_FUNCTION_TRACE("ex_system_io_space_handler");
288 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
289 "system_iO %d (%d width) Address=%8.8X%8.8X\n",
290 function
, bit_width
, ACPI_FORMAT_UINT64(address
)));
292 /* Decode the function parameter */
297 status
= acpi_os_read_port((acpi_io_address
) address
,
298 &value32
, bit_width
);
304 status
= acpi_os_write_port((acpi_io_address
) address
,
305 (u32
) * value
, bit_width
);
309 status
= AE_BAD_PARAMETER
;
313 return_ACPI_STATUS(status
);
316 /*******************************************************************************
318 * FUNCTION: acpi_ex_pci_config_space_handler
320 * PARAMETERS: Function - Read or Write operation
321 * Address - Where in the space to read or write
322 * bit_width - Field width in bits (8, 16, or 32)
323 * Value - Pointer to in or out value
324 * handler_context - Pointer to Handler's context
325 * region_context - Pointer to context specific to the
330 * DESCRIPTION: Handler for the PCI Config address space (Op Region)
332 ******************************************************************************/
335 acpi_ex_pci_config_space_handler(u32 function
,
336 acpi_physical_address address
,
338 acpi_integer
* value
,
339 void *handler_context
, void *region_context
)
341 acpi_status status
= AE_OK
;
342 struct acpi_pci_id
*pci_id
;
345 ACPI_FUNCTION_TRACE("ex_pci_config_space_handler");
348 * The arguments to acpi_os(Read|Write)pci_configuration are:
350 * pci_segment is the PCI bus segment range 0-31
351 * pci_bus is the PCI bus number range 0-255
352 * pci_device is the PCI device number range 0-31
353 * pci_function is the PCI device function number
354 * pci_register is the Config space register range 0-255 bytes
356 * Value - input value for write, output address for read
359 pci_id
= (struct acpi_pci_id
*)region_context
;
360 pci_register
= (u16
) (u32
) address
;
362 ACPI_DEBUG_PRINT((ACPI_DB_INFO
,
363 "pci_config %d (%d) Seg(%04x) Bus(%04x) Dev(%04x) Func(%04x) Reg(%04x)\n",
364 function
, bit_width
, pci_id
->segment
, pci_id
->bus
,
365 pci_id
->device
, pci_id
->function
, pci_register
));
371 status
= acpi_os_read_pci_configuration(pci_id
, pci_register
,
377 status
= acpi_os_write_pci_configuration(pci_id
, pci_register
,
383 status
= AE_BAD_PARAMETER
;
387 return_ACPI_STATUS(status
);
390 /*******************************************************************************
392 * FUNCTION: acpi_ex_cmos_space_handler
394 * PARAMETERS: Function - Read or Write operation
395 * Address - Where in the space to read or write
396 * bit_width - Field width in bits (8, 16, or 32)
397 * Value - Pointer to in or out value
398 * handler_context - Pointer to Handler's context
399 * region_context - Pointer to context specific to the
404 * DESCRIPTION: Handler for the CMOS address space (Op Region)
406 ******************************************************************************/
409 acpi_ex_cmos_space_handler(u32 function
,
410 acpi_physical_address address
,
412 acpi_integer
* value
,
413 void *handler_context
, void *region_context
)
415 acpi_status status
= AE_OK
;
417 ACPI_FUNCTION_TRACE("ex_cmos_space_handler");
419 return_ACPI_STATUS(status
);
422 /*******************************************************************************
424 * FUNCTION: acpi_ex_pci_bar_space_handler
426 * PARAMETERS: Function - Read or Write operation
427 * Address - Where in the space to read or write
428 * bit_width - Field width in bits (8, 16, or 32)
429 * Value - Pointer to in or out value
430 * handler_context - Pointer to Handler's context
431 * region_context - Pointer to context specific to the
436 * DESCRIPTION: Handler for the PCI bar_target address space (Op Region)
438 ******************************************************************************/
441 acpi_ex_pci_bar_space_handler(u32 function
,
442 acpi_physical_address address
,
444 acpi_integer
* value
,
445 void *handler_context
, void *region_context
)
447 acpi_status status
= AE_OK
;
449 ACPI_FUNCTION_TRACE("ex_pci_bar_space_handler");
451 return_ACPI_STATUS(status
);
454 /*******************************************************************************
456 * FUNCTION: acpi_ex_data_table_space_handler
458 * PARAMETERS: Function - Read or Write operation
459 * Address - Where in the space to read or write
460 * bit_width - Field width in bits (8, 16, or 32)
461 * Value - Pointer to in or out value
462 * handler_context - Pointer to Handler's context
463 * region_context - Pointer to context specific to the
468 * DESCRIPTION: Handler for the Data Table address space (Op Region)
470 ******************************************************************************/
473 acpi_ex_data_table_space_handler(u32 function
,
474 acpi_physical_address address
,
476 acpi_integer
* value
,
477 void *handler_context
, void *region_context
)
479 acpi_status status
= AE_OK
;
480 u32 byte_width
= ACPI_DIV_8(bit_width
);
482 char *logical_addr_ptr
;
484 ACPI_FUNCTION_TRACE("ex_data_table_space_handler");
486 logical_addr_ptr
= ACPI_PHYSADDR_TO_PTR(address
);
488 /* Perform the memory read or write */
493 for (i
= 0; i
< byte_width
; i
++) {
494 ((char *)value
)[i
] = logical_addr_ptr
[i
];
501 return_ACPI_STATUS(AE_SUPPORT
);
504 return_ACPI_STATUS(status
);