Blame view

drivers/acpi/acpica/exoparg3.c 7.86 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
  
  /******************************************************************************
   *
   * Module Name: exoparg3 - AML execution - opcodes with 3 arguments
   *
   *****************************************************************************/
  
  /*
75a44ce00   Len Brown   ACPICA: update In...
9
   * Copyright (C) 2000 - 2008, Intel Corp.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
   * All rights reserved.
   *
   * Redistribution and use in source and binary forms, with or without
   * modification, are permitted provided that the following conditions
   * are met:
   * 1. Redistributions of source code must retain the above copyright
   *    notice, this list of conditions, and the following disclaimer,
   *    without modification.
   * 2. Redistributions in binary form must reproduce at minimum a disclaimer
   *    substantially similar to the "NO WARRANTY" disclaimer below
   *    ("Disclaimer") and any redistribution must be conditioned upon
   *    including a substantially similar Disclaimer requirement for further
   *    binary redistribution.
   * 3. Neither the names of the above-listed copyright holders nor the names
   *    of any contributors may be used to endorse or promote products derived
   *    from this software without specific prior written permission.
   *
   * Alternatively, this software may be distributed under the terms of the
   * GNU General Public License ("GPL") version 2 as published by the Free
   * Software Foundation.
   *
   * NO WARRANTY
   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
   * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
   * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
   * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
   * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
   * POSSIBILITY OF SUCH DAMAGES.
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
44
  #include <acpi/acpi.h>
e2f7a7772   Len Brown   ACPICA: hide priv...
45
46
47
48
  #include "accommon.h"
  #include "acinterp.h"
  #include "acparser.h"
  #include "amlcode.h"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
50
  #define _COMPONENT          ACPI_EXECUTER
4be44fcd3   Len Brown   [ACPI] Lindent al...
51
  ACPI_MODULE_NAME("exoparg3")
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
  
  /*!
   * Naming convention for AML interpreter execution routines.
   *
   * The routines that begin execution of AML opcodes are named with a common
   * convention based upon the number of arguments, the number of target operands,
   * and whether or not a value is returned:
   *
   *      AcpiExOpcode_xA_yT_zR
   *
   * Where:
   *
   * xA - ARGUMENTS:    The number of arguments (input operands) that are
   *                    required for this opcode type (1 through 6 args).
   * yT - TARGETS:      The number of targets (output operands) that are required
   *                    for this opcode type (0, 1, or 2 targets).
   * zR - RETURN VALUE: Indicates whether this opcode type returns a value
   *                    as the function return (0 or 1).
   *
   * The AcpiExOpcode* functions are called via the Dispatcher component with
   * fully resolved operands.
  !*/
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
74
75
76
77
78
79
80
81
82
83
84
  /*******************************************************************************
   *
   * FUNCTION:    acpi_ex_opcode_3A_0T_0R
   *
   * PARAMETERS:  walk_state          - Current walk state
   *
   * RETURN:      Status
   *
   * DESCRIPTION: Execute Triadic operator (3 operands)
   *
   ******************************************************************************/
4be44fcd3   Len Brown   [ACPI] Lindent al...
85
  acpi_status acpi_ex_opcode_3A_0T_0R(struct acpi_walk_state *walk_state)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
