blob: 182abaf045e165588606bd4a52de7c98413717c1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
3 * Module Name: exregion - ACPI default op_region (address space) handlers
4 *
5 *****************************************************************************/
6
7/*
Bob Moore25f044e2013-01-25 05:38:56 +00008 * Copyright (C) 2000 - 2013, Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <acpi/acpi.h>
Len Browne2f7a772009-01-09 00:30:03 -050045#include "accommon.h"
46#include "acinterp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#define _COMPONENT ACPI_EXECUTER
Len Brown4be44fc2005-08-05 00:44:28 -040049ACPI_MODULE_NAME("exregion")
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/*******************************************************************************
52 *
53 * FUNCTION: acpi_ex_system_memory_space_handler
54 *
Bob Mooreba494be2012-07-12 09:40:10 +080055 * PARAMETERS: function - Read or Write operation
56 * address - Where in the space to read or write
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * bit_width - Field width in bits (8, 16, or 32)
Bob Mooreba494be2012-07-12 09:40:10 +080058 * value - Pointer to in or out value
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * handler_context - Pointer to Handler's context
60 * region_context - Pointer to context specific to the
61 * accessed region
62 *
63 * RETURN: Status
64 *
65 * DESCRIPTION: Handler for the System Memory address space (Op Region)
66 *
67 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -070068acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -040069acpi_ex_system_memory_space_handler(u32 function,
70 acpi_physical_address address,
71 u32 bit_width,
Bob Moore5df7e6c2010-01-21 10:06:32 +080072 u64 *value,
Len Brown4be44fc2005-08-05 00:44:28 -040073 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Len Brown4be44fc2005-08-05 00:44:28 -040075 acpi_status status = AE_OK;
76 void *logical_addr_ptr = NULL;
77 struct acpi_mem_space_context *mem_info = region_context;
78 u32 length;
Bob Moored410ee52009-10-22 09:11:11 +080079 acpi_size map_length;
80 acpi_size page_boundary_map_length;
Bob Moore08978312005-10-21 00:00:00 -040081#ifdef ACPI_MISALIGNMENT_NOT_SUPPORTED
Len Brown4be44fc2005-08-05 00:44:28 -040082 u32 remainder;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#endif
84
Bob Mooreb229cf92006-04-21 17:15:00 -040085 ACPI_FUNCTION_TRACE(ex_system_memory_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /* Validate and translate the bit width */
88
89 switch (bit_width) {
90 case 8:
91 length = 1;
92 break;
93
94 case 16:
95 length = 2;
96 break;
97
98 case 32:
99 length = 4;
100 break;
101
102 case 64:
103 length = 8;
104 break;
105
106 default:
Bob Mooref6a22b02010-03-05 17:56:40 +0800107 ACPI_ERROR((AE_INFO, "Invalid SystemMemory width %u",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500108 bit_width));
Len Brown4be44fc2005-08-05 00:44:28 -0400109 return_ACPI_STATUS(AE_AML_OPERAND_VALUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111
Bob Moore08978312005-10-21 00:00:00 -0400112#ifdef ACPI_MISALIGNMENT_NOT_SUPPORTED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 /*
114 * Hardware does not support non-aligned data transfers, we must verify
115 * the request.
116 */
Bob Moore5df7e6c2010-01-21 10:06:32 +0800117 (void)acpi_ut_short_divide((u64) address, length, NULL, &remainder);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 if (remainder != 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400119 return_ACPI_STATUS(AE_AML_ALIGNMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
121#endif
122
123 /*
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?
127 */
128 if ((address < mem_info->mapped_physical_address) ||
Bob Moore5df7e6c2010-01-21 10:06:32 +0800129 (((u64) address + length) > ((u64)
130 mem_info->mapped_physical_address +
131 mem_info->mapped_length))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 /*
133 * The request cannot be resolved by the current memory mapping;
134 * Delete the existing mapping and create a new one.
135 */
136 if (mem_info->mapped_length) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 /* Valid mapping, delete it */
139
Len Brown4be44fc2005-08-05 00:44:28 -0400140 acpi_os_unmap_memory(mem_info->mapped_logical_address,
141 mem_info->mapped_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
143
144 /*
Lv Zheng75c80442012-12-19 05:36:49 +0000145 * October 2009: Attempt to map from the requested address to the
146 * end of the region. However, we will never map more than one
147 * page, nor will we cross a page boundary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 */
Bob Moored410ee52009-10-22 09:11:11 +0800149 map_length = (acpi_size)
Len Brown4be44fc2005-08-05 00:44:28 -0400150 ((mem_info->address + mem_info->length) - address);
Robert Moore44f6c012005-04-18 22:49:35 -0400151
Bob Moored410ee52009-10-22 09:11:11 +0800152 /*
153 * If mapping the entire remaining portion of the region will cross
154 * a page boundary, just map up to the page boundary, do not cross.
155 * On some systems, crossing a page boundary while mapping regions
156 * can cause warnings if the pages have different attributes
Lv Zheng75c80442012-12-19 05:36:49 +0000157 * due to resource management.
158 *
159 * This has the added benefit of constraining a single mapping to
160 * one page, which is similar to the original code that used a 4k
161 * maximum window.
Bob Moored410ee52009-10-22 09:11:11 +0800162 */
163 page_boundary_map_length =
164 ACPI_ROUND_UP(address, ACPI_DEFAULT_PAGE_SIZE) - address;
Lv Zheng739dcbb2012-12-20 01:07:26 +0000165 if (page_boundary_map_length == 0) {
Bob Moored410ee52009-10-22 09:11:11 +0800166 page_boundary_map_length = ACPI_DEFAULT_PAGE_SIZE;
167 }
168
169 if (map_length > page_boundary_map_length) {
170 map_length = page_boundary_map_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
172
173 /* Create a new mapping starting at the address given */
174
Bob Moored410ee52009-10-22 09:11:11 +0800175 mem_info->mapped_logical_address = acpi_os_map_memory((acpi_physical_address) address, map_length);
Bob Mooref3d2e782007-02-02 19:48:18 +0300176 if (!mem_info->mapped_logical_address) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500177 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800178 "Could not map memory at 0x%8.8X%8.8X, size %u",
Bob Mooreb7f9f042008-04-10 19:06:40 +0400179 ACPI_FORMAT_NATIVE_UINT(address),
Bob Moored410ee52009-10-22 09:11:11 +0800180 (u32) map_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 mem_info->mapped_length = 0;
Bob Mooref3d2e782007-02-02 19:48:18 +0300182 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184
185 /* Save the physical address and mapping size */
186
187 mem_info->mapped_physical_address = address;
Bob Moored410ee52009-10-22 09:11:11 +0800188 mem_info->mapped_length = map_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
191 /*
192 * Generate a logical pointer corresponding to the address we want to
193 * access
194 */
195 logical_addr_ptr = mem_info->mapped_logical_address +
Bob Moore5df7e6c2010-01-21 10:06:32 +0800196 ((u64) address - (u64) mem_info->mapped_physical_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Len Brown4be44fc2005-08-05 00:44:28 -0400198 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Mooreb27d6592010-05-26 11:47:13 +0800199 "System-Memory (width %u) R/W %u Address=%8.8X%8.8X\n",
Bob Mooreb7f9f042008-04-10 19:06:40 +0400200 bit_width, function,
201 ACPI_FORMAT_NATIVE_UINT(address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Len Brown4be44fc2005-08-05 00:44:28 -0400203 /*
204 * Perform the memory read or write
205 *
206 * Note: For machines that do not support non-aligned transfers, the target
Bob Moore73a30902012-10-31 02:26:55 +0000207 * address was checked for alignment above. We do not attempt to break the
Len Brown4be44fc2005-08-05 00:44:28 -0400208 * transfer up into smaller (byte-size) chunks because the AML specifically
209 * asked for a transfer width that the hardware may require.
210 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 switch (function) {
212 case ACPI_READ:
213
214 *value = 0;
215 switch (bit_width) {
216 case 8:
Bob Moore5df7e6c2010-01-21 10:06:32 +0800217 *value = (u64) ACPI_GET8(logical_addr_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 break;
219
220 case 16:
Bob Moore5df7e6c2010-01-21 10:06:32 +0800221 *value = (u64) ACPI_GET16(logical_addr_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 break;
223
224 case 32:
Bob Moore5df7e6c2010-01-21 10:06:32 +0800225 *value = (u64) ACPI_GET32(logical_addr_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 break;
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 case 64:
Bob Moore5df7e6c2010-01-21 10:06:32 +0800229 *value = (u64) ACPI_GET64(logical_addr_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 break;
Bob Moore59fa8502007-02-02 19:48:23 +0300231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 default:
233 /* bit_width was already validated */
234 break;
235 }
236 break;
237
238 case ACPI_WRITE:
239
240 switch (bit_width) {
241 case 8:
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000242 ACPI_SET8(logical_addr_ptr, *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 break;
244
245 case 16:
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000246 ACPI_SET16(logical_addr_ptr, *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 break;
248
249 case 32:
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000250 ACPI_SET32(logical_addr_ptr, *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 break;
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 case 64:
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000254 ACPI_SET64(logical_addr_ptr, *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 default:
258 /* bit_width was already validated */
259 break;
260 }
261 break;
262
263 default:
264 status = AE_BAD_PARAMETER;
265 break;
266 }
267
Len Brown4be44fc2005-08-05 00:44:28 -0400268 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/*******************************************************************************
272 *
273 * FUNCTION: acpi_ex_system_io_space_handler
274 *
Bob Mooreba494be2012-07-12 09:40:10 +0800275 * PARAMETERS: function - Read or Write operation
276 * address - Where in the space to read or write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 * bit_width - Field width in bits (8, 16, or 32)
Bob Mooreba494be2012-07-12 09:40:10 +0800278 * value - Pointer to in or out value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 * handler_context - Pointer to Handler's context
280 * region_context - Pointer to context specific to the
281 * accessed region
282 *
283 * RETURN: Status
284 *
285 * DESCRIPTION: Handler for the System IO address space (Op Region)
286 *
287 ******************************************************************************/
288
289acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400290acpi_ex_system_io_space_handler(u32 function,
291 acpi_physical_address address,
292 u32 bit_width,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800293 u64 *value,
Len Brown4be44fc2005-08-05 00:44:28 -0400294 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
Len Brown4be44fc2005-08-05 00:44:28 -0400296 acpi_status status = AE_OK;
297 u32 value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Bob Mooreb229cf92006-04-21 17:15:00 -0400299 ACPI_FUNCTION_TRACE(ex_system_io_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Len Brown4be44fc2005-08-05 00:44:28 -0400301 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Mooreb27d6592010-05-26 11:47:13 +0800302 "System-IO (width %u) R/W %u Address=%8.8X%8.8X\n",
Bob Mooreb7f9f042008-04-10 19:06:40 +0400303 bit_width, function,
304 ACPI_FORMAT_NATIVE_UINT(address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 /* Decode the function parameter */
307
308 switch (function) {
309 case ACPI_READ:
310
Bob Moore7f071902009-03-19 09:37:47 +0800311 status = acpi_hw_read_port((acpi_io_address) address,
Len Brown4be44fc2005-08-05 00:44:28 -0400312 &value32, bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 *value = value32;
314 break;
315
316 case ACPI_WRITE:
317
Bob Moore7f071902009-03-19 09:37:47 +0800318 status = acpi_hw_write_port((acpi_io_address) address,
Len Brown4be44fc2005-08-05 00:44:28 -0400319 (u32) * value, bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 break;
321
322 default:
323 status = AE_BAD_PARAMETER;
324 break;
325 }
326
Len Brown4be44fc2005-08-05 00:44:28 -0400327 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330/*******************************************************************************
331 *
332 * FUNCTION: acpi_ex_pci_config_space_handler
333 *
Bob Mooreba494be2012-07-12 09:40:10 +0800334 * PARAMETERS: function - Read or Write operation
335 * address - Where in the space to read or write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 * bit_width - Field width in bits (8, 16, or 32)
Bob Mooreba494be2012-07-12 09:40:10 +0800337 * value - Pointer to in or out value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 * handler_context - Pointer to Handler's context
339 * region_context - Pointer to context specific to the
340 * accessed region
341 *
342 * RETURN: Status
343 *
344 * DESCRIPTION: Handler for the PCI Config address space (Op Region)
345 *
346 ******************************************************************************/
347
348acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400349acpi_ex_pci_config_space_handler(u32 function,
350 acpi_physical_address address,
351 u32 bit_width,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800352 u64 *value,
Len Brown4be44fc2005-08-05 00:44:28 -0400353 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Len Brown4be44fc2005-08-05 00:44:28 -0400355 acpi_status status = AE_OK;
356 struct acpi_pci_id *pci_id;
357 u16 pci_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Bob Mooreb229cf92006-04-21 17:15:00 -0400359 ACPI_FUNCTION_TRACE(ex_pci_config_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 /*
362 * The arguments to acpi_os(Read|Write)pci_configuration are:
363 *
364 * pci_segment is the PCI bus segment range 0-31
365 * pci_bus is the PCI bus number range 0-255
366 * pci_device is the PCI device number range 0-31
367 * pci_function is the PCI device function number
368 * pci_register is the Config space register range 0-255 bytes
369 *
Bob Mooreba494be2012-07-12 09:40:10 +0800370 * value - input value for write, output address for read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 *
372 */
Len Brown4be44fc2005-08-05 00:44:28 -0400373 pci_id = (struct acpi_pci_id *)region_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 pci_register = (u16) (u32) address;
375
Len Brown4be44fc2005-08-05 00:44:28 -0400376 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Mooreb27d6592010-05-26 11:47:13 +0800377 "Pci-Config %u (%u) Seg(%04x) Bus(%04x) Dev(%04x) Func(%04x) Reg(%04x)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400378 function, bit_width, pci_id->segment, pci_id->bus,
379 pci_id->device, pci_id->function, pci_register));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 switch (function) {
382 case ACPI_READ:
383
Len Brown4be44fc2005-08-05 00:44:28 -0400384 status = acpi_os_read_pci_configuration(pci_id, pci_register,
Bob Moorec5f02312010-08-06 08:57:53 +0800385 value, bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 break;
387
388 case ACPI_WRITE:
389
Len Brown4be44fc2005-08-05 00:44:28 -0400390 status = acpi_os_write_pci_configuration(pci_id, pci_register,
391 *value, bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 break;
393
394 default:
395
396 status = AE_BAD_PARAMETER;
397 break;
398 }
399
Len Brown4be44fc2005-08-05 00:44:28 -0400400 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403/*******************************************************************************
404 *
405 * FUNCTION: acpi_ex_cmos_space_handler
406 *
Bob Mooreba494be2012-07-12 09:40:10 +0800407 * PARAMETERS: function - Read or Write operation
408 * address - Where in the space to read or write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 * bit_width - Field width in bits (8, 16, or 32)
Bob Mooreba494be2012-07-12 09:40:10 +0800410 * value - Pointer to in or out value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 * handler_context - Pointer to Handler's context
412 * region_context - Pointer to context specific to the
413 * accessed region
414 *
415 * RETURN: Status
416 *
417 * DESCRIPTION: Handler for the CMOS address space (Op Region)
418 *
419 ******************************************************************************/
420
421acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400422acpi_ex_cmos_space_handler(u32 function,
423 acpi_physical_address address,
424 u32 bit_width,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800425 u64 *value,
Len Brown4be44fc2005-08-05 00:44:28 -0400426 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Len Brown4be44fc2005-08-05 00:44:28 -0400428 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Bob Mooreb229cf92006-04-21 17:15:00 -0400430 ACPI_FUNCTION_TRACE(ex_cmos_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Len Brown4be44fc2005-08-05 00:44:28 -0400432 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435/*******************************************************************************
436 *
437 * FUNCTION: acpi_ex_pci_bar_space_handler
438 *
Bob Mooreba494be2012-07-12 09:40:10 +0800439 * PARAMETERS: function - Read or Write operation
440 * address - Where in the space to read or write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 * bit_width - Field width in bits (8, 16, or 32)
Bob Mooreba494be2012-07-12 09:40:10 +0800442 * value - Pointer to in or out value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 * handler_context - Pointer to Handler's context
444 * region_context - Pointer to context specific to the
445 * accessed region
446 *
447 * RETURN: Status
448 *
449 * DESCRIPTION: Handler for the PCI bar_target address space (Op Region)
450 *
451 ******************************************************************************/
452
453acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400454acpi_ex_pci_bar_space_handler(u32 function,
455 acpi_physical_address address,
456 u32 bit_width,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800457 u64 *value,
Len Brown4be44fc2005-08-05 00:44:28 -0400458 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Len Brown4be44fc2005-08-05 00:44:28 -0400460 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Bob Mooreb229cf92006-04-21 17:15:00 -0400462 ACPI_FUNCTION_TRACE(ex_pci_bar_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Len Brown4be44fc2005-08-05 00:44:28 -0400464 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467/*******************************************************************************
468 *
469 * FUNCTION: acpi_ex_data_table_space_handler
470 *
Bob Mooreba494be2012-07-12 09:40:10 +0800471 * PARAMETERS: function - Read or Write operation
472 * address - Where in the space to read or write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 * bit_width - Field width in bits (8, 16, or 32)
Bob Mooreba494be2012-07-12 09:40:10 +0800474 * value - Pointer to in or out value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * handler_context - Pointer to Handler's context
476 * region_context - Pointer to context specific to the
477 * accessed region
478 *
479 * RETURN: Status
480 *
481 * DESCRIPTION: Handler for the Data Table address space (Op Region)
482 *
483 ******************************************************************************/
484
485acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400486acpi_ex_data_table_space_handler(u32 function,
487 acpi_physical_address address,
488 u32 bit_width,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800489 u64 *value,
Len Brown4be44fc2005-08-05 00:44:28 -0400490 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Bob Mooreb229cf92006-04-21 17:15:00 -0400492 ACPI_FUNCTION_TRACE(ex_data_table_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Bob Moorec1637e92010-04-01 11:09:00 +0800494 /*
495 * Perform the memory read or write. The bit_width was already
496 * validated.
497 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 switch (function) {
499 case ACPI_READ:
500
Bob Moore41195322006-05-26 16:36:00 -0400501 ACPI_MEMCPY(ACPI_CAST_PTR(char, value),
502 ACPI_PHYSADDR_TO_PTR(address),
503 ACPI_DIV_8(bit_width));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 break;
505
506 case ACPI_WRITE:
Bob Moorec1637e92010-04-01 11:09:00 +0800507
508 ACPI_MEMCPY(ACPI_PHYSADDR_TO_PTR(address),
509 ACPI_CAST_PTR(char, value), ACPI_DIV_8(bit_width));
510 break;
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 default:
513
Bob Moorec1637e92010-04-01 11:09:00 +0800514 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516
Bob Moore41195322006-05-26 16:36:00 -0400517 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}