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