blob: 076074daf2b607a97c49facb9c8ac8805ec35a07 [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 Moorec8100dc2016-01-15 08:17:03 +08008 * Copyright (C) 2000 - 2016, 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:
Chao Guan1d1ea1b2013-06-08 00:58:14 +000091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 length = 1;
93 break;
94
95 case 16:
Chao Guan1d1ea1b2013-06-08 00:58:14 +000096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 length = 2;
98 break;
99
100 case 32:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 length = 4;
103 break;
104
105 case 64:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 length = 8;
108 break;
109
110 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000111
Bob Mooref6a22b02010-03-05 17:56:40 +0800112 ACPI_ERROR((AE_INFO, "Invalid SystemMemory width %u",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500113 bit_width));
Len Brown4be44fc2005-08-05 00:44:28 -0400114 return_ACPI_STATUS(AE_AML_OPERAND_VALUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
116
Bob Moore08978312005-10-21 00:00:00 -0400117#ifdef ACPI_MISALIGNMENT_NOT_SUPPORTED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 /*
119 * Hardware does not support non-aligned data transfers, we must verify
120 * the request.
121 */
Bob Moore5df7e6c2010-01-21 10:06:32 +0800122 (void)acpi_ut_short_divide((u64) address, length, NULL, &remainder);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (remainder != 0) {
Len Brown4be44fc2005-08-05 00:44:28 -0400124 return_ACPI_STATUS(AE_AML_ALIGNMENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
126#endif
127
128 /*
129 * Does the request fit into the cached memory mapping?
130 * Is 1) Address below the current mapping? OR
131 * 2) Address beyond the current mapping?
132 */
133 if ((address < mem_info->mapped_physical_address) ||
Bob Moore5df7e6c2010-01-21 10:06:32 +0800134 (((u64) address + length) > ((u64)
135 mem_info->mapped_physical_address +
136 mem_info->mapped_length))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 /*
138 * The request cannot be resolved by the current memory mapping;
139 * Delete the existing mapping and create a new one.
140 */
141 if (mem_info->mapped_length) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 /* Valid mapping, delete it */
144
Len Brown4be44fc2005-08-05 00:44:28 -0400145 acpi_os_unmap_memory(mem_info->mapped_logical_address,
146 mem_info->mapped_length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
148
149 /*
Lv Zheng75c80442012-12-19 05:36:49 +0000150 * October 2009: Attempt to map from the requested address to the
151 * end of the region. However, we will never map more than one
152 * page, nor will we cross a page boundary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 */
Bob Moored410ee52009-10-22 09:11:11 +0800154 map_length = (acpi_size)
Len Brown4be44fc2005-08-05 00:44:28 -0400155 ((mem_info->address + mem_info->length) - address);
Robert Moore44f6c012005-04-18 22:49:35 -0400156
Bob Moored410ee52009-10-22 09:11:11 +0800157 /*
158 * If mapping the entire remaining portion of the region will cross
159 * a page boundary, just map up to the page boundary, do not cross.
160 * On some systems, crossing a page boundary while mapping regions
161 * can cause warnings if the pages have different attributes
Lv Zheng75c80442012-12-19 05:36:49 +0000162 * due to resource management.
163 *
164 * This has the added benefit of constraining a single mapping to
165 * one page, which is similar to the original code that used a 4k
166 * maximum window.
Bob Moored410ee52009-10-22 09:11:11 +0800167 */
Bob Moore938ed102015-04-13 11:49:54 +0800168 page_boundary_map_length = (acpi_size)
169 (ACPI_ROUND_UP(address, ACPI_DEFAULT_PAGE_SIZE) - address);
Lv Zheng739dcbb2012-12-20 01:07:26 +0000170 if (page_boundary_map_length == 0) {
Bob Moored410ee52009-10-22 09:11:11 +0800171 page_boundary_map_length = ACPI_DEFAULT_PAGE_SIZE;
172 }
173
174 if (map_length > page_boundary_map_length) {
175 map_length = page_boundary_map_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177
178 /* Create a new mapping starting at the address given */
179
Lv Zhengea284922015-04-13 11:48:31 +0800180 mem_info->mapped_logical_address =
181 acpi_os_map_memory(address, map_length);
Bob Mooref3d2e782007-02-02 19:48:18 +0300182 if (!mem_info->mapped_logical_address) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500183 ACPI_ERROR((AE_INFO,
Bob Mooref6a22b02010-03-05 17:56:40 +0800184 "Could not map memory at 0x%8.8X%8.8X, size %u",
Lv Zheng1d0a0b22015-04-13 11:48:52 +0800185 ACPI_FORMAT_UINT64(address),
Lv Zheng18ae9022015-04-13 11:48:12 +0800186 (u32)map_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 mem_info->mapped_length = 0;
Bob Mooref3d2e782007-02-02 19:48:18 +0300188 return_ACPI_STATUS(AE_NO_MEMORY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
191 /* Save the physical address and mapping size */
192
193 mem_info->mapped_physical_address = address;
Bob Moored410ee52009-10-22 09:11:11 +0800194 mem_info->mapped_length = map_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
196
197 /*
198 * Generate a logical pointer corresponding to the address we want to
199 * access
200 */
201 logical_addr_ptr = mem_info->mapped_logical_address +
Bob Moore5df7e6c2010-01-21 10:06:32 +0800202 ((u64) address - (u64) mem_info->mapped_physical_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Len Brown4be44fc2005-08-05 00:44:28 -0400204 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Mooreb27d6592010-05-26 11:47:13 +0800205 "System-Memory (width %u) R/W %u Address=%8.8X%8.8X\n",
Lv Zheng1d0a0b22015-04-13 11:48:52 +0800206 bit_width, function, ACPI_FORMAT_UINT64(address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Len Brown4be44fc2005-08-05 00:44:28 -0400208 /*
209 * Perform the memory read or write
210 *
211 * Note: For machines that do not support non-aligned transfers, the target
Bob Moore73a30902012-10-31 02:26:55 +0000212 * address was checked for alignment above. We do not attempt to break the
Len Brown4be44fc2005-08-05 00:44:28 -0400213 * transfer up into smaller (byte-size) chunks because the AML specifically
214 * asked for a transfer width that the hardware may require.
215 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 switch (function) {
217 case ACPI_READ:
218
219 *value = 0;
220 switch (bit_width) {
221 case 8:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000222
223 *value = (u64)ACPI_GET8(logical_addr_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 break;
225
226 case 16:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000227
228 *value = (u64)ACPI_GET16(logical_addr_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 break;
230
231 case 32:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000232
233 *value = (u64)ACPI_GET32(logical_addr_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 break;
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 case 64:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000237
238 *value = (u64)ACPI_GET64(logical_addr_ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 break;
Bob Moore59fa8502007-02-02 19:48:23 +0300240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 /* bit_width was already validated */
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 break;
246 }
247 break;
248
249 case ACPI_WRITE:
250
251 switch (bit_width) {
252 case 8:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000253
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000254 ACPI_SET8(logical_addr_ptr, *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
256
257 case 16:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000258
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000259 ACPI_SET16(logical_addr_ptr, *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 break;
261
262 case 32:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000263
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000264 ACPI_SET32(logical_addr_ptr, *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 break;
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 case 64:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000268
Lv Zheng57bf6ae2012-12-19 05:38:24 +0000269 ACPI_SET64(logical_addr_ptr, *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /* bit_width was already validated */
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 break;
277 }
278 break;
279
280 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 status = AE_BAD_PARAMETER;
283 break;
284 }
285
Len Brown4be44fc2005-08-05 00:44:28 -0400286 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289/*******************************************************************************
290 *
291 * FUNCTION: acpi_ex_system_io_space_handler
292 *
Bob Mooreba494be2012-07-12 09:40:10 +0800293 * PARAMETERS: function - Read or Write operation
294 * address - Where in the space to read or write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 * bit_width - Field width in bits (8, 16, or 32)
Bob Mooreba494be2012-07-12 09:40:10 +0800296 * value - Pointer to in or out value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 * handler_context - Pointer to Handler's context
298 * region_context - Pointer to context specific to the
299 * accessed region
300 *
301 * RETURN: Status
302 *
303 * DESCRIPTION: Handler for the System IO address space (Op Region)
304 *
305 ******************************************************************************/
306
307acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400308acpi_ex_system_io_space_handler(u32 function,
309 acpi_physical_address address,
310 u32 bit_width,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800311 u64 *value,
Len Brown4be44fc2005-08-05 00:44:28 -0400312 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
Len Brown4be44fc2005-08-05 00:44:28 -0400314 acpi_status status = AE_OK;
315 u32 value32;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Bob Mooreb229cf92006-04-21 17:15:00 -0400317 ACPI_FUNCTION_TRACE(ex_system_io_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Len Brown4be44fc2005-08-05 00:44:28 -0400319 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Mooreb27d6592010-05-26 11:47:13 +0800320 "System-IO (width %u) R/W %u Address=%8.8X%8.8X\n",
Lv Zheng1d0a0b22015-04-13 11:48:52 +0800321 bit_width, function, ACPI_FORMAT_UINT64(address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323 /* Decode the function parameter */
324
325 switch (function) {
326 case ACPI_READ:
327
Bob Moore7f071902009-03-19 09:37:47 +0800328 status = acpi_hw_read_port((acpi_io_address) address,
Len Brown4be44fc2005-08-05 00:44:28 -0400329 &value32, bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 *value = value32;
331 break;
332
333 case ACPI_WRITE:
334
Bob Moore7f071902009-03-19 09:37:47 +0800335 status = acpi_hw_write_port((acpi_io_address) address,
Len Brown4be44fc2005-08-05 00:44:28 -0400336 (u32) * value, bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 break;
338
339 default:
Chao Guan1d1ea1b2013-06-08 00:58:14 +0000340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 status = AE_BAD_PARAMETER;
342 break;
343 }
344
Len Brown4be44fc2005-08-05 00:44:28 -0400345 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348/*******************************************************************************
349 *
350 * FUNCTION: acpi_ex_pci_config_space_handler
351 *
Bob Mooreba494be2012-07-12 09:40:10 +0800352 * PARAMETERS: function - Read or Write operation
353 * address - Where in the space to read or write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 * bit_width - Field width in bits (8, 16, or 32)
Bob Mooreba494be2012-07-12 09:40:10 +0800355 * value - Pointer to in or out value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 * handler_context - Pointer to Handler's context
357 * region_context - Pointer to context specific to the
358 * accessed region
359 *
360 * RETURN: Status
361 *
362 * DESCRIPTION: Handler for the PCI Config address space (Op Region)
363 *
364 ******************************************************************************/
365
366acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400367acpi_ex_pci_config_space_handler(u32 function,
368 acpi_physical_address address,
369 u32 bit_width,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800370 u64 *value,
Len Brown4be44fc2005-08-05 00:44:28 -0400371 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Len Brown4be44fc2005-08-05 00:44:28 -0400373 acpi_status status = AE_OK;
374 struct acpi_pci_id *pci_id;
375 u16 pci_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Bob Mooreb229cf92006-04-21 17:15:00 -0400377 ACPI_FUNCTION_TRACE(ex_pci_config_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 /*
380 * The arguments to acpi_os(Read|Write)pci_configuration are:
381 *
382 * pci_segment is the PCI bus segment range 0-31
383 * pci_bus is the PCI bus number range 0-255
384 * pci_device is the PCI device number range 0-31
385 * pci_function is the PCI device function number
386 * pci_register is the Config space register range 0-255 bytes
387 *
Bob Mooreba494be2012-07-12 09:40:10 +0800388 * value - input value for write, output address for read
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 *
390 */
Len Brown4be44fc2005-08-05 00:44:28 -0400391 pci_id = (struct acpi_pci_id *)region_context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 pci_register = (u16) (u32) address;
393
Len Brown4be44fc2005-08-05 00:44:28 -0400394 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Bob Moore1fad8732015-12-29 13:54:36 +0800395 "Pci-Config %u (%u) Seg(%04x) Bus(%04x) "
396 "Dev(%04x) Func(%04x) Reg(%04x)\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400397 function, bit_width, pci_id->segment, pci_id->bus,
398 pci_id->device, pci_id->function, pci_register));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 switch (function) {
401 case ACPI_READ:
402
Lv Zhengbb42cc22013-10-31 09:29:49 +0800403 *value = 0;
Bob Moore1fad8732015-12-29 13:54:36 +0800404 status =
405 acpi_os_read_pci_configuration(pci_id, pci_register, value,
406 bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 break;
408
409 case ACPI_WRITE:
410
Bob Moore1fad8732015-12-29 13:54:36 +0800411 status =
412 acpi_os_write_pci_configuration(pci_id, pci_register,
413 *value, bit_width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 break;
415
416 default:
417
418 status = AE_BAD_PARAMETER;
419 break;
420 }
421
Len Brown4be44fc2005-08-05 00:44:28 -0400422 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425/*******************************************************************************
426 *
427 * FUNCTION: acpi_ex_cmos_space_handler
428 *
Bob Mooreba494be2012-07-12 09:40:10 +0800429 * PARAMETERS: function - Read or Write operation
430 * address - Where in the space to read or write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 * bit_width - Field width in bits (8, 16, or 32)
Bob Mooreba494be2012-07-12 09:40:10 +0800432 * value - Pointer to in or out value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 * handler_context - Pointer to Handler's context
434 * region_context - Pointer to context specific to the
435 * accessed region
436 *
437 * RETURN: Status
438 *
439 * DESCRIPTION: Handler for the CMOS address space (Op Region)
440 *
441 ******************************************************************************/
442
443acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400444acpi_ex_cmos_space_handler(u32 function,
445 acpi_physical_address address,
446 u32 bit_width,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800447 u64 *value,
Len Brown4be44fc2005-08-05 00:44:28 -0400448 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Len Brown4be44fc2005-08-05 00:44:28 -0400450 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Bob Mooreb229cf92006-04-21 17:15:00 -0400452 ACPI_FUNCTION_TRACE(ex_cmos_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Len Brown4be44fc2005-08-05 00:44:28 -0400454 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457/*******************************************************************************
458 *
459 * FUNCTION: acpi_ex_pci_bar_space_handler
460 *
Bob Mooreba494be2012-07-12 09:40:10 +0800461 * PARAMETERS: function - Read or Write operation
462 * address - Where in the space to read or write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 * bit_width - Field width in bits (8, 16, or 32)
Bob Mooreba494be2012-07-12 09:40:10 +0800464 * value - Pointer to in or out value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 * handler_context - Pointer to Handler's context
466 * region_context - Pointer to context specific to the
467 * accessed region
468 *
469 * RETURN: Status
470 *
471 * DESCRIPTION: Handler for the PCI bar_target address space (Op Region)
472 *
473 ******************************************************************************/
474
475acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400476acpi_ex_pci_bar_space_handler(u32 function,
477 acpi_physical_address address,
478 u32 bit_width,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800479 u64 *value,
Len Brown4be44fc2005-08-05 00:44:28 -0400480 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Len Brown4be44fc2005-08-05 00:44:28 -0400482 acpi_status status = AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Bob Mooreb229cf92006-04-21 17:15:00 -0400484 ACPI_FUNCTION_TRACE(ex_pci_bar_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Len Brown4be44fc2005-08-05 00:44:28 -0400486 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489/*******************************************************************************
490 *
491 * FUNCTION: acpi_ex_data_table_space_handler
492 *
Bob Mooreba494be2012-07-12 09:40:10 +0800493 * PARAMETERS: function - Read or Write operation
494 * address - Where in the space to read or write
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 * bit_width - Field width in bits (8, 16, or 32)
Bob Mooreba494be2012-07-12 09:40:10 +0800496 * value - Pointer to in or out value
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * handler_context - Pointer to Handler's context
498 * region_context - Pointer to context specific to the
499 * accessed region
500 *
501 * RETURN: Status
502 *
503 * DESCRIPTION: Handler for the Data Table address space (Op Region)
504 *
505 ******************************************************************************/
506
507acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400508acpi_ex_data_table_space_handler(u32 function,
509 acpi_physical_address address,
510 u32 bit_width,
Bob Moore5df7e6c2010-01-21 10:06:32 +0800511 u64 *value,
Len Brown4be44fc2005-08-05 00:44:28 -0400512 void *handler_context, void *region_context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Bob Mooreb229cf92006-04-21 17:15:00 -0400514 ACPI_FUNCTION_TRACE(ex_data_table_space_handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Bob Moorec1637e92010-04-01 11:09:00 +0800516 /*
517 * Perform the memory read or write. The bit_width was already
518 * validated.
519 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 switch (function) {
521 case ACPI_READ:
522
Bob Moore4fa46162015-07-01 14:45:11 +0800523 memcpy(ACPI_CAST_PTR(char, value),
524 ACPI_PHYSADDR_TO_PTR(address), ACPI_DIV_8(bit_width));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 break;
526
527 case ACPI_WRITE:
Bob Moorec1637e92010-04-01 11:09:00 +0800528
Bob Moore4fa46162015-07-01 14:45:11 +0800529 memcpy(ACPI_PHYSADDR_TO_PTR(address),
530 ACPI_CAST_PTR(char, value), ACPI_DIV_8(bit_width));
Bob Moorec1637e92010-04-01 11:09:00 +0800531 break;
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 default:
534
Bob Moorec1637e92010-04-01 11:09:00 +0800535 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
537
Bob Moore41195322006-05-26 16:36:00 -0400538 return_ACPI_STATUS(AE_OK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539}