rscalc.c 17.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*******************************************************************************
 *
 * Module Name: rscalc - Calculate stream and list lengths
 *
 ******************************************************************************/

/*
B
Bob Moore 已提交
8
 * Copyright (C) 2000 - 2007, R. Byron Moore
L
Linus Torvalds 已提交
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
 * 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.
 */

#include <acpi/acpi.h>
#include <acpi/acresrc.h>
#include <acpi/amlcode.h>
#include <acpi/acnamesp.h>

#define _COMPONENT          ACPI_RESOURCES
L
Len Brown 已提交
50
ACPI_MODULE_NAME("rscalc")
L
Linus Torvalds 已提交
51

R
Robert Moore 已提交
52 53 54
/* Local prototypes */
static u8 acpi_rs_count_set_bits(u16 bit_field);

B
Bob Moore 已提交
55
static acpi_rs_length
R
Robert Moore 已提交
56 57 58 59 60
acpi_rs_struct_option_length(struct acpi_resource_source *resource_source);

static u32
acpi_rs_stream_option_length(u32 resource_length, u32 minimum_total_length);

L
Linus Torvalds 已提交
61 62
/*******************************************************************************
 *
R
Robert Moore 已提交
63
 * FUNCTION:    acpi_rs_count_set_bits
L
Linus Torvalds 已提交
64
 *
R
Robert Moore 已提交
65
 * PARAMETERS:  bit_field       - Field in which to count bits
L
Linus Torvalds 已提交
66
 *
R
Robert Moore 已提交
67
 * RETURN:      Number of bits set within the field
L
Linus Torvalds 已提交
68
 *
R
Robert Moore 已提交
69 70
 * DESCRIPTION: Count the number of bits set in a resource field. Used for
 *              (Short descriptor) interrupt and DMA lists.
L
Linus Torvalds 已提交
71 72 73
 *
 ******************************************************************************/

R
Robert Moore 已提交
74 75 76
static u8 acpi_rs_count_set_bits(u16 bit_field)
{
	u8 bits_set;
R
Robert Moore 已提交
77

R
Robert Moore 已提交
78
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
79

R
Robert Moore 已提交
80
	for (bits_set = 0; bit_field; bits_set++) {
B
Bob Moore 已提交
81

R
Robert Moore 已提交
82
		/* Zero the least significant bit that is set */
L
Linus Torvalds 已提交
83

R
Robert Moore 已提交
84 85
		bit_field &= (bit_field - 1);
	}
L
Linus Torvalds 已提交
86

R
Robert Moore 已提交
87 88
	return (bits_set);
}
L
Linus Torvalds 已提交
89 90 91

/*******************************************************************************
 *
R
Robert Moore 已提交
92
 * FUNCTION:    acpi_rs_struct_option_length
L
Linus Torvalds 已提交
93
 *
R
Robert Moore 已提交
94
 * PARAMETERS:  resource_source     - Pointer to optional descriptor field
L
Linus Torvalds 已提交
95 96 97
 *
 * RETURN:      Status
 *
R
Robert Moore 已提交
98 99 100
 * DESCRIPTION: Common code to handle optional resource_source_index and
 *              resource_source fields in some Large descriptors. Used during
 *              list-to-stream conversion
L
Linus Torvalds 已提交
101 102 103
 *
 ******************************************************************************/

B
Bob Moore 已提交
104
static acpi_rs_length
R
Robert Moore 已提交
105
acpi_rs_struct_option_length(struct acpi_resource_source *resource_source)
L
Linus Torvalds 已提交
106
{
R
Robert Moore 已提交
107 108 109 110 111 112 113 114
	ACPI_FUNCTION_ENTRY();

	/*
	 * If the resource_source string is valid, return the size of the string
	 * (string_length includes the NULL terminator) plus the size of the
	 * resource_source_index (1).
	 */
	if (resource_source->string_ptr) {
B
Bob Moore 已提交
115
		return ((acpi_rs_length) (resource_source->string_length + 1));
R
Robert Moore 已提交
116
	}
L
Linus Torvalds 已提交
117

R
Robert Moore 已提交
118 119
	return (0);
}
L
Linus Torvalds 已提交
120

R
Robert Moore 已提交
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_stream_option_length
 *
 * PARAMETERS:  resource_length     - Length from the resource header
 *              minimum_total_length - Minimum length of this resource, before
 *                                    any optional fields. Includes header size
 *
 * RETURN:      Length of optional string (0 if no string present)
 *
 * DESCRIPTION: Common code to handle optional resource_source_index and
 *              resource_source fields in some Large descriptors. Used during
 *              stream-to-list conversion
 *
 ******************************************************************************/
L
Linus Torvalds 已提交
136

R
Robert Moore 已提交
137
static u32
B
Bob Moore 已提交
138 139
acpi_rs_stream_option_length(u32 resource_length,
			     u32 minimum_aml_resource_length)
R
Robert Moore 已提交
140 141
{
	u32 string_length = 0;
L
Linus Torvalds 已提交
142

R
Robert Moore 已提交
143
	ACPI_FUNCTION_ENTRY();
L
Linus Torvalds 已提交
144

R
Robert Moore 已提交
145 146 147 148
	/*
	 * The resource_source_index and resource_source are optional elements of some
	 * Large-type resource descriptors.
	 */
R
Robert Moore 已提交
149

R
Robert Moore 已提交
150 151 152 153 154 155 156
	/*
	 * If the length of the actual resource descriptor is greater than the ACPI
	 * spec-defined minimum length, it means that a resource_source_index exists
	 * and is followed by a (required) null terminated string. The string length
	 * (including the null terminator) is the resource length minus the minimum
	 * length, minus one byte for the resource_source_index itself.
	 */
B
Bob Moore 已提交
157
	if (resource_length > minimum_aml_resource_length) {
B
Bob Moore 已提交
158

R
Robert Moore 已提交
159
		/* Compute the length of the optional string */
L
Linus Torvalds 已提交
160

B
Bob Moore 已提交
161 162
		string_length =
		    resource_length - minimum_aml_resource_length - 1;
R
Robert Moore 已提交
163
	}
L
Linus Torvalds 已提交
164

B
Bob Moore 已提交
165 166 167 168 169
	/*
	 * Round the length up to a multiple of the native word in order to
	 * guarantee that the entire resource descriptor is native word aligned
	 */
	return ((u32) ACPI_ROUND_UP_TO_NATIVE_WORD(string_length));
R
Robert Moore 已提交
170
}
L
Linus Torvalds 已提交
171

R
Robert Moore 已提交
172 173
/*******************************************************************************
 *
B
Bob Moore 已提交
174
 * FUNCTION:    acpi_rs_get_aml_length
R
Robert Moore 已提交
175 176 177 178 179 180 181 182 183 184 185
 *
 * PARAMETERS:  Resource            - Pointer to the resource linked list
 *              size_needed         - Where the required size is returned
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Takes a linked list of internal resource descriptors and
 *              calculates the size buffer needed to hold the corresponding
 *              external resource byte stream.
 *
 ******************************************************************************/
L
Linus Torvalds 已提交
186

R
Robert Moore 已提交
187
acpi_status
B
Bob Moore 已提交
188
acpi_rs_get_aml_length(struct acpi_resource * resource, acpi_size * size_needed)
R
Robert Moore 已提交
189
{
B
Bob Moore 已提交
190
	acpi_size aml_size_needed = 0;
B
Bob Moore 已提交
191
	acpi_rs_length total_size;
L
Linus Torvalds 已提交
192

B
Bob Moore 已提交
193
	ACPI_FUNCTION_TRACE(rs_get_aml_length);
L
Linus Torvalds 已提交
194

R
Robert Moore 已提交
195
	/* Traverse entire list of internal resource descriptors */
L
Linus Torvalds 已提交
196

R
Robert Moore 已提交
197
	while (resource) {
B
Bob Moore 已提交
198

R
Robert Moore 已提交
199
		/* Validate the descriptor type */
L
Linus Torvalds 已提交
200

B
Bob Moore 已提交
201
		if (resource->type > ACPI_RESOURCE_TYPE_MAX) {
R
Robert Moore 已提交
202 203
			return_ACPI_STATUS(AE_AML_INVALID_RESOURCE_TYPE);
		}
R
Robert Moore 已提交
204

R
Robert Moore 已提交
205
		/* Get the base size of the (external stream) resource descriptor */
L
Linus Torvalds 已提交
206

B
Bob Moore 已提交
207
		total_size = acpi_gbl_aml_resource_sizes[resource->type];
L
Linus Torvalds 已提交
208

R
Robert Moore 已提交
209 210 211 212 213
		/*
		 * Augment the base size for descriptors with optional and/or
		 * variable-length fields
		 */
		switch (resource->type) {
B
Bob Moore 已提交
214
		case ACPI_RESOURCE_TYPE_VENDOR:
L
Linus Torvalds 已提交
215
			/*
R
Robert Moore 已提交
216 217 218 219
			 * Vendor Defined Resource:
			 * For a Vendor Specific resource, if the Length is between 1 and 7
			 * it will be created as a Small Resource data type, otherwise it
			 * is a Large Resource data type.
L
Linus Torvalds 已提交
220
			 */
B
Bob Moore 已提交
221
			if (resource->data.vendor.byte_length > 7) {
B
Bob Moore 已提交
222

R
Robert Moore 已提交
223
				/* Base size of a Large resource descriptor */
L
Linus Torvalds 已提交
224

B
Bob Moore 已提交
225
				total_size =
B
Bob Moore 已提交
226
				    sizeof(struct aml_resource_large_header);
L
Linus Torvalds 已提交
227 228
			}

R
Robert Moore 已提交
229
			/* Add the size of the vendor-specific data */
R
Robert Moore 已提交
230

B
Bob Moore 已提交
231 232
			total_size = (acpi_rs_length)
			    (total_size + resource->data.vendor.byte_length);
L
Linus Torvalds 已提交
233 234
			break;

B
Bob Moore 已提交
235
		case ACPI_RESOURCE_TYPE_END_TAG:
L
Linus Torvalds 已提交
236
			/*
R
Robert Moore 已提交
237 238
			 * End Tag:
			 * We are done -- return the accumulated total size.
L
Linus Torvalds 已提交
239
			 */
B
Bob Moore 已提交
240
			*size_needed = aml_size_needed + total_size;
L
Linus Torvalds 已提交
241

R
Robert Moore 已提交
242
			/* Normal exit */
L
Linus Torvalds 已提交
243

R
Robert Moore 已提交
244
			return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
245

B
Bob Moore 已提交
246
		case ACPI_RESOURCE_TYPE_ADDRESS16:
L
Linus Torvalds 已提交
247
			/*
R
Robert Moore 已提交
248 249
			 * 16-Bit Address Resource:
			 * Add the size of the optional resource_source info
L
Linus Torvalds 已提交
250
			 */
B
Bob Moore 已提交
251 252 253 254 255
			total_size = (acpi_rs_length)
			    (total_size +
			     acpi_rs_struct_option_length(&resource->data.
							  address16.
							  resource_source));
L
Linus Torvalds 已提交
256 257
			break;

B
Bob Moore 已提交
258
		case ACPI_RESOURCE_TYPE_ADDRESS32:
L
Linus Torvalds 已提交
259
			/*
R
Robert Moore 已提交
260 261
			 * 32-Bit Address Resource:
			 * Add the size of the optional resource_source info
L
Linus Torvalds 已提交
262
			 */
B
Bob Moore 已提交
263 264 265 266 267
			total_size = (acpi_rs_length)
			    (total_size +
			     acpi_rs_struct_option_length(&resource->data.
							  address32.
							  resource_source));
L
Linus Torvalds 已提交
268 269
			break;

B
Bob Moore 已提交
270
		case ACPI_RESOURCE_TYPE_ADDRESS64:
L
Linus Torvalds 已提交
271
			/*
R
Robert Moore 已提交
272 273
			 * 64-Bit Address Resource:
			 * Add the size of the optional resource_source info
L
Linus Torvalds 已提交
274
			 */
B
Bob Moore 已提交
275 276 277 278 279
			total_size = (acpi_rs_length)
			    (total_size +
			     acpi_rs_struct_option_length(&resource->data.
							  address64.
							  resource_source));
L
Linus Torvalds 已提交
280 281
			break;

B
Bob Moore 已提交
282
		case ACPI_RESOURCE_TYPE_EXTENDED_IRQ:
L
Linus Torvalds 已提交
283
			/*
R
Robert Moore 已提交
284 285 286
			 * Extended IRQ Resource:
			 * Add the size of each additional optional interrupt beyond the
			 * required 1 (4 bytes for each u32 interrupt number)
L
Linus Torvalds 已提交
287
			 */
B
Bob Moore 已提交
288 289 290 291 292 293 294 295
			total_size = (acpi_rs_length)
			    (total_size +
			     ((resource->data.extended_irq.interrupt_count -
			       1) * 4) +
			     /* Add the size of the optional resource_source info */
			     acpi_rs_struct_option_length(&resource->data.
							  extended_irq.
							  resource_source));
R
Robert Moore 已提交
296
			break;
L
Linus Torvalds 已提交
297

R
Robert Moore 已提交
298
		default:
L
Linus Torvalds 已提交
299
			break;
R
Robert Moore 已提交
300
		}
L
Linus Torvalds 已提交
301

R
Robert Moore 已提交
302
		/* Update the total */
L
Linus Torvalds 已提交
303

B
Bob Moore 已提交
304
		aml_size_needed += total_size;
L
Linus Torvalds 已提交
305

R
Robert Moore 已提交
306
		/* Point to the next object */
L
Linus Torvalds 已提交
307

B
Bob Moore 已提交
308
		resource =
B
Bob Moore 已提交
309
		    ACPI_ADD_PTR(struct acpi_resource, resource,
B
Bob Moore 已提交
310
				 resource->length);
R
Robert Moore 已提交
311
	}
L
Linus Torvalds 已提交
312

B
Bob Moore 已提交
313
	/* Did not find an end_tag resource descriptor */
L
Linus Torvalds 已提交
314

B
Bob Moore 已提交
315
	return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
R
Robert Moore 已提交
316
}
L
Linus Torvalds 已提交
317