86
  {
4be44fcd3   Len Brown   [ACPI] Lindent al...
87
88
89
  	union acpi_operand_object **operand = &walk_state->operands[0];
  	struct acpi_signal_fatal_info *fatal;
  	acpi_status status = AE_OK;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
90

b229cf92e   Bob Moore   ACPI: ACPICA 2006...
91
  	ACPI_FUNCTION_TRACE_STR(ex_opcode_3A_0T_0R,
4be44fcd3   Len Brown   [ACPI] Lindent al...
92
  				acpi_ps_get_opcode_name(walk_state->opcode));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
93
94
  
  	switch (walk_state->opcode) {
4be44fcd3   Len Brown   [ACPI] Lindent al...
95
  	case AML_FATAL_OP:	/* Fatal (fatal_type fatal_code fatal_arg) */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
96

4be44fcd3   Len Brown   [ACPI] Lindent al...
97
  		ACPI_DEBUG_PRINT((ACPI_DB_INFO,
b229cf92e   Bob Moore   ACPI: ACPICA 2006...
98
99
  				  "FatalOp: Type %X Code %X Arg %X <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
  ",
4be44fcd3   Len Brown   [ACPI] Lindent al...
100
101
102
  				  (u32) operand[0]->integer.value,
  				  (u32) operand[1]->integer.value,
  				  (u32) operand[2]->integer.value));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
103

8313524a0   Bob Moore   ACPI: ACPICA 2006...
104
  		fatal = ACPI_ALLOCATE(sizeof(struct acpi_signal_fatal_info));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
105
  		if (fatal) {
4be44fcd3   Len Brown   [ACPI] Lindent al...
106
107
  			fatal->type = (u32) operand[0]->integer.value;
  			fatal->code = (u32) operand[1]->integer.value;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
108
109
  			fatal->argument = (u32) operand[2]->integer.value;
  		}
44f6c0124   Robert Moore   ACPICA 20050408 f...
110
  		/* Always signal the OS! */
4be44fcd3   Len Brown   [ACPI] Lindent al...
111
  		status = acpi_os_signal(ACPI_SIGNAL_FATAL, fatal);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
112
113
  
  		/* Might return while OS is shutting down, just continue */
8313524a0   Bob Moore   ACPI: ACPICA 2006...
114
  		ACPI_FREE(fatal);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
115
  		break;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
116
  	default:
b8e4d8935   Bob Moore   [ACPI] ACPICA 200...
117
118
  		ACPI_ERROR((AE_INFO, "Unknown AML opcode %X",
  			    walk_state->opcode));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
119
120
121
  		status = AE_AML_BAD_OPCODE;
  		goto cleanup;
  	}
4be44fcd3   Len Brown   [ACPI] Lindent al...
122
        cleanup:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
123

4be44fcd3   Len Brown   [ACPI] Lindent al...
124
  	return_ACPI_STATUS(status);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
125
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
126
127
128
129
130
131
132
133
134
135
136
  /*******************************************************************************
   *
   * FUNCTION:    acpi_ex_opcode_3A_1T_1R
   *
   * PARAMETERS:  walk_state          - Current walk state
   *
   * RETURN:      Status
   *
   * DESCRIPTION: Execute Triadic operator (3 operands)
   *
   ******************************************************************************/
4be44fcd3   Len Brown   [ACPI] Lindent al...
137
  acpi_status acpi_ex_opcode_3A_1T_1R(struct acpi_walk_state *walk_state)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
138
  {
4be44fcd3   Len Brown   [ACPI] Lindent al...
139
140
141
142
143
144
  	union acpi_operand_object **operand = &walk_state->operands[0];
  	union acpi_operand_object *return_desc = NULL;
  	char *buffer = NULL;
  	acpi_status status = AE_OK;
  	acpi_integer index;
  	acpi_size length;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
145

b229cf92e   Bob Moore   ACPI: ACPICA 2006...
146
  	ACPI_FUNCTION_TRACE_STR(ex_opcode_3A_1T_1R,
4be44fcd3   Len Brown   [ACPI] Lindent al...
147
  				acpi_ps_get_opcode_name(walk_state->opcode));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
148
149
  
  	switch (walk_state->opcode) {
4be44fcd3   Len Brown   [ACPI] Lindent al...
150
  	case AML_MID_OP:	/* Mid (Source[0], Index[1], Length[2], Result[3]) */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
151
152
153
154
155
  
  		/*
  		 * Create the return object.  The Source operand is guaranteed to be
  		 * either a String or a Buffer, so just use its type.
  		 */
3371c19c2   Bob Moore   ACPICA: Remove AC...
156
157
  		return_desc = acpi_ut_create_internal_object((operand[0])->
  							     common.type);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
158
159
160
161
162
163
  		if (!return_desc) {
  			status = AE_NO_MEMORY;
  			goto cleanup;
  		}
  
  		/* Get the Integer values from the objects */
44f6c0124   Robert Moore   ACPICA 20050408 f...
164
  		index = operand[1]->integer.value;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
165
166
167
168
169
170
  		length = (acpi_size) operand[2]->integer.value;
  
  		/*
  		 * If the index is beyond the length of the String/Buffer, or if the
  		 * requested length is zero, return a zero-length String/Buffer
  		 */
73459f73e   Robert Moore   ACPICA 20050617-0...
171
172
173
174
175
176
177
178
  		if (index >= operand[0]->string.length) {
  			length = 0;
  		}
  
  		/* Truncate request if larger than the actual String/Buffer */
  
  		else if ((index + length) > operand[0]->string.length) {
  			length = (acpi_size) operand[0]->string.length -
4be44fcd3   Len Brown   [ACPI] Lindent al...
179
  			    (acpi_size) index;
73459f73e   Robert Moore   ACPICA 20050617-0...
180
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
181

73459f73e   Robert Moore   ACPICA 20050617-0...
182
  		/* Strings always have a sub-pointer, not so for buffers */
3371c19c2   Bob Moore   ACPICA: Remove AC...
183
  		switch ((operand[0])->common.type) {
73459f73e   Robert Moore   ACPICA 20050617-0...
184
185
186
  		case ACPI_TYPE_STRING:
  
  			/* Always allocate a new buffer for the String */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
187

8313524a0   Bob Moore   ACPI: ACPICA 2006...
188
  			buffer = ACPI_ALLOCATE_ZEROED((acpi_size) length + 1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
189
190
191
192
  			if (!buffer) {
  				status = AE_NO_MEMORY;
  				goto cleanup;
  			}
73459f73e   Robert Moore   ACPICA 20050617-0...
193
194
195
196
197
198
199
  			break;
  
  		case ACPI_TYPE_BUFFER:
  
  			/* If the requested length is zero, don't allocate a buffer */
  
  			if (length > 0) {
52fc0b026   Bob Moore   [ACPI] ACPICA 200...
200

73459f73e   Robert Moore   ACPICA 20050617-0...
201
  				/* Allocate a new buffer for the Buffer */
8313524a0   Bob Moore   ACPI: ACPICA 2006...
202
  				buffer = ACPI_ALLOCATE_ZEROED(length);
73459f73e   Robert Moore   ACPICA 20050617-0...
203
204
205
206
207
208
  				if (!buffer) {
  					status = AE_NO_MEMORY;
  					goto cleanup;
  				}
  			}
  			break;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
209

4be44fcd3   Len Brown   [ACPI] Lindent al...
210
  		default:	/* Should not happen */
73459f73e   Robert Moore   ACPICA 20050617-0...
211
212
213
214
  
  			status = AE_AML_OPERAND_TYPE;
  			goto cleanup;
  		}
defba1d8f   Bob Moore   [ACPI] ACPICA 200...
215
  		if (buffer) {
52fc0b026   Bob Moore   [ACPI] ACPICA 200...
216

defba1d8f   Bob Moore   [ACPI] ACPICA 200...
217
  			/* We have a buffer, copy the portion requested */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
218

4be44fcd3   Len Brown   [ACPI] Lindent al...
219
220
  			ACPI_MEMCPY(buffer, operand[0]->string.pointer + index,
  				    length);
73459f73e   Robert Moore   ACPICA 20050617-0...
221
  		}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
222

73459f73e   Robert Moore   ACPICA 20050617-0...
223
  		/* Set the length of the new String/Buffer */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
224

73459f73e   Robert Moore   ACPICA 20050617-0...
225
226
  		return_desc->string.pointer = buffer;
  		return_desc->string.length = (u32) length;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
227
228
229
230
231
  
  		/* Mark buffer initialized */
  
  		return_desc->buffer.flags |= AOPOBJ_DATA_VALID;
  		break;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
232
  	default:
b8e4d8935   Bob Moore   [ACPI] ACPICA 200...
233
234
  		ACPI_ERROR((AE_INFO, "Unknown AML opcode %X",
  			    walk_state->opcode));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
235
236
237
238
239
  		status = AE_AML_BAD_OPCODE;
  		goto cleanup;
  	}
  
  	/* Store the result in the target */
4be44fcd3   Len Brown   [ACPI] Lindent al...
240
  	status = acpi_ex_store(return_desc, operand[3], walk_state);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
241

4be44fcd3   Len Brown   [ACPI] Lindent al...
242
        cleanup:
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
243
244
  
  	/* Delete return object on error */
4be44fcd3   Len Brown   [ACPI] Lindent al...
245
246
  	if (ACPI_FAILURE(status) || walk_state->result_obj) {
  		acpi_ut_remove_reference(return_desc);
4b6e16cf2   Bob Moore   ACPICA: Avoid use...
247
  		walk_state->result_obj = NULL;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
248
249
250
  	}
  
  	/* Set the return object and exit */
73459f73e   Robert Moore   ACPICA 20050617-0...
251
  	else {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
252
253
  		walk_state->result_obj = return_desc;
  	}
4be44fcd3   Len Brown   [ACPI] Lindent al...
254
  	return_ACPI_STATUS(status);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
255
  }