blob: ae142de19507059639b49b3f2471f664c98d31a6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
2/*******************************************************************************
3 *
4 * Module Name: hwregs - Read/write access functions for the various ACPI
5 * control and status registers.
6 *
7 ******************************************************************************/
8
9/*
Bob Moore4a90c7e2006-01-13 16:22:00 -050010 * Copyright (C) 2000 - 2006, R. Byron Moore
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * All rights reserved.
12 *
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
15 * are met:
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions, and the following disclaimer,
18 * without modification.
19 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
20 * substantially similar to the "NO WARRANTY" disclaimer below
21 * ("Disclaimer") and any redistribution must be conditioned upon
22 * including a substantially similar Disclaimer requirement for further
23 * binary redistribution.
24 * 3. Neither the names of the above-listed copyright holders nor the names
25 * of any contributors may be used to endorse or promote products derived
26 * from this software without specific prior written permission.
27 *
28 * Alternatively, this software may be distributed under the terms of the
29 * GNU General Public License ("GPL") version 2 as published by the Free
30 * Software Foundation.
31 *
32 * NO WARRANTY
33 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
34 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
35 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
36 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
37 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
38 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
39 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
40 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
41 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
42 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
43 * POSSIBILITY OF SUCH DAMAGES.
44 */
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <acpi/acpi.h>
47#include <acpi/acnamesp.h>
48#include <acpi/acevents.h>
49
50#define _COMPONENT ACPI_HARDWARE
Len Brown4be44fc2005-08-05 00:44:28 -040051ACPI_MODULE_NAME("hwregs")
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*******************************************************************************
54 *
55 * FUNCTION: acpi_hw_clear_acpi_status
56 *
57 * PARAMETERS: Flags - Lock the hardware or not
58 *
59 * RETURN: none
60 *
61 * DESCRIPTION: Clears all fixed and general purpose status bits
62 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED
63 *
Bob Moore4c90ece2006-06-08 16:29:00 -040064 * NOTE: TBD: Flags parameter is obsolete, to be removed
65 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -040067acpi_status acpi_hw_clear_acpi_status(u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Len Brown4be44fc2005-08-05 00:44:28 -040069 acpi_status status;
Bob Moore4c90ece2006-06-08 16:29:00 -040070 acpi_cpu_flags lock_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Bob Mooreb229cf92006-04-21 17:15:00 -040072 ACPI_FUNCTION_TRACE(hw_clear_acpi_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Len Brown4be44fc2005-08-05 00:44:28 -040074 ACPI_DEBUG_PRINT((ACPI_DB_IO, "About to write %04X to %04X\n",
75 ACPI_BITMASK_ALL_FIXED_STATUS,
76 (u16) acpi_gbl_FADT->xpm1a_evt_blk.address));
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Bob Moore4c90ece2006-06-08 16:29:00 -040078 lock_flags = acpi_os_acquire_lock(acpi_gbl_hardware_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Len Brown4be44fc2005-08-05 00:44:28 -040080 status = acpi_hw_register_write(ACPI_MTX_DO_NOT_LOCK,
81 ACPI_REGISTER_PM1_STATUS,
82 ACPI_BITMASK_ALL_FIXED_STATUS);
83 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 goto unlock_and_exit;
85 }
86
87 /* Clear the fixed events */
88
89 if (acpi_gbl_FADT->xpm1b_evt_blk.address) {
Len Brown4be44fc2005-08-05 00:44:28 -040090 status =
91 acpi_hw_low_level_write(16, ACPI_BITMASK_ALL_FIXED_STATUS,
92 &acpi_gbl_FADT->xpm1b_evt_blk);
93 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 goto unlock_and_exit;
95 }
96 }
97
98 /* Clear the GPE Bits in all GPE registers in all GPE blocks */
99
Len Brown4be44fc2005-08-05 00:44:28 -0400100 status = acpi_ev_walk_gpe_list(acpi_hw_clear_gpe_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Len Brown4be44fc2005-08-05 00:44:28 -0400102 unlock_and_exit:
Bob Moore4c90ece2006-06-08 16:29:00 -0400103 acpi_os_release_lock(acpi_gbl_hardware_lock, lock_flags);
Len Brown4be44fc2005-08-05 00:44:28 -0400104 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/*******************************************************************************
108 *
109 * FUNCTION: acpi_get_sleep_type_data
110 *
111 * PARAMETERS: sleep_state - Numeric sleep state
112 * *sleep_type_a - Where SLP_TYPa is returned
113 * *sleep_type_b - Where SLP_TYPb is returned
114 *
115 * RETURN: Status - ACPI status
116 *
117 * DESCRIPTION: Obtain the SLP_TYPa and SLP_TYPb values for the requested sleep
118 * state.
119 *
120 ******************************************************************************/
121
122acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400123acpi_get_sleep_type_data(u8 sleep_state, u8 * sleep_type_a, u8 * sleep_type_b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Len Brown4be44fc2005-08-05 00:44:28 -0400125 acpi_status status = AE_OK;
Bob Moore41195322006-05-26 16:36:00 -0400126 struct acpi_evaluate_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Bob Mooreb229cf92006-04-21 17:15:00 -0400128 ACPI_FUNCTION_TRACE(acpi_get_sleep_type_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Robert Moore44f6c012005-04-18 22:49:35 -0400130 /* Validate parameters */
131
Len Brown4be44fc2005-08-05 00:44:28 -0400132 if ((sleep_state > ACPI_S_STATES_MAX) || !sleep_type_a || !sleep_type_b) {
133 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135
Bob Moore41195322006-05-26 16:36:00 -0400136 /* Allocate the evaluation information block */
Robert Moore44f6c012005-04-18 22:49:35 -0400137
Bob Moore41195322006-05-26 16:36:00 -0400138 info = ACPI_ALLOCATE_ZEROED(sizeof(struct acpi_evaluate_info));
139 if (!info) {
140 return_ACPI_STATUS(AE_NO_MEMORY);
141 }
142
143 info->pathname =
Bob Mooredefba1d2005-12-16 17:05:00 -0500144 ACPI_CAST_PTR(char, acpi_gbl_sleep_state_names[sleep_state]);
Robert Moore44f6c012005-04-18 22:49:35 -0400145
Bob Moore41195322006-05-26 16:36:00 -0400146 /* Evaluate the namespace object containing the values for this state */
147
148 status = acpi_ns_evaluate(info);
Len Brown4be44fc2005-08-05 00:44:28 -0400149 if (ACPI_FAILURE(status)) {
150 ACPI_DEBUG_PRINT((ACPI_DB_EXEC,
Bob Mooreb229cf92006-04-21 17:15:00 -0400151 "%s while evaluating SleepState [%s]\n",
Len Brown4be44fc2005-08-05 00:44:28 -0400152 acpi_format_exception(status),
Bob Moore41195322006-05-26 16:36:00 -0400153 info->pathname));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Bob Moore41195322006-05-26 16:36:00 -0400155 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
157
158 /* Must have a return object */
159
Bob Moore41195322006-05-26 16:36:00 -0400160 if (!info->return_object) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500161 ACPI_ERROR((AE_INFO, "No Sleep State object returned from [%s]",
Bob Moore41195322006-05-26 16:36:00 -0400162 info->pathname));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 status = AE_NOT_EXIST;
164 }
165
166 /* It must be of type Package */
167
Bob Moore41195322006-05-26 16:36:00 -0400168 else if (ACPI_GET_OBJECT_TYPE(info->return_object) != ACPI_TYPE_PACKAGE) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500169 ACPI_ERROR((AE_INFO,
170 "Sleep State return object is not a Package"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 status = AE_AML_OPERAND_TYPE;
172 }
173
Robert Moore44f6c012005-04-18 22:49:35 -0400174 /*
175 * The package must have at least two elements. NOTE (March 2005): This
176 * goes against the current ACPI spec which defines this object as a
177 * package with one encoded DWORD element. However, existing practice
178 * by BIOS vendors seems to be to have 2 or more elements, at least
179 * one per sleep type (A/B).
180 */
Bob Moore41195322006-05-26 16:36:00 -0400181 else if (info->return_object->package.count < 2) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500182 ACPI_ERROR((AE_INFO,
183 "Sleep State return package does not have at least two elements"));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 status = AE_AML_NO_OPERAND;
185 }
186
187 /* The first two elements must both be of type Integer */
188
Bob Moore41195322006-05-26 16:36:00 -0400189 else if ((ACPI_GET_OBJECT_TYPE(info->return_object->package.elements[0])
Len Brown4be44fc2005-08-05 00:44:28 -0400190 != ACPI_TYPE_INTEGER) ||
Bob Moore41195322006-05-26 16:36:00 -0400191 (ACPI_GET_OBJECT_TYPE(info->return_object->package.elements[1])
Len Brown4be44fc2005-08-05 00:44:28 -0400192 != ACPI_TYPE_INTEGER)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500193 ACPI_ERROR((AE_INFO,
194 "Sleep State return package elements are not both Integers (%s, %s)",
Bob Moore41195322006-05-26 16:36:00 -0400195 acpi_ut_get_object_type_name(info->return_object->
Bob Mooreb8e4d892006-01-27 16:43:00 -0500196 package.elements[0]),
Bob Moore41195322006-05-26 16:36:00 -0400197 acpi_ut_get_object_type_name(info->return_object->
Bob Mooreb8e4d892006-01-27 16:43:00 -0500198 package.elements[1])));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 status = AE_AML_OPERAND_TYPE;
Len Brown4be44fc2005-08-05 00:44:28 -0400200 } else {
Robert Moore44f6c012005-04-18 22:49:35 -0400201 /* Valid _Sx_ package size, type, and value */
202
203 *sleep_type_a = (u8)
Bob Moore41195322006-05-26 16:36:00 -0400204 (info->return_object->package.elements[0])->integer.value;
Robert Moore44f6c012005-04-18 22:49:35 -0400205 *sleep_type_b = (u8)
Bob Moore41195322006-05-26 16:36:00 -0400206 (info->return_object->package.elements[1])->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
208
Len Brown4be44fc2005-08-05 00:44:28 -0400209 if (ACPI_FAILURE(status)) {
Bob Mooreb8e4d892006-01-27 16:43:00 -0500210 ACPI_EXCEPTION((AE_INFO, status,
Bob Mooreb229cf92006-04-21 17:15:00 -0400211 "While evaluating SleepState [%s], bad Sleep object %p type %s",
Bob Moore41195322006-05-26 16:36:00 -0400212 info->pathname, info->return_object,
213 acpi_ut_get_object_type_name(info->
Bob Mooreb8e4d892006-01-27 16:43:00 -0500214 return_object)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216
Bob Moore41195322006-05-26 16:36:00 -0400217 acpi_ut_remove_reference(info->return_object);
218
219 cleanup:
220 ACPI_FREE(info);
Len Brown4be44fc2005-08-05 00:44:28 -0400221 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Bob Moore83135242006-10-03 00:00:00 -0400224ACPI_EXPORT_SYMBOL(acpi_get_sleep_type_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226/*******************************************************************************
227 *
228 * FUNCTION: acpi_hw_get_register_bit_mask
229 *
230 * PARAMETERS: register_id - Index of ACPI Register to access
231 *
Robert Moore44f6c012005-04-18 22:49:35 -0400232 * RETURN: The bitmask to be used when accessing the register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 *
Robert Moore44f6c012005-04-18 22:49:35 -0400234 * DESCRIPTION: Map register_id into a register bitmask.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 *
236 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400237struct acpi_bit_register_info *acpi_hw_get_bit_register_info(u32 register_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Bob Moore4a90c7e2006-01-13 16:22:00 -0500239 ACPI_FUNCTION_ENTRY();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 if (register_id > ACPI_BITREG_MAX) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400242 ACPI_ERROR((AE_INFO, "Invalid BitRegister ID: %X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500243 register_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return (NULL);
245 }
246
247 return (&acpi_gbl_bit_register_info[register_id]);
248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/*******************************************************************************
251 *
252 * FUNCTION: acpi_get_register
253 *
254 * PARAMETERS: register_id - ID of ACPI bit_register to access
255 * return_value - Value that was read from the register
256 * Flags - Lock the hardware or not
257 *
258 * RETURN: Status and the value read from specified Register. Value
259 * returned is normalized to bit0 (is shifted all the way right)
260 *
261 * DESCRIPTION: ACPI bit_register read function.
262 *
Bob Moore4c90ece2006-06-08 16:29:00 -0400263 * NOTE: TBD: Flags parameter is obsolete, to be removed
264 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 ******************************************************************************/
266
Len Brown4be44fc2005-08-05 00:44:28 -0400267acpi_status acpi_get_register(u32 register_id, u32 * return_value, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
Len Brown4be44fc2005-08-05 00:44:28 -0400269 u32 register_value = 0;
270 struct acpi_bit_register_info *bit_reg_info;
271 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Bob Mooreb229cf92006-04-21 17:15:00 -0400273 ACPI_FUNCTION_TRACE(acpi_get_register);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /* Get the info structure corresponding to the requested ACPI Register */
276
Len Brown4be44fc2005-08-05 00:44:28 -0400277 bit_reg_info = acpi_hw_get_bit_register_info(register_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (!bit_reg_info) {
Len Brown4be44fc2005-08-05 00:44:28 -0400279 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* Read from the register */
283
Bob Moore4c90ece2006-06-08 16:29:00 -0400284 status = acpi_hw_register_read(ACPI_MTX_LOCK,
Len Brown4be44fc2005-08-05 00:44:28 -0400285 bit_reg_info->parent_register,
286 &register_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Len Brown4be44fc2005-08-05 00:44:28 -0400288 if (ACPI_SUCCESS(status)) {
Bob Moore52fc0b02006-10-02 00:00:00 -0400289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 /* Normalize the value that was read */
291
Len Brown4be44fc2005-08-05 00:44:28 -0400292 register_value =
293 ((register_value & bit_reg_info->access_bit_mask)
294 >> bit_reg_info->bit_position);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 *return_value = register_value;
297
Len Brown4be44fc2005-08-05 00:44:28 -0400298 ACPI_DEBUG_PRINT((ACPI_DB_IO, "Read value %8.8X register %X\n",
299 register_value,
300 bit_reg_info->parent_register));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302
Len Brown4be44fc2005-08-05 00:44:28 -0400303 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Bob Moore83135242006-10-03 00:00:00 -0400306ACPI_EXPORT_SYMBOL(acpi_get_register)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308/*******************************************************************************
309 *
310 * FUNCTION: acpi_set_register
311 *
312 * PARAMETERS: register_id - ID of ACPI bit_register to access
313 * Value - (only used on write) value to write to the
314 * Register, NOT pre-normalized to the bit pos
315 * Flags - Lock the hardware or not
316 *
317 * RETURN: Status
318 *
319 * DESCRIPTION: ACPI Bit Register write function.
320 *
Bob Moore4c90ece2006-06-08 16:29:00 -0400321 * NOTE: TBD: Flags parameter is obsolete, to be removed
322 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 ******************************************************************************/
Len Brown4be44fc2005-08-05 00:44:28 -0400324acpi_status acpi_set_register(u32 register_id, u32 value, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
Len Brown4be44fc2005-08-05 00:44:28 -0400326 u32 register_value = 0;
327 struct acpi_bit_register_info *bit_reg_info;
328 acpi_status status;
Bob Moore4c90ece2006-06-08 16:29:00 -0400329 acpi_cpu_flags lock_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Bob Mooreb229cf92006-04-21 17:15:00 -0400331 ACPI_FUNCTION_TRACE_U32(acpi_set_register, register_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 /* Get the info structure corresponding to the requested ACPI Register */
334
Len Brown4be44fc2005-08-05 00:44:28 -0400335 bit_reg_info = acpi_hw_get_bit_register_info(register_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (!bit_reg_info) {
Bob Mooreb229cf92006-04-21 17:15:00 -0400337 ACPI_ERROR((AE_INFO, "Bad ACPI HW RegisterId: %X",
Bob Mooreb8e4d892006-01-27 16:43:00 -0500338 register_id));
Len Brown4be44fc2005-08-05 00:44:28 -0400339 return_ACPI_STATUS(AE_BAD_PARAMETER);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341
Bob Moore4c90ece2006-06-08 16:29:00 -0400342 lock_flags = acpi_os_acquire_lock(acpi_gbl_hardware_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 /* Always do a register read first so we can insert the new bits */
345
Len Brown4be44fc2005-08-05 00:44:28 -0400346 status = acpi_hw_register_read(ACPI_MTX_DO_NOT_LOCK,
347 bit_reg_info->parent_register,
348 &register_value);
349 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 goto unlock_and_exit;
351 }
352
353 /*
354 * Decode the Register ID
355 * Register ID = [Register block ID] | [bit ID]
356 *
357 * Check bit ID to fine locate Register offset.
358 * Check Mask to determine Register offset, and then read-write.
359 */
360 switch (bit_reg_info->parent_register) {
361 case ACPI_REGISTER_PM1_STATUS:
362
363 /*
364 * Status Registers are different from the rest. Clear by
365 * writing 1, and writing 0 has no effect. So, the only relevant
366 * information is the single bit we're interested in, all others should
367 * be written as 0 so they will be left unchanged.
368 */
Len Brown4be44fc2005-08-05 00:44:28 -0400369 value = ACPI_REGISTER_PREPARE_BITS(value,
370 bit_reg_info->bit_position,
371 bit_reg_info->
372 access_bit_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (value) {
Len Brown4be44fc2005-08-05 00:44:28 -0400374 status = acpi_hw_register_write(ACPI_MTX_DO_NOT_LOCK,
375 ACPI_REGISTER_PM1_STATUS,
376 (u16) value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 register_value = 0;
378 }
379 break;
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 case ACPI_REGISTER_PM1_ENABLE:
382
Len Brown4be44fc2005-08-05 00:44:28 -0400383 ACPI_REGISTER_INSERT_VALUE(register_value,
384 bit_reg_info->bit_position,
385 bit_reg_info->access_bit_mask,
386 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Len Brown4be44fc2005-08-05 00:44:28 -0400388 status = acpi_hw_register_write(ACPI_MTX_DO_NOT_LOCK,
389 ACPI_REGISTER_PM1_ENABLE,
390 (u16) register_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 break;
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 case ACPI_REGISTER_PM1_CONTROL:
394
395 /*
396 * Write the PM1 Control register.
397 * Note that at this level, the fact that there are actually TWO
398 * registers (A and B - and B may not exist) is abstracted.
399 */
Len Brown4be44fc2005-08-05 00:44:28 -0400400 ACPI_DEBUG_PRINT((ACPI_DB_IO, "PM1 control: Read %X\n",
401 register_value));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Len Brown4be44fc2005-08-05 00:44:28 -0400403 ACPI_REGISTER_INSERT_VALUE(register_value,
404 bit_reg_info->bit_position,
405 bit_reg_info->access_bit_mask,
406 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Len Brown4be44fc2005-08-05 00:44:28 -0400408 status = acpi_hw_register_write(ACPI_MTX_DO_NOT_LOCK,
409 ACPI_REGISTER_PM1_CONTROL,
410 (u16) register_value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 break;
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 case ACPI_REGISTER_PM2_CONTROL:
414
Len Brown4be44fc2005-08-05 00:44:28 -0400415 status = acpi_hw_register_read(ACPI_MTX_DO_NOT_LOCK,
416 ACPI_REGISTER_PM2_CONTROL,
417 &register_value);
418 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 goto unlock_and_exit;
420 }
421
Len Brown4be44fc2005-08-05 00:44:28 -0400422 ACPI_DEBUG_PRINT((ACPI_DB_IO,
423 "PM2 control: Read %X from %8.8X%8.8X\n",
424 register_value,
425 ACPI_FORMAT_UINT64(acpi_gbl_FADT->
426 xpm2_cnt_blk.address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Len Brown4be44fc2005-08-05 00:44:28 -0400428 ACPI_REGISTER_INSERT_VALUE(register_value,
429 bit_reg_info->bit_position,
430 bit_reg_info->access_bit_mask,
431 value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Len Brown4be44fc2005-08-05 00:44:28 -0400433 ACPI_DEBUG_PRINT((ACPI_DB_IO,
434 "About to write %4.4X to %8.8X%8.8X\n",
435 register_value,
436 ACPI_FORMAT_UINT64(acpi_gbl_FADT->
437 xpm2_cnt_blk.address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Len Brown4be44fc2005-08-05 00:44:28 -0400439 status = acpi_hw_register_write(ACPI_MTX_DO_NOT_LOCK,
440 ACPI_REGISTER_PM2_CONTROL,
441 (u8) (register_value));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 break;
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 default:
445 break;
446 }
447
Len Brown4be44fc2005-08-05 00:44:28 -0400448 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Bob Moore4c90ece2006-06-08 16:29:00 -0400450 acpi_os_release_lock(acpi_gbl_hardware_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 /* Normalize the value that was read */
453
Len Brown4be44fc2005-08-05 00:44:28 -0400454 ACPI_DEBUG_EXEC(register_value =
455 ((register_value & bit_reg_info->access_bit_mask) >>
456 bit_reg_info->bit_position));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Len Brown4be44fc2005-08-05 00:44:28 -0400458 ACPI_DEBUG_PRINT((ACPI_DB_IO,
459 "Set bits: %8.8X actual %8.8X register %X\n", value,
460 register_value, bit_reg_info->parent_register));
461 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Bob Moore83135242006-10-03 00:00:00 -0400464ACPI_EXPORT_SYMBOL(acpi_set_register)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466/******************************************************************************
467 *
468 * FUNCTION: acpi_hw_register_read
469 *
470 * PARAMETERS: use_lock - Mutex hw access
471 * register_id - register_iD + Offset
Robert Moore44f6c012005-04-18 22:49:35 -0400472 * return_value - Where the register value is returned
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 *
474 * RETURN: Status and the value read.
475 *
476 * DESCRIPTION: Acpi register read function. Registers are read at the
477 * given offset.
478 *
479 ******************************************************************************/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400481acpi_hw_register_read(u8 use_lock, u32 register_id, u32 * return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Len Brown4be44fc2005-08-05 00:44:28 -0400483 u32 value1 = 0;
484 u32 value2 = 0;
485 acpi_status status;
Bob Moore4c90ece2006-06-08 16:29:00 -0400486 acpi_cpu_flags lock_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Bob Mooreb229cf92006-04-21 17:15:00 -0400488 ACPI_FUNCTION_TRACE(hw_register_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 if (ACPI_MTX_LOCK == use_lock) {
Bob Moore4c90ece2006-06-08 16:29:00 -0400491 lock_flags = acpi_os_acquire_lock(acpi_gbl_hardware_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493
494 switch (register_id) {
Len Brown4be44fc2005-08-05 00:44:28 -0400495 case ACPI_REGISTER_PM1_STATUS: /* 16-bit access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Len Brown4be44fc2005-08-05 00:44:28 -0400497 status =
498 acpi_hw_low_level_read(16, &value1,
499 &acpi_gbl_FADT->xpm1a_evt_blk);
500 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 goto unlock_and_exit;
502 }
503
504 /* PM1B is optional */
505
Len Brown4be44fc2005-08-05 00:44:28 -0400506 status =
507 acpi_hw_low_level_read(16, &value2,
508 &acpi_gbl_FADT->xpm1b_evt_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 value1 |= value2;
510 break;
511
Len Brown4be44fc2005-08-05 00:44:28 -0400512 case ACPI_REGISTER_PM1_ENABLE: /* 16-bit access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Len Brown4be44fc2005-08-05 00:44:28 -0400514 status =
515 acpi_hw_low_level_read(16, &value1, &acpi_gbl_xpm1a_enable);
516 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 goto unlock_and_exit;
518 }
519
520 /* PM1B is optional */
521
Len Brown4be44fc2005-08-05 00:44:28 -0400522 status =
523 acpi_hw_low_level_read(16, &value2, &acpi_gbl_xpm1b_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 value1 |= value2;
525 break;
526
Len Brown4be44fc2005-08-05 00:44:28 -0400527 case ACPI_REGISTER_PM1_CONTROL: /* 16-bit access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Len Brown4be44fc2005-08-05 00:44:28 -0400529 status =
530 acpi_hw_low_level_read(16, &value1,
531 &acpi_gbl_FADT->xpm1a_cnt_blk);
532 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 goto unlock_and_exit;
534 }
535
Len Brown4be44fc2005-08-05 00:44:28 -0400536 status =
537 acpi_hw_low_level_read(16, &value2,
538 &acpi_gbl_FADT->xpm1b_cnt_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 value1 |= value2;
540 break;
541
Len Brown4be44fc2005-08-05 00:44:28 -0400542 case ACPI_REGISTER_PM2_CONTROL: /* 8-bit access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Len Brown4be44fc2005-08-05 00:44:28 -0400544 status =
545 acpi_hw_low_level_read(8, &value1,
546 &acpi_gbl_FADT->xpm2_cnt_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 break;
548
Len Brown4be44fc2005-08-05 00:44:28 -0400549 case ACPI_REGISTER_PM_TIMER: /* 32-bit access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Len Brown4be44fc2005-08-05 00:44:28 -0400551 status =
552 acpi_hw_low_level_read(32, &value1,
553 &acpi_gbl_FADT->xpm_tmr_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 break;
555
Len Brown4be44fc2005-08-05 00:44:28 -0400556 case ACPI_REGISTER_SMI_COMMAND_BLOCK: /* 8-bit access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Len Brown4be44fc2005-08-05 00:44:28 -0400558 status = acpi_os_read_port(acpi_gbl_FADT->smi_cmd, &value1, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 break;
560
561 default:
Bob Mooreb8e4d892006-01-27 16:43:00 -0500562 ACPI_ERROR((AE_INFO, "Unknown Register ID: %X", register_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 status = AE_BAD_PARAMETER;
564 break;
565 }
566
Len Brown4be44fc2005-08-05 00:44:28 -0400567 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (ACPI_MTX_LOCK == use_lock) {
Bob Moore4c90ece2006-06-08 16:29:00 -0400569 acpi_os_release_lock(acpi_gbl_hardware_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
Len Brown4be44fc2005-08-05 00:44:28 -0400572 if (ACPI_SUCCESS(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 *return_value = value1;
574 }
575
Len Brown4be44fc2005-08-05 00:44:28 -0400576 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579/******************************************************************************
580 *
581 * FUNCTION: acpi_hw_register_write
582 *
583 * PARAMETERS: use_lock - Mutex hw access
584 * register_id - register_iD + Offset
585 * Value - The value to write
586 *
587 * RETURN: Status
588 *
589 * DESCRIPTION: Acpi register Write function. Registers are written at the
590 * given offset.
591 *
592 ******************************************************************************/
593
Len Brown4be44fc2005-08-05 00:44:28 -0400594acpi_status acpi_hw_register_write(u8 use_lock, u32 register_id, u32 value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Len Brown4be44fc2005-08-05 00:44:28 -0400596 acpi_status status;
Bob Moore4c90ece2006-06-08 16:29:00 -0400597 acpi_cpu_flags lock_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Bob Mooreb229cf92006-04-21 17:15:00 -0400599 ACPI_FUNCTION_TRACE(hw_register_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 if (ACPI_MTX_LOCK == use_lock) {
Bob Moore4c90ece2006-06-08 16:29:00 -0400602 lock_flags = acpi_os_acquire_lock(acpi_gbl_hardware_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604
605 switch (register_id) {
Len Brown4be44fc2005-08-05 00:44:28 -0400606 case ACPI_REGISTER_PM1_STATUS: /* 16-bit access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Len Brown4be44fc2005-08-05 00:44:28 -0400608 status =
609 acpi_hw_low_level_write(16, value,
610 &acpi_gbl_FADT->xpm1a_evt_blk);
611 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 goto unlock_and_exit;
613 }
614
615 /* PM1B is optional */
616
Len Brown4be44fc2005-08-05 00:44:28 -0400617 status =
618 acpi_hw_low_level_write(16, value,
619 &acpi_gbl_FADT->xpm1b_evt_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 break;
621
Len Brown4be44fc2005-08-05 00:44:28 -0400622 case ACPI_REGISTER_PM1_ENABLE: /* 16-bit access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Len Brown4be44fc2005-08-05 00:44:28 -0400624 status =
625 acpi_hw_low_level_write(16, value, &acpi_gbl_xpm1a_enable);
626 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 goto unlock_and_exit;
628 }
629
630 /* PM1B is optional */
631
Len Brown4be44fc2005-08-05 00:44:28 -0400632 status =
633 acpi_hw_low_level_write(16, value, &acpi_gbl_xpm1b_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 break;
635
Len Brown4be44fc2005-08-05 00:44:28 -0400636 case ACPI_REGISTER_PM1_CONTROL: /* 16-bit access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Len Brown4be44fc2005-08-05 00:44:28 -0400638 status =
639 acpi_hw_low_level_write(16, value,
640 &acpi_gbl_FADT->xpm1a_cnt_blk);
641 if (ACPI_FAILURE(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 goto unlock_and_exit;
643 }
644
Len Brown4be44fc2005-08-05 00:44:28 -0400645 status =
646 acpi_hw_low_level_write(16, value,
647 &acpi_gbl_FADT->xpm1b_cnt_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 break;
649
Len Brown4be44fc2005-08-05 00:44:28 -0400650 case ACPI_REGISTER_PM1A_CONTROL: /* 16-bit access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Len Brown4be44fc2005-08-05 00:44:28 -0400652 status =
653 acpi_hw_low_level_write(16, value,
654 &acpi_gbl_FADT->xpm1a_cnt_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 break;
656
Len Brown4be44fc2005-08-05 00:44:28 -0400657 case ACPI_REGISTER_PM1B_CONTROL: /* 16-bit access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Len Brown4be44fc2005-08-05 00:44:28 -0400659 status =
660 acpi_hw_low_level_write(16, value,
661 &acpi_gbl_FADT->xpm1b_cnt_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 break;
663
Len Brown4be44fc2005-08-05 00:44:28 -0400664 case ACPI_REGISTER_PM2_CONTROL: /* 8-bit access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Len Brown4be44fc2005-08-05 00:44:28 -0400666 status =
667 acpi_hw_low_level_write(8, value,
668 &acpi_gbl_FADT->xpm2_cnt_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 break;
670
Len Brown4be44fc2005-08-05 00:44:28 -0400671 case ACPI_REGISTER_PM_TIMER: /* 32-bit access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Len Brown4be44fc2005-08-05 00:44:28 -0400673 status =
674 acpi_hw_low_level_write(32, value,
675 &acpi_gbl_FADT->xpm_tmr_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 break;
677
Len Brown4be44fc2005-08-05 00:44:28 -0400678 case ACPI_REGISTER_SMI_COMMAND_BLOCK: /* 8-bit access */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 /* SMI_CMD is currently always in IO space */
681
Len Brown4be44fc2005-08-05 00:44:28 -0400682 status = acpi_os_write_port(acpi_gbl_FADT->smi_cmd, value, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 break;
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 default:
686 status = AE_BAD_PARAMETER;
687 break;
688 }
689
Len Brown4be44fc2005-08-05 00:44:28 -0400690 unlock_and_exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (ACPI_MTX_LOCK == use_lock) {
Bob Moore4c90ece2006-06-08 16:29:00 -0400692 acpi_os_release_lock(acpi_gbl_hardware_lock, lock_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 }
694
Len Brown4be44fc2005-08-05 00:44:28 -0400695 return_ACPI_STATUS(status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696}
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698/******************************************************************************
699 *
700 * FUNCTION: acpi_hw_low_level_read
701 *
702 * PARAMETERS: Width - 8, 16, or 32
703 * Value - Where the value is returned
704 * Reg - GAS register structure
705 *
706 * RETURN: Status
707 *
708 * DESCRIPTION: Read from either memory or IO space.
709 *
710 ******************************************************************************/
711
712acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400713acpi_hw_low_level_read(u32 width, u32 * value, struct acpi_generic_address *reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Len Brown4be44fc2005-08-05 00:44:28 -0400715 u64 address;
716 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Bob Mooreb229cf92006-04-21 17:15:00 -0400718 ACPI_FUNCTION_NAME(hw_low_level_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 /*
721 * Must have a valid pointer to a GAS structure, and
722 * a non-zero address within. However, don't return an error
723 * because the PM1A/B code must not fail if B isn't present.
724 */
725 if (!reg) {
726 return (AE_OK);
727 }
728
729 /* Get a local copy of the address. Handles possible alignment issues */
730
Len Brown4be44fc2005-08-05 00:44:28 -0400731 ACPI_MOVE_64_TO_64(&address, &reg->address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (!address) {
733 return (AE_OK);
734 }
735 *value = 0;
736
737 /*
738 * Two address spaces supported: Memory or IO.
739 * PCI_Config is not supported here because the GAS struct is insufficient
740 */
741 switch (reg->address_space_id) {
742 case ACPI_ADR_SPACE_SYSTEM_MEMORY:
743
Len Brown4be44fc2005-08-05 00:44:28 -0400744 status = acpi_os_read_memory((acpi_physical_address) address,
745 value, width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 break;
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 case ACPI_ADR_SPACE_SYSTEM_IO:
749
Len Brown4be44fc2005-08-05 00:44:28 -0400750 status = acpi_os_read_port((acpi_io_address) address,
751 value, width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 break;
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 default:
Bob Mooreb8e4d892006-01-27 16:43:00 -0500755 ACPI_ERROR((AE_INFO,
756 "Unsupported address space: %X",
757 reg->address_space_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 return (AE_BAD_PARAMETER);
759 }
760
Len Brown4be44fc2005-08-05 00:44:28 -0400761 ACPI_DEBUG_PRINT((ACPI_DB_IO,
762 "Read: %8.8X width %2d from %8.8X%8.8X (%s)\n",
763 *value, width,
764 ACPI_FORMAT_UINT64(address),
765 acpi_ut_get_region_name(reg->address_space_id)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 return (status);
768}
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770/******************************************************************************
771 *
772 * FUNCTION: acpi_hw_low_level_write
773 *
774 * PARAMETERS: Width - 8, 16, or 32
775 * Value - To be written
776 * Reg - GAS register structure
777 *
778 * RETURN: Status
779 *
780 * DESCRIPTION: Write to either memory or IO space.
781 *
782 ******************************************************************************/
783
784acpi_status
Len Brown4be44fc2005-08-05 00:44:28 -0400785acpi_hw_low_level_write(u32 width, u32 value, struct acpi_generic_address * reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Len Brown4be44fc2005-08-05 00:44:28 -0400787 u64 address;
788 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Bob Mooreb229cf92006-04-21 17:15:00 -0400790 ACPI_FUNCTION_NAME(hw_low_level_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 /*
793 * Must have a valid pointer to a GAS structure, and
794 * a non-zero address within. However, don't return an error
795 * because the PM1A/B code must not fail if B isn't present.
796 */
797 if (!reg) {
798 return (AE_OK);
799 }
800
801 /* Get a local copy of the address. Handles possible alignment issues */
802
Len Brown4be44fc2005-08-05 00:44:28 -0400803 ACPI_MOVE_64_TO_64(&address, &reg->address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (!address) {
805 return (AE_OK);
806 }
807
808 /*
809 * Two address spaces supported: Memory or IO.
810 * PCI_Config is not supported here because the GAS struct is insufficient
811 */
812 switch (reg->address_space_id) {
813 case ACPI_ADR_SPACE_SYSTEM_MEMORY:
814
Len Brown4be44fc2005-08-05 00:44:28 -0400815 status = acpi_os_write_memory((acpi_physical_address) address,
816 value, width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 break;
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 case ACPI_ADR_SPACE_SYSTEM_IO:
820
Len Brown4be44fc2005-08-05 00:44:28 -0400821 status = acpi_os_write_port((acpi_io_address) address,
822 value, width);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 break;
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 default:
Bob Mooreb8e4d892006-01-27 16:43:00 -0500826 ACPI_ERROR((AE_INFO,
827 "Unsupported address space: %X",
828 reg->address_space_id));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 return (AE_BAD_PARAMETER);
830 }
831
Len Brown4be44fc2005-08-05 00:44:28 -0400832 ACPI_DEBUG_PRINT((ACPI_DB_IO,
833 "Wrote: %8.8X width %2d to %8.8X%8.8X (%s)\n",
834 value, width,
835 ACPI_FORMAT_UINT64(address),
836 acpi_ut_get_region_name(reg->address_space_id)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 return (status);
839}