Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame^] | 1 | // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /****************************************************************************** |
| 3 | * |
| 4 | * Module Name: exfldio - Aml Field I/O |
| 5 | * |
Bob Moore | da6f832 | 2018-01-04 10:06:38 -0800 | [diff] [blame] | 6 | * Copyright (C) 2000 - 2018, Intel Corp. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * |
Erik Schmauss | 9585763 | 2018-03-14 16:13:07 -0700 | [diff] [blame^] | 8 | *****************************************************************************/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <acpi/acpi.h> |
Len Brown | e2f7a77 | 2009-01-09 00:30:03 -0500 | [diff] [blame] | 11 | #include "accommon.h" |
| 12 | #include "acinterp.h" |
| 13 | #include "amlcode.h" |
| 14 | #include "acevents.h" |
| 15 | #include "acdispat.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #define _COMPONENT ACPI_EXECUTER |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 18 | ACPI_MODULE_NAME("exfldio") |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 20 | /* Local prototypes */ |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 21 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 22 | acpi_ex_field_datum_io(union acpi_operand_object *obj_desc, |
Lv Zheng | 1f86e8c | 2012-10-31 02:25:45 +0000 | [diff] [blame] | 23 | u32 field_datum_byte_offset, u64 *value, u32 read_write); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 24 | |
| 25 | static u8 |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 26 | acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value); |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 27 | |
| 28 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 29 | acpi_ex_setup_region(union acpi_operand_object *obj_desc, |
| 30 | u32 field_datum_byte_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | /******************************************************************************* |
| 33 | * |
| 34 | * FUNCTION: acpi_ex_setup_region |
| 35 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 36 | * PARAMETERS: obj_desc - Field to be read or written |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | * field_datum_byte_offset - Byte offset of this datum within the |
| 38 | * parent field |
| 39 | * |
| 40 | * RETURN: Status |
| 41 | * |
| 42 | * DESCRIPTION: Common processing for acpi_ex_extract_from_field and |
| 43 | * acpi_ex_insert_into_field. Initialize the Region if necessary and |
| 44 | * validate the request. |
| 45 | * |
| 46 | ******************************************************************************/ |
| 47 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 48 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 49 | acpi_ex_setup_region(union acpi_operand_object *obj_desc, |
| 50 | u32 field_datum_byte_offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 52 | acpi_status status = AE_OK; |
| 53 | union acpi_operand_object *rgn_desc; |
Bob Moore | ec46366 | 2011-11-30 09:35:05 +0800 | [diff] [blame] | 54 | u8 space_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 56 | ACPI_FUNCTION_TRACE_U32(ex_setup_region, field_datum_byte_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | rgn_desc = obj_desc->common_field.region_obj; |
| 59 | |
| 60 | /* We must have a valid region */ |
| 61 | |
Bob Moore | 3371c19 | 2009-02-18 14:44:03 +0800 | [diff] [blame] | 62 | if (rgn_desc->common.type != ACPI_TYPE_REGION) { |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 63 | ACPI_ERROR((AE_INFO, "Needed Region, found type 0x%X (%s)", |
Bob Moore | 3371c19 | 2009-02-18 14:44:03 +0800 | [diff] [blame] | 64 | rgn_desc->common.type, |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 65 | acpi_ut_get_object_type_name(rgn_desc))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 67 | return_ACPI_STATUS(AE_AML_OPERAND_TYPE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | } |
| 69 | |
Bob Moore | ec46366 | 2011-11-30 09:35:05 +0800 | [diff] [blame] | 70 | space_id = rgn_desc->region.space_id; |
| 71 | |
| 72 | /* Validate the Space ID */ |
| 73 | |
| 74 | if (!acpi_is_valid_space_id(space_id)) { |
| 75 | ACPI_ERROR((AE_INFO, |
| 76 | "Invalid/unknown Address Space ID: 0x%2.2X", |
| 77 | space_id)); |
| 78 | return_ACPI_STATUS(AE_AML_INVALID_SPACE_ID); |
| 79 | } |
| 80 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | /* |
| 82 | * If the Region Address and Length have not been previously evaluated, |
| 83 | * evaluate them now and save the results. |
| 84 | */ |
| 85 | if (!(rgn_desc->common.flags & AOPOBJ_DATA_VALID)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 86 | status = acpi_ds_get_region_arguments(rgn_desc); |
| 87 | if (ACPI_FAILURE(status)) { |
| 88 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | } |
| 90 | } |
| 91 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 92 | /* |
Bob Moore | 2da120b | 2011-11-16 14:14:32 +0800 | [diff] [blame] | 93 | * Exit now for SMBus, GSBus or IPMI address space, it has a non-linear |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 94 | * address space and the request cannot be directly validated |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 95 | */ |
Bob Moore | ec46366 | 2011-11-30 09:35:05 +0800 | [diff] [blame] | 96 | if (space_id == ACPI_ADR_SPACE_SMBUS || |
Bob Moore | 2da120b | 2011-11-16 14:14:32 +0800 | [diff] [blame] | 97 | space_id == ACPI_ADR_SPACE_GSBUS || |
Bob Moore | ec46366 | 2011-11-30 09:35:05 +0800 | [diff] [blame] | 98 | space_id == ACPI_ADR_SPACE_IPMI) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 99 | |
Lin Ming | 6557a49 | 2009-06-24 11:32:04 +0800 | [diff] [blame] | 100 | /* SMBus or IPMI has a non-linear address space */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 102 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | #ifdef ACPI_UNDER_DEVELOPMENT |
| 105 | /* |
| 106 | * If the Field access is any_acc, we can now compute the optimal |
| 107 | * access (because we know know the length of the parent region) |
| 108 | */ |
| 109 | if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 110 | if (ACPI_FAILURE(status)) { |
| 111 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | } |
| 113 | } |
| 114 | #endif |
| 115 | |
| 116 | /* |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 117 | * Validate the request. The entire request from the byte offset for a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | * length of one field datum (access width) must fit within the region. |
| 119 | * (Region length is specified in bytes) |
| 120 | */ |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 121 | if (rgn_desc->region.length < |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 122 | (obj_desc->common_field.base_byte_offset + field_datum_byte_offset + |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 123 | obj_desc->common_field.access_byte_width)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | if (acpi_gbl_enable_interpreter_slack) { |
| 125 | /* |
| 126 | * Slack mode only: We will go ahead and allow access to this |
| 127 | * field if it is within the region length rounded up to the next |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 128 | * access width boundary. acpi_size cast for 64-bit compile. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 130 | if (ACPI_ROUND_UP(rgn_desc->region.length, |
| 131 | obj_desc->common_field. |
| 132 | access_byte_width) >= |
Lv Zheng | f5c1e1c | 2016-05-05 12:57:53 +0800 | [diff] [blame] | 133 | ((acpi_size)obj_desc->common_field. |
Bob Moore | 67a119f | 2008-06-10 13:42:13 +0800 | [diff] [blame] | 134 | base_byte_offset + |
| 135 | obj_desc->common_field.access_byte_width + |
| 136 | field_datum_byte_offset)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 137 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
| 139 | } |
| 140 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 141 | if (rgn_desc->region.length < |
| 142 | obj_desc->common_field.access_byte_width) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | /* |
| 144 | * This is the case where the access_type (acc_word, etc.) is wider |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 145 | * than the region itself. For example, a region of length one |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | * byte, and a field with Dword access specified. |
| 147 | */ |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 148 | ACPI_ERROR((AE_INFO, |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 149 | "Field [%4.4s] access width (%u bytes) " |
| 150 | "too large for region [%4.4s] (length %u)", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 151 | acpi_ut_get_node_name(obj_desc-> |
| 152 | common_field.node), |
| 153 | obj_desc->common_field.access_byte_width, |
| 154 | acpi_ut_get_node_name(rgn_desc->region. |
| 155 | node), |
| 156 | rgn_desc->region.length)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | /* |
| 160 | * Offset rounded up to next multiple of field width |
| 161 | * exceeds region length, indicate an error |
| 162 | */ |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 163 | ACPI_ERROR((AE_INFO, |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 164 | "Field [%4.4s] Base+Offset+Width %u+%u+%u " |
| 165 | "is beyond end of region [%4.4s] (length %u)", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 166 | acpi_ut_get_node_name(obj_desc->common_field.node), |
| 167 | obj_desc->common_field.base_byte_offset, |
| 168 | field_datum_byte_offset, |
| 169 | obj_desc->common_field.access_byte_width, |
| 170 | acpi_ut_get_node_name(rgn_desc->region.node), |
| 171 | rgn_desc->region.length)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 173 | return_ACPI_STATUS(AE_AML_REGION_LIMIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | } |
| 175 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 176 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
| 178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | /******************************************************************************* |
| 180 | * |
| 181 | * FUNCTION: acpi_ex_access_region |
| 182 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 183 | * PARAMETERS: obj_desc - Field to be read |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | * field_datum_byte_offset - Byte offset of this datum within the |
| 185 | * parent field |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 186 | * value - Where to store value (must at least |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 187 | * 64 bits) |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 188 | * function - Read or Write flag plus other region- |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | * dependent flags |
| 190 | * |
| 191 | * RETURN: Status |
| 192 | * |
| 193 | * DESCRIPTION: Read or Write a single field datum to an Operation Region. |
| 194 | * |
| 195 | ******************************************************************************/ |
| 196 | |
| 197 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 198 | acpi_ex_access_region(union acpi_operand_object *obj_desc, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 199 | u32 field_datum_byte_offset, u64 *value, u32 function) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 201 | acpi_status status; |
| 202 | union acpi_operand_object *rgn_desc; |
Bob Moore | f5407af | 2009-05-21 10:56:52 +0800 | [diff] [blame] | 203 | u32 region_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 205 | ACPI_FUNCTION_TRACE(ex_access_region); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | |
| 207 | /* |
| 208 | * Ensure that the region operands are fully evaluated and verify |
| 209 | * the validity of the request |
| 210 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 211 | status = acpi_ex_setup_region(obj_desc, field_datum_byte_offset); |
| 212 | if (ACPI_FAILURE(status)) { |
| 213 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | /* |
| 217 | * The physical address of this field datum is: |
| 218 | * |
| 219 | * 1) The base of the region, plus |
| 220 | * 2) The base offset of the field, plus |
| 221 | * 3) The current offset into the field |
| 222 | */ |
| 223 | rgn_desc = obj_desc->common_field.region_obj; |
Bob Moore | f5407af | 2009-05-21 10:56:52 +0800 | [diff] [blame] | 224 | region_offset = |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 225 | obj_desc->common_field.base_byte_offset + field_datum_byte_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
| 227 | if ((function & ACPI_IO_MASK) == ACPI_READ) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 228 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, "[READ]")); |
| 229 | } else { |
| 230 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, "[WRITE]")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | } |
| 232 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 233 | ACPI_DEBUG_PRINT_RAW((ACPI_DB_BFIELD, |
Lv Zheng | cc2080b | 2015-04-13 11:48:46 +0800 | [diff] [blame] | 234 | " Region [%s:%X], Width %X, ByteBase %X, Offset %X at %8.8X%8.8X\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 235 | acpi_ut_get_region_name(rgn_desc->region. |
| 236 | space_id), |
| 237 | rgn_desc->region.space_id, |
| 238 | obj_desc->common_field.access_byte_width, |
| 239 | obj_desc->common_field.base_byte_offset, |
Lv Zheng | cc2080b | 2015-04-13 11:48:46 +0800 | [diff] [blame] | 240 | field_datum_byte_offset, |
| 241 | ACPI_FORMAT_UINT64(rgn_desc->region.address + |
| 242 | region_offset))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | |
| 244 | /* Invoke the appropriate address_space/op_region handler */ |
| 245 | |
Bob Moore | 9ce8178 | 2011-11-16 13:39:07 +0800 | [diff] [blame] | 246 | status = acpi_ev_address_space_dispatch(rgn_desc, obj_desc, |
| 247 | function, region_offset, |
| 248 | ACPI_MUL_8(obj_desc-> |
| 249 | common_field. |
| 250 | access_byte_width), |
| 251 | value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 253 | if (ACPI_FAILURE(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | if (status == AE_NOT_IMPLEMENTED) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 255 | ACPI_ERROR((AE_INFO, |
Bob Moore | 1b74dfb | 2011-02-14 15:52:56 +0800 | [diff] [blame] | 256 | "Region %s (ID=%u) not implemented", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 257 | acpi_ut_get_region_name(rgn_desc->region. |
| 258 | space_id), |
| 259 | rgn_desc->region.space_id)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 260 | } else if (status == AE_NOT_EXIST) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 261 | ACPI_ERROR((AE_INFO, |
Bob Moore | 1b74dfb | 2011-02-14 15:52:56 +0800 | [diff] [blame] | 262 | "Region %s (ID=%u) has no handler", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 263 | acpi_ut_get_region_name(rgn_desc->region. |
| 264 | space_id), |
| 265 | rgn_desc->region.space_id)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | } |
| 267 | } |
| 268 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 269 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | } |
| 271 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | /******************************************************************************* |
| 273 | * |
| 274 | * FUNCTION: acpi_ex_register_overflow |
| 275 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 276 | * PARAMETERS: obj_desc - Register(Field) to be written |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 277 | * value - Value to be stored |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | * |
| 279 | * RETURN: TRUE if value overflows the field, FALSE otherwise |
| 280 | * |
| 281 | * DESCRIPTION: Check if a value is out of range of the field being written. |
| 282 | * Used to check if the values written to Index and Bank registers |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 283 | * are out of range. Normally, the value is simply truncated |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | * to fit the field, but this case is most likely a serious |
| 285 | * coding error in the ASL. |
| 286 | * |
| 287 | ******************************************************************************/ |
| 288 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 289 | static u8 |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 290 | acpi_ex_register_overflow(union acpi_operand_object *obj_desc, u64 value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | { |
| 292 | |
| 293 | if (obj_desc->common_field.bit_length >= ACPI_INTEGER_BIT_SIZE) { |
| 294 | /* |
| 295 | * The field is large enough to hold the maximum integer, so we can |
| 296 | * never overflow it. |
| 297 | */ |
| 298 | return (FALSE); |
| 299 | } |
| 300 | |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 301 | if (value >= ((u64) 1 << obj_desc->common_field.bit_length)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | /* |
| 303 | * The Value is larger than the maximum value that can fit into |
| 304 | * the register. |
| 305 | */ |
Bob Moore | 46dfb09 | 2011-11-28 10:10:10 +0800 | [diff] [blame] | 306 | ACPI_ERROR((AE_INFO, |
| 307 | "Index value 0x%8.8X%8.8X overflows field width 0x%X", |
| 308 | ACPI_FORMAT_UINT64(value), |
| 309 | obj_desc->common_field.bit_length)); |
| 310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | return (TRUE); |
| 312 | } |
| 313 | |
| 314 | /* The Value will fit into the field with no truncation */ |
| 315 | |
| 316 | return (FALSE); |
| 317 | } |
| 318 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | /******************************************************************************* |
| 320 | * |
| 321 | * FUNCTION: acpi_ex_field_datum_io |
| 322 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 323 | * PARAMETERS: obj_desc - Field to be read |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | * field_datum_byte_offset - Byte offset of this datum within the |
| 325 | * parent field |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 326 | * value - Where to store value (must be 64 bits) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | * read_write - Read or Write flag |
| 328 | * |
| 329 | * RETURN: Status |
| 330 | * |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 331 | * DESCRIPTION: Read or Write a single datum of a field. The field_type is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | * demultiplexed here to handle the different types of fields |
| 333 | * (buffer_field, region_field, index_field, bank_field) |
| 334 | * |
| 335 | ******************************************************************************/ |
| 336 | |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 337 | static acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 338 | acpi_ex_field_datum_io(union acpi_operand_object *obj_desc, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 339 | u32 field_datum_byte_offset, u64 *value, u32 read_write) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 341 | acpi_status status; |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 342 | u64 local_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 344 | ACPI_FUNCTION_TRACE_U32(ex_field_datum_io, field_datum_byte_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | |
| 346 | if (read_write == ACPI_READ) { |
| 347 | if (!value) { |
| 348 | local_value = 0; |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 349 | |
| 350 | /* To support reads without saving return value */ |
| 351 | value = &local_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | } |
| 353 | |
| 354 | /* Clear the entire return buffer first, [Very Important!] */ |
| 355 | |
| 356 | *value = 0; |
| 357 | } |
| 358 | |
| 359 | /* |
| 360 | * The four types of fields are: |
| 361 | * |
| 362 | * buffer_field - Read/write from/to a Buffer |
| 363 | * region_field - Read/write from/to a Operation Region. |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 364 | * bank_field - Write to a Bank Register, then read/write from/to an |
| 365 | * operation_region |
| 366 | * index_field - Write to an Index Register, then read/write from/to a |
| 367 | * Data Register |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | */ |
Bob Moore | 3371c19 | 2009-02-18 14:44:03 +0800 | [diff] [blame] | 369 | switch (obj_desc->common.type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | case ACPI_TYPE_BUFFER_FIELD: |
| 371 | /* |
| 372 | * If the buffer_field arguments have not been previously evaluated, |
| 373 | * evaluate them now and save the results. |
| 374 | */ |
| 375 | if (!(obj_desc->common.flags & AOPOBJ_DATA_VALID)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 376 | status = acpi_ds_get_buffer_field_arguments(obj_desc); |
| 377 | if (ACPI_FAILURE(status)) { |
| 378 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | } |
| 380 | } |
| 381 | |
| 382 | if (read_write == ACPI_READ) { |
| 383 | /* |
| 384 | * Copy the data from the source buffer. |
| 385 | * Length is the field width in bytes. |
| 386 | */ |
Bob Moore | 4fa4616 | 2015-07-01 14:45:11 +0800 | [diff] [blame] | 387 | memcpy(value, |
| 388 | (obj_desc->buffer_field.buffer_obj)->buffer. |
| 389 | pointer + |
| 390 | obj_desc->buffer_field.base_byte_offset + |
| 391 | field_datum_byte_offset, |
| 392 | obj_desc->common_field.access_byte_width); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 393 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | /* |
| 395 | * Copy the data to the target buffer. |
| 396 | * Length is the field width in bytes. |
| 397 | */ |
Bob Moore | 4fa4616 | 2015-07-01 14:45:11 +0800 | [diff] [blame] | 398 | memcpy((obj_desc->buffer_field.buffer_obj)->buffer. |
| 399 | pointer + |
| 400 | obj_desc->buffer_field.base_byte_offset + |
| 401 | field_datum_byte_offset, value, |
| 402 | obj_desc->common_field.access_byte_width); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | status = AE_OK; |
| 406 | break; |
| 407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | case ACPI_TYPE_LOCAL_BANK_FIELD: |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 409 | /* |
| 410 | * Ensure that the bank_value is not beyond the capacity of |
| 411 | * the register |
| 412 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 413 | if (acpi_ex_register_overflow(obj_desc->bank_field.bank_obj, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 414 | (u64) obj_desc->bank_field. |
| 415 | value)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 416 | return_ACPI_STATUS(AE_AML_REGISTER_LIMIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | } |
| 418 | |
| 419 | /* |
| 420 | * For bank_fields, we must write the bank_value to the bank_register |
| 421 | * (itself a region_field) before we can access the data. |
| 422 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 423 | status = |
| 424 | acpi_ex_insert_into_field(obj_desc->bank_field.bank_obj, |
| 425 | &obj_desc->bank_field.value, |
| 426 | sizeof(obj_desc->bank_field. |
| 427 | value)); |
| 428 | if (ACPI_FAILURE(status)) { |
| 429 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | } |
| 431 | |
| 432 | /* |
| 433 | * Now that the Bank has been selected, fall through to the |
| 434 | * region_field case and write the datum to the Operation Region |
| 435 | */ |
| 436 | |
| 437 | /*lint -fallthrough */ |
| 438 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | case ACPI_TYPE_LOCAL_REGION_FIELD: |
| 440 | /* |
| 441 | * For simple region_fields, we just directly access the owning |
| 442 | * Operation Region. |
| 443 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 444 | status = |
| 445 | acpi_ex_access_region(obj_desc, field_datum_byte_offset, |
| 446 | value, read_write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | break; |
| 448 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | case ACPI_TYPE_LOCAL_INDEX_FIELD: |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 450 | /* |
| 451 | * Ensure that the index_value is not beyond the capacity of |
| 452 | * the register |
| 453 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 454 | if (acpi_ex_register_overflow(obj_desc->index_field.index_obj, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 455 | (u64) obj_desc->index_field. |
| 456 | value)) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 457 | return_ACPI_STATUS(AE_AML_REGISTER_LIMIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | /* Write the index value to the index_register (itself a region_field) */ |
| 461 | |
| 462 | field_datum_byte_offset += obj_desc->index_field.value; |
| 463 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 464 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
| 465 | "Write to Index Register: Value %8.8X\n", |
| 466 | field_datum_byte_offset)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 468 | status = |
| 469 | acpi_ex_insert_into_field(obj_desc->index_field.index_obj, |
| 470 | &field_datum_byte_offset, |
| 471 | sizeof(field_datum_byte_offset)); |
| 472 | if (ACPI_FAILURE(status)) { |
| 473 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | } |
| 475 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | if (read_write == ACPI_READ) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 477 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | /* Read the datum from the data_register */ |
| 479 | |
Bob Moore | e9a8c6a | 2008-11-12 15:16:49 +0800 | [diff] [blame] | 480 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
| 481 | "Read from Data Register\n")); |
| 482 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 483 | status = |
| 484 | acpi_ex_extract_from_field(obj_desc->index_field. |
| 485 | data_obj, value, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 486 | sizeof(u64)); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 487 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | /* Write the datum to the data_register */ |
| 489 | |
Bob Moore | e9a8c6a | 2008-11-12 15:16:49 +0800 | [diff] [blame] | 490 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
| 491 | "Write to Data Register: Value %8.8X%8.8X\n", |
| 492 | ACPI_FORMAT_UINT64(*value))); |
| 493 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 494 | status = |
| 495 | acpi_ex_insert_into_field(obj_desc->index_field. |
| 496 | data_obj, value, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 497 | sizeof(u64)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | } |
| 499 | break; |
| 500 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | default: |
| 502 | |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 503 | ACPI_ERROR((AE_INFO, "Wrong object type in field I/O %u", |
Bob Moore | 3371c19 | 2009-02-18 14:44:03 +0800 | [diff] [blame] | 504 | obj_desc->common.type)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | status = AE_AML_INTERNAL; |
| 506 | break; |
| 507 | } |
| 508 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 509 | if (ACPI_SUCCESS(status)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | if (read_write == ACPI_READ) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 511 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b27d659 | 2010-05-26 11:47:13 +0800 | [diff] [blame] | 512 | "Value Read %8.8X%8.8X, Width %u\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 513 | ACPI_FORMAT_UINT64(*value), |
| 514 | obj_desc->common_field. |
| 515 | access_byte_width)); |
| 516 | } else { |
| 517 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | b27d659 | 2010-05-26 11:47:13 +0800 | [diff] [blame] | 518 | "Value Written %8.8X%8.8X, Width %u\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 519 | ACPI_FORMAT_UINT64(*value), |
| 520 | obj_desc->common_field. |
| 521 | access_byte_width)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | } |
| 523 | } |
| 524 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 525 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | } |
| 527 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | /******************************************************************************* |
| 529 | * |
| 530 | * FUNCTION: acpi_ex_write_with_update_rule |
| 531 | * |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 532 | * PARAMETERS: obj_desc - Field to be written |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 533 | * mask - bitmask within field datum |
Robert Moore | 44f6c01 | 2005-04-18 22:49:35 -0400 | [diff] [blame] | 534 | * field_value - Value to write |
| 535 | * field_datum_byte_offset - Offset of datum within field |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | * |
| 537 | * RETURN: Status |
| 538 | * |
| 539 | * DESCRIPTION: Apply the field update rule to a field write |
| 540 | * |
| 541 | ******************************************************************************/ |
| 542 | |
| 543 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 544 | acpi_ex_write_with_update_rule(union acpi_operand_object *obj_desc, |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 545 | u64 mask, |
| 546 | u64 field_value, u32 field_datum_byte_offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 548 | acpi_status status = AE_OK; |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 549 | u64 merged_value; |
| 550 | u64 current_value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 552 | ACPI_FUNCTION_TRACE_U32(ex_write_with_update_rule, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | |
| 554 | /* Start with the new bits */ |
| 555 | |
| 556 | merged_value = field_value; |
| 557 | |
| 558 | /* If the mask is all ones, we don't need to worry about the update rule */ |
| 559 | |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 560 | if (mask != ACPI_UINT64_MAX) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 561 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | /* Decode the update rule */ |
| 563 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 564 | switch (obj_desc->common_field. |
| 565 | field_flags & AML_FIELD_UPDATE_RULE_MASK) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | case AML_FIELD_UPDATE_PRESERVE: |
| 567 | /* |
| 568 | * Check if update rule needs to be applied (not if mask is all |
| 569 | * ones) The left shift drops the bits we want to ignore. |
| 570 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 571 | if ((~mask << (ACPI_MUL_8(sizeof(mask)) - |
| 572 | ACPI_MUL_8(obj_desc->common_field. |
| 573 | access_byte_width))) != 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | /* |
| 575 | * Read the current contents of the byte/word/dword containing |
| 576 | * the field, and merge with the new field value. |
| 577 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 578 | status = |
| 579 | acpi_ex_field_datum_io(obj_desc, |
| 580 | field_datum_byte_offset, |
| 581 | ¤t_value, |
| 582 | ACPI_READ); |
| 583 | if (ACPI_FAILURE(status)) { |
| 584 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | } |
| 586 | |
| 587 | merged_value |= (current_value & ~mask); |
| 588 | } |
| 589 | break; |
| 590 | |
| 591 | case AML_FIELD_UPDATE_WRITE_AS_ONES: |
| 592 | |
| 593 | /* Set positions outside the field to all ones */ |
| 594 | |
| 595 | merged_value |= ~mask; |
| 596 | break; |
| 597 | |
| 598 | case AML_FIELD_UPDATE_WRITE_AS_ZEROS: |
| 599 | |
| 600 | /* Set positions outside the field to all zeros */ |
| 601 | |
| 602 | merged_value &= mask; |
| 603 | break; |
| 604 | |
| 605 | default: |
| 606 | |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 607 | ACPI_ERROR((AE_INFO, |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 608 | "Unknown UpdateRule value: 0x%X", |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 609 | (obj_desc->common_field.field_flags & |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 610 | AML_FIELD_UPDATE_RULE_MASK))); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 611 | return_ACPI_STATUS(AE_AML_OPERAND_VALUE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | } |
| 613 | } |
| 614 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 615 | ACPI_DEBUG_PRINT((ACPI_DB_BFIELD, |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 616 | "Mask %8.8X%8.8X, DatumOffset %X, Width %X, " |
| 617 | "Value %8.8X%8.8X, MergedValue %8.8X%8.8X\n", |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 618 | ACPI_FORMAT_UINT64(mask), |
| 619 | field_datum_byte_offset, |
| 620 | obj_desc->common_field.access_byte_width, |
| 621 | ACPI_FORMAT_UINT64(field_value), |
| 622 | ACPI_FORMAT_UINT64(merged_value))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | |
| 624 | /* Write the merged value */ |
| 625 | |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 626 | status = |
| 627 | acpi_ex_field_datum_io(obj_desc, field_datum_byte_offset, |
| 628 | &merged_value, ACPI_WRITE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 630 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 631 | } |
| 632 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | /******************************************************************************* |
| 634 | * |
| 635 | * FUNCTION: acpi_ex_extract_from_field |
| 636 | * |
| 637 | * PARAMETERS: obj_desc - Field to be read |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 638 | * buffer - Where to store the field data |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | * buffer_length - Length of Buffer |
| 640 | * |
| 641 | * RETURN: Status |
| 642 | * |
| 643 | * DESCRIPTION: Retrieve the current value of the given field |
| 644 | * |
| 645 | ******************************************************************************/ |
| 646 | |
| 647 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 648 | acpi_ex_extract_from_field(union acpi_operand_object *obj_desc, |
| 649 | void *buffer, u32 buffer_length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 651 | acpi_status status; |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 652 | u64 raw_datum; |
| 653 | u64 merged_datum; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 654 | u32 field_offset = 0; |
| 655 | u32 buffer_offset = 0; |
| 656 | u32 buffer_tail_bits; |
| 657 | u32 datum_count; |
| 658 | u32 field_datum_count; |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 659 | u32 access_bit_width; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 660 | u32 i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 662 | ACPI_FUNCTION_TRACE(ex_extract_from_field); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | |
| 664 | /* Validate target buffer and clear it */ |
| 665 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 666 | if (buffer_length < |
| 667 | ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->common_field.bit_length)) { |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 668 | ACPI_ERROR((AE_INFO, |
Bob Moore | f6a22b0 | 2010-03-05 17:56:40 +0800 | [diff] [blame] | 669 | "Field size %u (bits) is too large for buffer (%u)", |
Bob Moore | b8e4d89 | 2006-01-27 16:43:00 -0500 | [diff] [blame] | 670 | obj_desc->common_field.bit_length, buffer_length)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 672 | return_ACPI_STATUS(AE_BUFFER_OVERFLOW); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | } |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 674 | |
Bob Moore | 4fa4616 | 2015-07-01 14:45:11 +0800 | [diff] [blame] | 675 | memset(buffer, 0, buffer_length); |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 676 | access_bit_width = ACPI_MUL_8(obj_desc->common_field.access_byte_width); |
| 677 | |
| 678 | /* Handle the simple case here */ |
| 679 | |
| 680 | if ((obj_desc->common_field.start_field_bit_offset == 0) && |
| 681 | (obj_desc->common_field.bit_length == access_bit_width)) { |
Bob Moore | 61388f9 | 2013-05-08 04:01:15 +0000 | [diff] [blame] | 682 | if (buffer_length >= sizeof(u64)) { |
| 683 | status = |
| 684 | acpi_ex_field_datum_io(obj_desc, 0, buffer, |
| 685 | ACPI_READ); |
| 686 | } else { |
| 687 | /* Use raw_datum (u64) to handle buffers < 64 bits */ |
| 688 | |
| 689 | status = |
| 690 | acpi_ex_field_datum_io(obj_desc, 0, &raw_datum, |
| 691 | ACPI_READ); |
Bob Moore | 4fa4616 | 2015-07-01 14:45:11 +0800 | [diff] [blame] | 692 | memcpy(buffer, &raw_datum, buffer_length); |
Bob Moore | 61388f9 | 2013-05-08 04:01:15 +0000 | [diff] [blame] | 693 | } |
| 694 | |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 695 | return_ACPI_STATUS(status); |
| 696 | } |
| 697 | |
| 698 | /* TBD: Move to common setup code */ |
| 699 | |
| 700 | /* Field algorithm is limited to sizeof(u64), truncate if needed */ |
| 701 | |
| 702 | if (obj_desc->common_field.access_byte_width > sizeof(u64)) { |
| 703 | obj_desc->common_field.access_byte_width = sizeof(u64); |
| 704 | access_bit_width = sizeof(u64) * 8; |
| 705 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | |
| 707 | /* Compute the number of datums (access width data items) */ |
| 708 | |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 709 | datum_count = |
| 710 | ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length, |
| 711 | access_bit_width); |
| 712 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 713 | field_datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length + |
| 714 | obj_desc->common_field. |
| 715 | start_field_bit_offset, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 716 | access_bit_width); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | |
| 718 | /* Priming read from the field */ |
| 719 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 720 | status = |
| 721 | acpi_ex_field_datum_io(obj_desc, field_offset, &raw_datum, |
| 722 | ACPI_READ); |
| 723 | if (ACPI_FAILURE(status)) { |
| 724 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 726 | merged_datum = |
| 727 | raw_datum >> obj_desc->common_field.start_field_bit_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | |
| 729 | /* Read the rest of the field */ |
| 730 | |
| 731 | for (i = 1; i < field_datum_count; i++) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 732 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | /* Get next input datum from the field */ |
| 734 | |
| 735 | field_offset += obj_desc->common_field.access_byte_width; |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 736 | status = |
| 737 | acpi_ex_field_datum_io(obj_desc, field_offset, &raw_datum, |
| 738 | ACPI_READ); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 739 | if (ACPI_FAILURE(status)) { |
| 740 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | } |
| 742 | |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 743 | /* |
| 744 | * Merge with previous datum if necessary. |
| 745 | * |
| 746 | * Note: Before the shift, check if the shift value will be larger than |
| 747 | * the integer size. If so, there is no need to perform the operation. |
| 748 | * This avoids the differences in behavior between different compilers |
| 749 | * concerning shift values larger than the target data width. |
| 750 | */ |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 751 | if (access_bit_width - |
| 752 | obj_desc->common_field.start_field_bit_offset < |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 753 | ACPI_INTEGER_BIT_SIZE) { |
| 754 | merged_datum |= |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 755 | raw_datum << (access_bit_width - |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 756 | obj_desc->common_field. |
| 757 | start_field_bit_offset); |
| 758 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | |
| 760 | if (i == datum_count) { |
| 761 | break; |
| 762 | } |
| 763 | |
| 764 | /* Write merged datum to target buffer */ |
| 765 | |
Bob Moore | 4fa4616 | 2015-07-01 14:45:11 +0800 | [diff] [blame] | 766 | memcpy(((char *)buffer) + buffer_offset, &merged_datum, |
| 767 | ACPI_MIN(obj_desc->common_field.access_byte_width, |
| 768 | buffer_length - buffer_offset)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | |
| 770 | buffer_offset += obj_desc->common_field.access_byte_width; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 771 | merged_datum = |
| 772 | raw_datum >> obj_desc->common_field.start_field_bit_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | } |
| 774 | |
| 775 | /* Mask off any extra bits in the last datum */ |
| 776 | |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 777 | buffer_tail_bits = obj_desc->common_field.bit_length % access_bit_width; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 778 | if (buffer_tail_bits) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 779 | merged_datum &= ACPI_MASK_BITS_ABOVE(buffer_tail_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | } |
| 781 | |
| 782 | /* Write the last datum to the buffer */ |
| 783 | |
Bob Moore | 4fa4616 | 2015-07-01 14:45:11 +0800 | [diff] [blame] | 784 | memcpy(((char *)buffer) + buffer_offset, &merged_datum, |
| 785 | ACPI_MIN(obj_desc->common_field.access_byte_width, |
| 786 | buffer_length - buffer_offset)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 788 | return_ACPI_STATUS(AE_OK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | } |
| 790 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | /******************************************************************************* |
| 792 | * |
| 793 | * FUNCTION: acpi_ex_insert_into_field |
| 794 | * |
| 795 | * PARAMETERS: obj_desc - Field to be written |
Bob Moore | ba494be | 2012-07-12 09:40:10 +0800 | [diff] [blame] | 796 | * buffer - Data to be written |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | * buffer_length - Length of Buffer |
| 798 | * |
| 799 | * RETURN: Status |
| 800 | * |
| 801 | * DESCRIPTION: Store the Buffer contents into the given field |
| 802 | * |
| 803 | ******************************************************************************/ |
| 804 | |
| 805 | acpi_status |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 806 | acpi_ex_insert_into_field(union acpi_operand_object *obj_desc, |
| 807 | void *buffer, u32 buffer_length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | { |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 809 | void *new_buffer; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 810 | acpi_status status; |
Bob Moore | 5df7e6c | 2010-01-21 10:06:32 +0800 | [diff] [blame] | 811 | u64 mask; |
| 812 | u64 width_mask; |
| 813 | u64 merged_datum; |
| 814 | u64 raw_datum = 0; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 815 | u32 field_offset = 0; |
| 816 | u32 buffer_offset = 0; |
| 817 | u32 buffer_tail_bits; |
| 818 | u32 datum_count; |
| 819 | u32 field_datum_count; |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 820 | u32 access_bit_width; |
Bob Moore | 9aa6169 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 821 | u32 required_length; |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 822 | u32 i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | |
Bob Moore | b229cf9 | 2006-04-21 17:15:00 -0400 | [diff] [blame] | 824 | ACPI_FUNCTION_TRACE(ex_insert_into_field); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | |
| 826 | /* Validate input buffer */ |
| 827 | |
Bob Moore | 9aa6169 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 828 | new_buffer = NULL; |
| 829 | required_length = |
| 830 | ACPI_ROUND_BITS_UP_TO_BYTES(obj_desc->common_field.bit_length); |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 831 | |
Bob Moore | 9aa6169 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 832 | /* |
| 833 | * We must have a buffer that is at least as long as the field |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 834 | * we are writing to. This is because individual fields are |
Bob Moore | 9aa6169 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 835 | * indivisible and partial writes are not supported -- as per |
| 836 | * the ACPI specification. |
| 837 | */ |
| 838 | if (buffer_length < required_length) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | |
Bob Moore | 9aa6169 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 840 | /* We need to create a new buffer */ |
| 841 | |
| 842 | new_buffer = ACPI_ALLOCATE_ZEROED(required_length); |
| 843 | if (!new_buffer) { |
| 844 | return_ACPI_STATUS(AE_NO_MEMORY); |
| 845 | } |
| 846 | |
| 847 | /* |
| 848 | * Copy the original data to the new buffer, starting |
Bob Moore | 73a3090 | 2012-10-31 02:26:55 +0000 | [diff] [blame] | 849 | * at Byte zero. All unused (upper) bytes of the |
Bob Moore | 9aa6169 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 850 | * buffer will be 0. |
| 851 | */ |
Bob Moore | 4fa4616 | 2015-07-01 14:45:11 +0800 | [diff] [blame] | 852 | memcpy((char *)new_buffer, (char *)buffer, buffer_length); |
Bob Moore | 9aa6169 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 853 | buffer = new_buffer; |
| 854 | buffer_length = required_length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | } |
| 856 | |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 857 | /* TBD: Move to common setup code */ |
| 858 | |
| 859 | /* Algo is limited to sizeof(u64), so cut the access_byte_width */ |
| 860 | if (obj_desc->common_field.access_byte_width > sizeof(u64)) { |
| 861 | obj_desc->common_field.access_byte_width = sizeof(u64); |
| 862 | } |
| 863 | |
| 864 | access_bit_width = ACPI_MUL_8(obj_desc->common_field.access_byte_width); |
| 865 | |
Lv Zheng | 9222aa8 | 2016-05-05 12:58:45 +0800 | [diff] [blame] | 866 | /* Create the bitmasks used for bit insertion */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | |
Lv Zheng | 9222aa8 | 2016-05-05 12:58:45 +0800 | [diff] [blame] | 868 | width_mask = ACPI_MASK_BITS_ABOVE_64(access_bit_width); |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 869 | mask = width_mask & |
| 870 | ACPI_MASK_BITS_BELOW(obj_desc->common_field.start_field_bit_offset); |
| 871 | |
| 872 | /* Compute the number of datums (access width data items) */ |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 873 | |
| 874 | datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length, |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 875 | access_bit_width); |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 876 | |
| 877 | field_datum_count = ACPI_ROUND_UP_TO(obj_desc->common_field.bit_length + |
| 878 | obj_desc->common_field. |
| 879 | start_field_bit_offset, |
Bob Moore | 4119532 | 2006-05-26 16:36:00 -0400 | [diff] [blame] | 880 | access_bit_width); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 881 | |
| 882 | /* Get initial Datum from the input buffer */ |
| 883 | |
Bob Moore | 4fa4616 | 2015-07-01 14:45:11 +0800 | [diff] [blame] | 884 | memcpy(&raw_datum, buffer, |
| 885 | ACPI_MIN(obj_desc->common_field.access_byte_width, |
| 886 | buffer_length - buffer_offset)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 888 | merged_datum = |
| 889 | raw_datum << obj_desc->common_field.start_field_bit_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | |
| 891 | /* Write the entire field */ |
| 892 | |
| 893 | for (i = 1; i < field_datum_count; i++) { |
Bob Moore | 52fc0b0 | 2006-10-02 00:00:00 -0400 | [diff] [blame] | 894 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | /* Write merged datum to the target field */ |
| 896 | |
| 897 | merged_datum &= mask; |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 898 | status = |
| 899 | acpi_ex_write_with_update_rule(obj_desc, mask, merged_datum, |
| 900 | field_offset); |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 901 | if (ACPI_FAILURE(status)) { |
Bob Moore | 9aa6169 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 902 | goto exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | } |
| 904 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | field_offset += obj_desc->common_field.access_byte_width; |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 906 | |
| 907 | /* |
| 908 | * Start new output datum by merging with previous input datum |
| 909 | * if necessary. |
| 910 | * |
| 911 | * Note: Before the shift, check if the shift value will be larger than |
| 912 | * the integer size. If so, there is no need to perform the operation. |
| 913 | * This avoids the differences in behavior between different compilers |
| 914 | * concerning shift values larger than the target data width. |
| 915 | */ |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 916 | if ((access_bit_width - |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 917 | obj_desc->common_field.start_field_bit_offset) < |
| 918 | ACPI_INTEGER_BIT_SIZE) { |
| 919 | merged_datum = |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 920 | raw_datum >> (access_bit_width - |
Bob Moore | 967440e3 | 2006-06-23 17:04:00 -0400 | [diff] [blame] | 921 | obj_desc->common_field. |
| 922 | start_field_bit_offset); |
| 923 | } else { |
| 924 | merged_datum = 0; |
| 925 | } |
| 926 | |
Bob Moore | 4c90ece | 2006-06-08 16:29:00 -0400 | [diff] [blame] | 927 | mask = width_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | |
| 929 | if (i == datum_count) { |
| 930 | break; |
| 931 | } |
| 932 | |
| 933 | /* Get the next input datum from the buffer */ |
| 934 | |
| 935 | buffer_offset += obj_desc->common_field.access_byte_width; |
Bob Moore | 4fa4616 | 2015-07-01 14:45:11 +0800 | [diff] [blame] | 936 | memcpy(&raw_datum, ((char *)buffer) + buffer_offset, |
| 937 | ACPI_MIN(obj_desc->common_field.access_byte_width, |
| 938 | buffer_length - buffer_offset)); |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 939 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 940 | merged_datum |= |
| 941 | raw_datum << obj_desc->common_field.start_field_bit_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 942 | } |
| 943 | |
| 944 | /* Mask off any extra bits in the last datum */ |
| 945 | |
| 946 | buffer_tail_bits = (obj_desc->common_field.bit_length + |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 947 | obj_desc->common_field.start_field_bit_offset) % |
Bob Moore | 09387b4 | 2010-08-06 09:09:33 +0800 | [diff] [blame] | 948 | access_bit_width; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | if (buffer_tail_bits) { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 950 | mask &= ACPI_MASK_BITS_ABOVE(buffer_tail_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | } |
| 952 | |
| 953 | /* Write the last datum to the field */ |
| 954 | |
| 955 | merged_datum &= mask; |
Bob Moore | 1fad873 | 2015-12-29 13:54:36 +0800 | [diff] [blame] | 956 | status = |
| 957 | acpi_ex_write_with_update_rule(obj_desc, mask, merged_datum, |
| 958 | field_offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | |
Lv Zheng | 10622bf | 2013-10-29 09:30:02 +0800 | [diff] [blame] | 960 | exit: |
Bob Moore | 9aa6169 | 2008-04-10 19:06:41 +0400 | [diff] [blame] | 961 | /* Free temporary buffer if we used one */ |
| 962 | |
| 963 | if (new_buffer) { |
| 964 | ACPI_FREE(new_buffer); |
| 965 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 966 | return_ACPI_STATUS(status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | } |