summaryrefslogtreecommitdiffstats
path: root/drivers/acpi/interpreter/amstore.c
blob: f7f34cb4fa3c607e55622a983dec81fea07182a2 (plain)
1
2
3
4
5
6
7
8
9
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378

/******************************************************************************
 *
 * Module Name: amstore - AML Interpreter object store support
 *              $Revision: 116 $
 *
 *****************************************************************************/

/*
 *  Copyright (C) 2000 R. Byron Moore
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */


#include "acpi.h"
#include "acparser.h"
#include "acdispat.h"
#include "acinterp.h"
#include "amlcode.h"
#include "acnamesp.h"
#include "actables.h"


#define _COMPONENT          INTERPRETER
	 MODULE_NAME         ("amstore")


/*******************************************************************************
 *
 * FUNCTION:    Acpi_aml_exec_store
 *
 * PARAMETERS:  *Val_desc           - Value to be stored
 *              *Dest_desc          - Where to store it 0 Must be (ACPI_HANDLE)
 *                                    or an ACPI_OPERAND_OBJECT  of type
 *                                    Reference; if the latter the descriptor
 *                                    will be either reused or deleted.
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Store the value described by Val_desc into the location
 *              described by Dest_desc. Called by various interpreter
 *              functions to store the result of an operation into
 *              the destination operand.
 *
 ******************************************************************************/

ACPI_STATUS
acpi_aml_exec_store (
	ACPI_OPERAND_OBJECT     *val_desc,
	ACPI_OPERAND_OBJECT     *dest_desc,
	ACPI_WALK_STATE         *walk_state)
{
	ACPI_STATUS             status = AE_OK;
	ACPI_OPERAND_OBJECT     *delete_dest_desc = NULL;
	ACPI_OPERAND_OBJECT     *tmp_desc;
	ACPI_NAMESPACE_NODE     *node = NULL;
	u8                      value = 0;
	u32                     length;
	u32                     i;


	/* Validate parameters */

	if (!val_desc || !dest_desc) {
		return (AE_AML_NO_OPERAND);
	}

	/* Examine the datatype of the Dest_desc */

	if (VALID_DESCRIPTOR_TYPE (dest_desc, ACPI_DESC_TYPE_NAMED)) {
		/* Dest is an ACPI_HANDLE, create a new object */

		node = (ACPI_NAMESPACE_NODE *) dest_desc;
		dest_desc = acpi_cm_create_internal_object (INTERNAL_TYPE_REFERENCE);
		if (!dest_desc) {
			/* Allocation failure  */

			return (AE_NO_MEMORY);
		}

		/* Build a new Reference wrapper around the handle */

		dest_desc->reference.op_code = AML_NAME_OP;
		dest_desc->reference.object = node;
	}


	/* Destination object must be of type Reference */

	if (dest_desc->common.type != INTERNAL_TYPE_REFERENCE) {
		/* Destination is not an Reference */

		return (AE_AML_OPERAND_TYPE);
	}

	/* Examine the Reference opcode */

	switch (dest_desc->reference.op_code)
	{

	case AML_NAME_OP:

		/*
		 *  Storing into a Name
		 */
		delete_dest_desc = dest_desc;
		status = acpi_aml_store_object_to_node (val_desc, dest_desc->reference.object,
				  walk_state);

		break;  /* Case Name_op */


	case AML_INDEX_OP:

		delete_dest_desc = dest_desc;

		/*
		 * Valid source value and destination reference pointer.
		 *
		 * ACPI Specification 1.0B section 15.2.3.4.2.13:
		 * Destination should point to either a buffer or a package
		 */

		/*
		 * Actually, storing to a package is not so simple.  The source must be
		 * evaluated and converted to the type of the destination and then the
		 * source is copied into the destination - we can't just point to the
		 * source object.
		 */
		if (dest_desc->reference.target_type == ACPI_TYPE_PACKAGE) {
			/*
			 * The object at *(Dest_desc->Reference.Where) is the
			 *  element within the package that is to be modified.
			 */
			tmp_desc = *(dest_desc->reference.where);
			if (tmp_desc) {
				/*
				 * If the Destination element is a package, we will delete
				 *  that object and construct a new one.
				 *
				 * TBD: [Investigate] Should both the src and dest be required
				 *      to be packages?
				 *       && (Val_desc->Common.Type == ACPI_TYPE_PACKAGE)
				 */
				if (tmp_desc->common.type == ACPI_TYPE_PACKAGE) {
					/*
					 * Take away the reference for being part of a package and
					 * delete
					 */
					acpi_cm_remove_reference (tmp_desc);
					acpi_cm_remove_reference (tmp_desc);

					tmp_desc = NULL;
				}
			}

			if (!tmp_desc) {
				/*
				 * If the Tmp_desc is NULL, that means an uninitialized package
				 * has been used as a destination, therefore, we must create
				 * the destination element to match the type of the source
				 * element NOTE: Val_desc can be of any type.
				 */
				tmp_desc = acpi_cm_create_internal_object (val_desc->common.type);
				if (!tmp_desc) {
					status = AE_NO_MEMORY;
					goto cleanup;
				}

				/*
				 * If the source is a package, copy the source to the new dest
				 */
				if (ACPI_TYPE_PACKAGE == tmp_desc->common.type) {
					status = acpi_aml_build_copy_internal_package_object (
							 val_desc, tmp_desc, walk_state);
					if (ACPI_FAILURE (status)) {
						acpi_cm_remove_reference (tmp_desc);
						tmp_desc = NULL;
						goto cleanup;
					}
				}

				/*
				 * Install the new descriptor into the package and add a
				 * reference to the newly created descriptor for now being
				 * part of the parent package
				 */

				*(dest_desc->reference.where) = tmp_desc;
				acpi_cm_add_reference (tmp_desc);
			}

			if (ACPI_TYPE_PACKAGE != tmp_desc->common.type) {
				/*
				 * The destination element is not a package, so we need to
				 * convert the contents of the source (Val_desc) and copy into
				 * the destination (Tmp_desc)
				 */
				status = acpi_aml_store_object_to_object (val_desc, tmp_desc,
						  walk_state);
				if (ACPI_FAILURE (status)) {
					/*
					 * An error occurrered when copying the internal object
					 * so delete the reference.
					 */
					status = AE_AML_OPERAND_TYPE;
				}
			}

			break;
		}

		/*
		 * Check that the destination is a Buffer Field type
		 */
		if (dest_desc->reference.target_type != ACPI_TYPE_BUFFER_FIELD) {
			status = AE_AML_OPERAND_TYPE;
			break;
		}

		/*
		 * Storing into a buffer at a location defined by an Index.
		 *
		 * Each 8-bit element of the source object is written to the
		 * 8-bit Buffer Field of the Index destination object.
		 */

		/*
		 * Set the Tmp_desc to the destination object and type check.
		 */
		tmp_desc = dest_desc->reference.object;

		if (tmp_desc->common.type != ACPI_TYPE_BUFFER) {
			status = AE_AML_OPERAND_TYPE;
			break;
		}

		/*
		 * The assignment of the individual elements will be slightly
		 * different for each source type.
		 */

		switch (val_desc->common.type)
		{
		/*
		 * If the type is Integer, the Length is 4.
		 * This loop to assign each of the elements is somewhat
		 *  backward because of the Big Endian-ness of IA-64
		 */
		case ACPI_TYPE_NUMBER:
			length = 4;
			for (i = length; i != 0; i--) {
				value = (u8)(val_desc->number.value >> (MUL_8 (i - 1)));
				tmp_desc->buffer.pointer[dest_desc->reference.offset] = value;
			}
			break;

		/*
		 * If the type is Buffer, the Length is in the structure.
		 * Just loop through the elements and assign each one in turn.
		 */
		case ACPI_TYPE_BUFFER:
			length = val_desc->buffer.length;
			for (i = 0; i < length; i++) {
				value = *(val_desc->buffer.pointer + i);
				tmp_desc->buffer.pointer[dest_desc->reference.offset] = value;
			}
			break;

		/*
		 * If the type is String, the Length is in the structure.
		 * Just loop through the elements and assign each one in turn.
		 */
		case ACPI_TYPE_STRING:
			length = val_desc->string.length;
			for (i = 0; i < length; i++) {
				value = *(val_desc->string.pointer + i);
				tmp_desc->buffer.pointer[dest_desc->reference.offset] = value;
			}
			break;

		/*
		 * If source is not a valid type so return an error.
		 */
		default:
			status = AE_AML_OPERAND_TYPE;
			break;
		}

		/*
		 * If we had an error, break out of this case statement.
		 */
		if (ACPI_FAILURE (status)) {
			break;
		}

		/*
		 * Set the return pointer
		 */
		dest_desc = tmp_desc;

		break;

	case AML_ZERO_OP:
	case AML_ONE_OP:
	case AML_ONES_OP:

		/*
		 * Storing to a constant is a no-op -- see ACPI Specification
		 * Delete the result descriptor.
		 */

		delete_dest_desc = dest_desc;
		break;


	case AML_LOCAL_OP:

		status = acpi_ds_method_data_set_value (MTH_TYPE_LOCAL,
				  (dest_desc->reference.offset), val_desc, walk_state);
		delete_dest_desc = dest_desc;
		break;


	case AML_ARG_OP:

		status = acpi_ds_method_data_set_value (MTH_TYPE_ARG,
				  (dest_desc->reference.offset), val_desc, walk_state);
		delete_dest_desc = dest_desc;
		break;


	case AML_DEBUG_OP:

		/*
		 * Storing to the Debug object causes the value stored to be
		 * displayed and otherwise has no effect -- see ACPI Specification
		 */

		delete_dest_desc = dest_desc;
		break;


	default:

		/* TBD: [Restructure] use object dump routine !! */

		delete_dest_desc = dest_desc;
		status = AE_AML_INTERNAL;

	}   /* switch(Dest_desc->Reference.Op_code) */


cleanup:

	/* Cleanup and exit*/

	if (delete_dest_desc) {
		acpi_cm_remove_reference (delete_dest_desc);
	}

	return (status);
}