R
Robert Moore 已提交
318 319 320 321
/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_get_list_length
 *
B
Bob Moore 已提交
322 323 324
 * PARAMETERS:  aml_buffer          - Pointer to the resource byte stream
 *              aml_buffer_length   - Size of aml_buffer
 *              size_needed         - Where the size needed is returned
R
Robert Moore 已提交
325 326 327 328 329 330 331 332 333 334
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Takes an external resource byte stream and calculates the size
 *              buffer needed to hold the corresponding internal resource
 *              descriptor linked list.
 *
 ******************************************************************************/

acpi_status
B
Bob Moore 已提交
335 336
acpi_rs_get_list_length(u8 * aml_buffer,
			u32 aml_buffer_length, acpi_size * size_needed)
R
Robert Moore 已提交
337
{
B
Bob Moore 已提交
338 339
	acpi_status status;
	u8 *end_aml;
R
Robert Moore 已提交
340
	u8 *buffer;
B
Bob Moore 已提交
341
	u32 buffer_size;
R
Robert Moore 已提交
342 343 344
	u16 temp16;
	u16 resource_length;
	u32 extra_struct_bytes;
B
Bob Moore 已提交
345 346
	u8 resource_index;
	u8 minimum_aml_resource_length;
L
Linus Torvalds 已提交
347

B
Bob Moore 已提交
348
	ACPI_FUNCTION_TRACE(rs_get_list_length);
L
Linus Torvalds 已提交
349

B
Bob Moore 已提交
350
	*size_needed = 0;
B
Bob Moore 已提交
351
	end_aml = aml_buffer + aml_buffer_length;
R
Robert Moore 已提交
352

B
Bob Moore 已提交
353
	/* Walk the list of AML resource descriptors */
L
Linus Torvalds 已提交
354

B
Bob Moore 已提交
355
	while (aml_buffer < end_aml) {
B
Bob Moore 已提交
356

B
Bob Moore 已提交
357
		/* Validate the Resource Type and Resource Length */
L
Linus Torvalds 已提交
358

B
Bob Moore 已提交
359 360 361
		status = acpi_ut_validate_resource(aml_buffer, &resource_index);
		if (ACPI_FAILURE(status)) {
			return_ACPI_STATUS(status);
L
Linus Torvalds 已提交
362 363
		}

B
Bob Moore 已提交
364
		/* Get the resource length and base (minimum) AML size */
R
Robert Moore 已提交
365

B
Bob Moore 已提交
366
		resource_length = acpi_ut_get_resource_length(aml_buffer);
B
Bob Moore 已提交
367 368
		minimum_aml_resource_length =
		    acpi_gbl_resource_aml_sizes[resource_index];
R
Robert Moore 已提交
369

B
Bob Moore 已提交
370 371 372 373
		/*
		 * Augment the size for descriptors with optional
		 * and/or variable length fields
		 */
R
Robert Moore 已提交
374
		extra_struct_bytes = 0;
B
Bob Moore 已提交
375 376
		buffer =
		    aml_buffer + acpi_ut_get_resource_header_length(aml_buffer);
R
Robert Moore 已提交
377

B
Bob Moore 已提交
378 379
		switch (acpi_ut_get_resource_type(aml_buffer)) {
		case ACPI_RESOURCE_NAME_IRQ:
R
Robert Moore 已提交
380
			/*
B
Bob Moore 已提交
381 382
			 * IRQ Resource:
			 * Get the number of bits set in the 16-bit IRQ mask
R
Robert Moore 已提交
383
			 */
B
Bob Moore 已提交
384
			ACPI_MOVE_16_TO_16(&temp16, buffer);
B
Bob Moore 已提交
385
			extra_struct_bytes = acpi_rs_count_set_bits(temp16);
B
Bob Moore 已提交
386 387 388
			break;

		case ACPI_RESOURCE_NAME_DMA:
R
Robert Moore 已提交
389
			/*
B
Bob Moore 已提交
390 391
			 * DMA Resource:
			 * Get the number of bits set in the 8-bit DMA mask
R
Robert Moore 已提交
392
			 */
B
Bob Moore 已提交
393
			extra_struct_bytes = acpi_rs_count_set_bits(*buffer);
B
Bob Moore 已提交
394 395 396
			break;

		case ACPI_RESOURCE_NAME_VENDOR_SMALL:
B
Bob Moore 已提交
397
		case ACPI_RESOURCE_NAME_VENDOR_LARGE:
B
Bob Moore 已提交
398 399
			/*
			 * Vendor Resource:
B
Bob Moore 已提交
400
			 * Get the number of vendor data bytes
B
Bob Moore 已提交
401
			 */
B
Bob Moore 已提交
402
			extra_struct_bytes = resource_length;
B
Bob Moore 已提交
403 404 405 406
			break;

		case ACPI_RESOURCE_NAME_END_TAG:
			/*
B
Bob Moore 已提交
407 408
			 * End Tag:
			 * This is the normal exit, add size of end_tag
B
Bob Moore 已提交
409
			 */
B
Bob Moore 已提交
410
			*size_needed += ACPI_RS_SIZE_MIN;
B
Bob Moore 已提交
411 412 413 414
			return_ACPI_STATUS(AE_OK);

		case ACPI_RESOURCE_NAME_ADDRESS32:
		case ACPI_RESOURCE_NAME_ADDRESS16:
B
Bob Moore 已提交
415
		case ACPI_RESOURCE_NAME_ADDRESS64:
B
Bob Moore 已提交
416
			/*
B
Bob Moore 已提交
417 418
			 * Address Resource:
			 * Add the size of the optional resource_source
B
Bob Moore 已提交
419 420 421 422 423 424 425 426
			 */
			extra_struct_bytes =
			    acpi_rs_stream_option_length(resource_length,
							 minimum_aml_resource_length);
			break;

		case ACPI_RESOURCE_NAME_EXTENDED_IRQ:
			/*
B
Bob Moore 已提交
427 428 429 430
			 * Extended IRQ Resource:
			 * Using the interrupt_table_length, add 4 bytes for each additional
			 * interrupt. Note: at least one interrupt is required and is
			 * included in the minimum descriptor size (reason for the -1)
B
Bob Moore 已提交
431
			 */
B
Bob Moore 已提交
432 433 434 435 436
			extra_struct_bytes = (buffer[1] - 1) * sizeof(u32);

			/* Add the size of the optional resource_source */

			extra_struct_bytes +=
B
Bob Moore 已提交
437 438 439 440 441 442 443
			    acpi_rs_stream_option_length(resource_length -
							 extra_struct_bytes,
							 minimum_aml_resource_length);
			break;

		default:
			break;
R
Robert Moore 已提交
444
		}
R
Robert Moore 已提交
445

B
Bob Moore 已提交
446 447 448 449 450 451 452 453
		/*
		 * Update the required buffer size for the internal descriptor structs
		 *
		 * Important: Round the size up for the appropriate alignment. This
		 * is a requirement on IA64.
		 */
		buffer_size = acpi_gbl_resource_struct_sizes[resource_index] +
		    extra_struct_bytes;
B
Bob Moore 已提交
454
		buffer_size = (u32) ACPI_ROUND_UP_TO_NATIVE_WORD(buffer_size);
B
Bob Moore 已提交
455 456

		*size_needed += buffer_size;
L
Linus Torvalds 已提交
457

B
Bob Moore 已提交
458
		ACPI_DEBUG_PRINT((ACPI_DB_RESOURCES,
B
Bob Moore 已提交
459
				  "Type %.2X, AmlLength %.2X InternalLength %.2X\n",
B
Bob Moore 已提交
460 461 462
				  acpi_ut_get_resource_type(aml_buffer),
				  acpi_ut_get_descriptor_length(aml_buffer),
				  buffer_size));
R
Robert Moore 已提交
463

R
Robert Moore 已提交
464
		/*
B
Bob Moore 已提交
465 466
		 * Point to the next resource within the AML stream using the length
		 * contained in the resource descriptor header
R
Robert Moore 已提交
467
		 */
B
Bob Moore 已提交
468
		aml_buffer += acpi_ut_get_descriptor_length(aml_buffer);
L
Linus Torvalds 已提交
469 470
	}

B
Bob Moore 已提交
471
	/* Did not find an end_tag resource descriptor */
R
Robert Moore 已提交
472

B
Bob Moore 已提交
473
	return_ACPI_STATUS(AE_AML_NO_RESOURCE_END_TAG);
L
Linus Torvalds 已提交
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_get_pci_routing_table_length
 *
 * PARAMETERS:  package_object          - Pointer to the package object
 *              buffer_size_needed      - u32 pointer of the size buffer
 *                                        needed to properly return the
 *                                        parsed data
 *
 * RETURN:      Status
 *
 * DESCRIPTION: Given a package representing a PCI routing table, this
 *              calculates the size of the corresponding linked list of
 *              descriptions.
 *
 ******************************************************************************/

acpi_status
L
Len Brown 已提交
494 495
acpi_rs_get_pci_routing_table_length(union acpi_operand_object *package_object,
				     acpi_size * buffer_size_needed)
L
Linus Torvalds 已提交
496
{
L
Len Brown 已提交
497 498 499 500 501 502 503 504
	u32 number_of_elements;
	acpi_size temp_size_needed = 0;
	union acpi_operand_object **top_object_list;
	u32 index;
	union acpi_operand_object *package_element;
	union acpi_operand_object **sub_object_list;
	u8 name_found;
	u32 table_index;
L
Linus Torvalds 已提交
505

B
Bob Moore 已提交
506
	ACPI_FUNCTION_TRACE(rs_get_pci_routing_table_length);
L
Linus Torvalds 已提交
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522

	number_of_elements = package_object->package.count;

	/*
	 * Calculate the size of the return buffer.
	 * The base size is the number of elements * the sizes of the
	 * structures.  Additional space for the strings is added below.
	 * The minus one is to subtract the size of the u8 Source[1]
	 * member because it is added below.
	 *
	 * But each PRT_ENTRY structure has a pointer to a string and
	 * the size of that string must be found.
	 */
	top_object_list = package_object->package.elements;

	for (index = 0; index < number_of_elements; index++) {
B
Bob Moore 已提交
523

R
Robert Moore 已提交
524 525
		/* Dereference the sub-package */

L
Linus Torvalds 已提交
526 527 528 529 530 531 532 533
		package_element = *top_object_list;

		/*
		 * The sub_object_list will now point to an array of the
		 * four IRQ elements: Address, Pin, Source and source_index
		 */
		sub_object_list = package_element->package.elements;

R
Robert Moore 已提交
534 535
		/* Scan the irq_table_elements for the Source Name String */

L
Linus Torvalds 已提交
536 537
		name_found = FALSE;

L
Len Brown 已提交
538 539
		for (table_index = 0; table_index < 4 && !name_found;
		     table_index++) {
B
Bob Moore 已提交
540 541 542 543 544 545 546
			if (*sub_object_list &&	/* Null object allowed */
			    ((ACPI_TYPE_STRING ==
			      ACPI_GET_OBJECT_TYPE(*sub_object_list)) ||
			     ((ACPI_TYPE_LOCAL_REFERENCE ==
			       ACPI_GET_OBJECT_TYPE(*sub_object_list)) &&
			      ((*sub_object_list)->reference.opcode ==
			       AML_INT_NAMEPATH_OP)))) {
L
Linus Torvalds 已提交
547
				name_found = TRUE;
L
Len Brown 已提交
548
			} else {
R
Robert Moore 已提交
549 550
				/* Look at the next element */

L
Linus Torvalds 已提交
551 552 553 554
				sub_object_list++;
			}
		}

L
Len Brown 已提交
555
		temp_size_needed += (sizeof(struct acpi_pci_routing_table) - 4);
L
Linus Torvalds 已提交
556

R
Robert Moore 已提交
557 558
		/* Was a String type found? */

L
Linus Torvalds 已提交
559
		if (name_found) {
L
Len Brown 已提交
560 561
			if (ACPI_GET_OBJECT_TYPE(*sub_object_list) ==
			    ACPI_TYPE_STRING) {
L
Linus Torvalds 已提交
562 563 564 565
				/*
				 * The length String.Length field does not include the
				 * terminating NULL, add 1
				 */
R
Robert Moore 已提交
566
				temp_size_needed += ((acpi_size)
L
Len Brown 已提交
567 568 569
						     (*sub_object_list)->string.
						     length + 1);
			} else {
L
Len Brown 已提交
570 571
				temp_size_needed +=
				    acpi_ns_get_pathname_length((*sub_object_list)->reference.node);
L
Linus Torvalds 已提交
572
			}
L
Len Brown 已提交
573
		} else {
L
Linus Torvalds 已提交
574 575 576 577
			/*
			 * If no name was found, then this is a NULL, which is
			 * translated as a u32 zero.
			 */
L
Len Brown 已提交
578
			temp_size_needed += sizeof(u32);
L
Linus Torvalds 已提交
579 580 581 582
		}

		/* Round up the size since each element must be aligned */

B
Bob Moore 已提交
583
		temp_size_needed = ACPI_ROUND_UP_TO_64BIT(temp_size_needed);
L
Linus Torvalds 已提交
584

R
Robert Moore 已提交
585 586
		/* Point to the next union acpi_operand_object */

L
Linus Torvalds 已提交
587 588 589 590
		top_object_list++;
	}

	/*
B
Bob Moore 已提交
591
	 * Add an extra element to the end of the list, essentially a
R
Robert Moore 已提交
592
	 * NULL terminator
L
Linus Torvalds 已提交
593
	 */
L
Len Brown 已提交
594 595 596
	*buffer_size_needed =
	    temp_size_needed + sizeof(struct acpi_pci_routing_table);
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
597
}