rsmisc.c 14.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*******************************************************************************
 *
 * Module Name: rsmisc - Miscellaneous resource descriptors
 *
 ******************************************************************************/

/*
8
 * Copyright (C) 2000 - 2011, Intel Corp.
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
 * 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>
L
Len Brown 已提交
45 46
#include "accommon.h"
#include "acresrc.h"
L
Linus Torvalds 已提交
47 48

#define _COMPONENT          ACPI_RESOURCES
L
Len Brown 已提交
49
ACPI_MODULE_NAME("rsmisc")
B
Bob Moore 已提交
50 51 52 53 54 55
#define INIT_RESOURCE_TYPE(i)       i->resource_offset
#define INIT_RESOURCE_LENGTH(i)     i->aml_offset
#define INIT_TABLE_LENGTH(i)        i->value
#define COMPARE_OPCODE(i)           i->resource_offset
#define COMPARE_TARGET(i)           i->aml_offset
#define COMPARE_VALUE(i)            i->value
R
Robert Moore 已提交
56 57
/*******************************************************************************
 *
B
Bob Moore 已提交
58
 * FUNCTION:    acpi_rs_convert_aml_to_resource
R
Robert Moore 已提交
59
 *
B
Bob Moore 已提交
60 61
 * PARAMETERS:  Resource            - Pointer to the resource descriptor
 *              Aml                 - Where the AML descriptor is returned
B
Bob Moore 已提交
62
 *              Info                - Pointer to appropriate conversion table
R
Robert Moore 已提交
63 64 65
 *
 * RETURN:      Status
 *
B
Bob Moore 已提交
66 67
 * DESCRIPTION: Convert an external AML resource descriptor to the corresponding
 *              internal resource descriptor
L
Linus Torvalds 已提交
68 69 70
 *
 ******************************************************************************/
acpi_status
B
Bob Moore 已提交
71 72 73
acpi_rs_convert_aml_to_resource(struct acpi_resource *resource,
				union aml_resource *aml,
				struct acpi_rsconvert_info *info)
L
Linus Torvalds 已提交
74
{
B
Bob Moore 已提交
75 76 77 78 79 80 81 82 83
	acpi_rs_length aml_resource_length;
	void *source;
	void *destination;
	char *target;
	u8 count;
	u8 flags_mode = FALSE;
	u16 item_count = 0;
	u16 temp16 = 0;

B
Bob Moore 已提交
84
	ACPI_FUNCTION_TRACE(rs_convert_aml_to_resource);
B
Bob Moore 已提交
85

86
	if (((acpi_size) resource) & 0x3) {
B
Bob Moore 已提交
87

B
Bob Moore 已提交
88 89 90
		/* Each internal resource struct is expected to be 32-bit aligned */

		ACPI_WARNING((AE_INFO,
91
			      "Misaligned resource pointer (get): %p Type 0x%2.2X Length %u",
B
Bob Moore 已提交
92
			      resource, resource->type, resource->length));
B
Bob Moore 已提交
93
	}
R
Robert Moore 已提交
94

B
Bob Moore 已提交
95
	/* Extract the resource Length field (does not include header length) */
L
Linus Torvalds 已提交
96

B
Bob Moore 已提交
97
	aml_resource_length = acpi_ut_get_resource_length(aml);
R
Robert Moore 已提交
98

B
Bob Moore 已提交
99 100 101 102 103 104 105 106 107 108 109
	/*
	 * First table entry must be ACPI_RSC_INITxxx and must contain the
	 * table length (# of table entries)
	 */
	count = INIT_TABLE_LENGTH(info);

	while (count) {
		/*
		 * Source is the external AML byte stream buffer,
		 * destination is the internal resource descriptor
		 */
B
Bob Moore 已提交
110 111 112
		source = ACPI_ADD_PTR(void, aml, info->aml_offset);
		destination =
		    ACPI_ADD_PTR(void, resource, info->resource_offset);
B
Bob Moore 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135

		switch (info->opcode) {
		case ACPI_RSC_INITGET:
			/*
			 * Get the resource type and the initial (minimum) length
			 */
			ACPI_MEMSET(resource, 0, INIT_RESOURCE_LENGTH(info));
			resource->type = INIT_RESOURCE_TYPE(info);
			resource->length = INIT_RESOURCE_LENGTH(info);
			break;

		case ACPI_RSC_INITSET:
			break;

		case ACPI_RSC_FLAGINIT:

			flags_mode = TRUE;
			break;

		case ACPI_RSC_1BITFLAG:
			/*
			 * Mask and shift the flag bit
			 */
B
Bob Moore 已提交
136 137
			ACPI_SET8(destination) = (u8)
			    ((ACPI_GET8(source) >> info->value) & 0x01);
B
Bob Moore 已提交
138 139 140 141 142 143
			break;

		case ACPI_RSC_2BITFLAG:
			/*
			 * Mask and shift the flag bits
			 */
B
Bob Moore 已提交
144 145
			ACPI_SET8(destination) = (u8)
			    ((ACPI_GET8(source) >> info->value) & 0x03);
B
Bob Moore 已提交
146 147 148 149
			break;

		case ACPI_RSC_COUNT:

B
Bob Moore 已提交
150 151
			item_count = ACPI_GET8(source);
			ACPI_SET8(destination) = (u8) item_count;
B
Bob Moore 已提交
152 153 154 155 156 157 158 159

			resource->length = resource->length +
			    (info->value * (item_count - 1));
			break;

		case ACPI_RSC_COUNT16:

			item_count = aml_resource_length;
B
Bob Moore 已提交
160
			ACPI_SET16(destination) = item_count;
B
Bob Moore 已提交
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

			resource->length = resource->length +
			    (info->value * (item_count - 1));
			break;

		case ACPI_RSC_LENGTH:

			resource->length = resource->length + info->value;
			break;

		case ACPI_RSC_MOVE8:
		case ACPI_RSC_MOVE16:
		case ACPI_RSC_MOVE32:
		case ACPI_RSC_MOVE64:
			/*
			 * Raw data move. Use the Info value field unless item_count has
			 * been previously initialized via a COUNT opcode
			 */
			if (info->value) {
				item_count = info->value;
			}
			acpi_rs_move_data(destination, source, item_count,
					  info->opcode);
			break;

		case ACPI_RSC_SET8:

			ACPI_MEMSET(destination, info->aml_offset, info->value);
			break;

		case ACPI_RSC_DATA8:

B
Bob Moore 已提交
193 194
			target = ACPI_ADD_PTR(char, resource, info->value);
			ACPI_MEMCPY(destination, source, ACPI_GET16(target));
B
Bob Moore 已提交
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
			break;

		case ACPI_RSC_ADDRESS:
			/*
			 * Common handler for address descriptor flags
			 */
			if (!acpi_rs_get_address_common(resource, aml)) {
				return_ACPI_STATUS
				    (AE_AML_INVALID_RESOURCE_TYPE);
			}
			break;

		case ACPI_RSC_SOURCE:
			/*
			 * Optional resource_source (Index and String)
			 */
			resource->length +=
			    acpi_rs_get_resource_source(aml_resource_length,
							info->value,
							destination, aml, NULL);
			break;

		case ACPI_RSC_SOURCEX:
			/*
			 * Optional resource_source (Index and String). This is the more
			 * complicated case used by the Interrupt() macro
			 */
			target =
B
Bob Moore 已提交
223 224
			    ACPI_ADD_PTR(char, resource,
					 info->aml_offset + (item_count * 4));
B
Bob Moore 已提交
225 226 227 228 229 230 231 232 233 234 235

			resource->length +=
			    acpi_rs_get_resource_source(aml_resource_length,
							(acpi_rs_length) (((item_count - 1) * sizeof(u32)) + info->value), destination, aml, target);
			break;

		case ACPI_RSC_BITMASK:
			/*
			 * 8-bit encoded bitmask (DMA macro)
			 */
			item_count =
B
Bob Moore 已提交
236
			    acpi_rs_decode_bitmask(ACPI_GET8(source),
B
Bob Moore 已提交
237 238
						   destination);
			if (item_count) {
B
Bob Moore 已提交
239
				resource->length += (item_count - 1);
B
Bob Moore 已提交
240 241
			}

B
Bob Moore 已提交
242 243
			target = ACPI_ADD_PTR(char, resource, info->value);
			ACPI_SET8(target) = (u8) item_count;
B
Bob Moore 已提交
244 245 246 247 248 249 250 251 252 253 254
			break;

		case ACPI_RSC_BITMASK16:
			/*
			 * 16-bit encoded bitmask (IRQ macro)
			 */
			ACPI_MOVE_16_TO_16(&temp16, source);

			item_count =
			    acpi_rs_decode_bitmask(temp16, destination);
			if (item_count) {
B
Bob Moore 已提交
255
				resource->length += (item_count - 1);
B
Bob Moore 已提交
256 257
			}

B
Bob Moore 已提交
258 259
			target = ACPI_ADD_PTR(char, resource, info->value);
			ACPI_SET8(target) = (u8) item_count;
B
Bob Moore 已提交
260 261 262 263 264 265 266 267 268 269 270 271 272 273
			break;

		case ACPI_RSC_EXIT_NE:
			/*
			 * Control - Exit conversion if not equal
			 */
			switch (info->resource_offset) {
			case ACPI_RSC_COMPARE_AML_LENGTH:
				if (aml_resource_length != info->value) {
					goto exit;
				}
				break;

			case ACPI_RSC_COMPARE_VALUE:
B
Bob Moore 已提交
274
				if (ACPI_GET8(source) != info->value) {
B
Bob Moore 已提交
275 276 277 278 279
					goto exit;
				}
				break;

			default:
B
Bob Moore 已提交
280 281 282

				ACPI_ERROR((AE_INFO,
					    "Invalid conversion sub-opcode"));
B
Bob Moore 已提交
283 284 285 286 287 288
				return_ACPI_STATUS(AE_BAD_PARAMETER);
			}
			break;

		default:

B
Bob Moore 已提交
289
			ACPI_ERROR((AE_INFO, "Invalid conversion opcode"));
B
Bob Moore 已提交
290 291
			return_ACPI_STATUS(AE_BAD_PARAMETER);
		}
L
Linus Torvalds 已提交
292

B
Bob Moore 已提交
293 294
		count--;
		info++;
B
Bob Moore 已提交
295
	}
R
Robert Moore 已提交
296

B
Bob Moore 已提交
297 298
      exit:
	if (!flags_mode) {
B
Bob Moore 已提交
299

B
Bob Moore 已提交
300
		/* Round the resource struct length up to the next boundary (32 or 64) */
R
Robert Moore 已提交
301

B
Bob Moore 已提交
302
		resource->length =
B
Bob Moore 已提交
303
		    (u32) ACPI_ROUND_UP_TO_NATIVE_WORD(resource->length);
B
Bob Moore 已提交
304
	}
L
Len Brown 已提交
305
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
306 307 308 309
}

/*******************************************************************************
 *
B
Bob Moore 已提交
310
 * FUNCTION:    acpi_rs_convert_resource_to_aml
L
Linus Torvalds 已提交
311
 *
B
Bob Moore 已提交
312 313
 * PARAMETERS:  Resource            - Pointer to the resource descriptor
 *              Aml                 - Where the AML descriptor is returned
B
Bob Moore 已提交
314
 *              Info                - Pointer to appropriate conversion table
L
Linus Torvalds 已提交
315 316 317
 *
 * RETURN:      Status
 *
B
Bob Moore 已提交
318 319
 * DESCRIPTION: Convert an internal resource descriptor to the corresponding
 *              external AML resource descriptor.
L
Linus Torvalds 已提交
320 321 322 323
 *
 ******************************************************************************/

acpi_status
B
Bob Moore 已提交
324 325 326
acpi_rs_convert_resource_to_aml(struct acpi_resource *resource,
				union aml_resource *aml,
				struct acpi_rsconvert_info *info)
L
Linus Torvalds 已提交
327
{
B
Bob Moore 已提交
328 329 330 331 332 333
	void *source = NULL;
	void *destination;
	acpi_rsdesc_size aml_length = 0;
	u8 count;
	u16 temp16 = 0;
	u16 item_count = 0;
L
Linus Torvalds 已提交
334

B
Bob Moore 已提交
335
	ACPI_FUNCTION_TRACE(rs_convert_resource_to_aml);
B
Bob Moore 已提交
336

B
Bob Moore 已提交
337 338 339 340 341 342 343 344 345 346 347
	/*
	 * First table entry must be ACPI_RSC_INITxxx and must contain the
	 * table length (# of table entries)
	 */
	count = INIT_TABLE_LENGTH(info);

	while (count) {
		/*
		 * Source is the internal resource descriptor,
		 * destination is the external AML byte stream buffer
		 */
B
Bob Moore 已提交
348 349
		source = ACPI_ADD_PTR(void, resource, info->resource_offset);
		destination = ACPI_ADD_PTR(void, aml, info->aml_offset);
B
Bob Moore 已提交
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366

		switch (info->opcode) {
		case ACPI_RSC_INITSET:

			ACPI_MEMSET(aml, 0, INIT_RESOURCE_LENGTH(info));
			aml_length = INIT_RESOURCE_LENGTH(info);
			acpi_rs_set_resource_header(INIT_RESOURCE_TYPE(info),
						    aml_length, aml);
			break;

		case ACPI_RSC_INITGET:
			break;

		case ACPI_RSC_FLAGINIT:
			/*
			 * Clear the flag byte
			 */
B
Bob Moore 已提交
367
			ACPI_SET8(destination) = 0;
B
Bob Moore 已提交
368 369 370 371 372 373
			break;

		case ACPI_RSC_1BITFLAG:
			/*
			 * Mask and shift the flag bit
			 */
B
Bob Moore 已提交
374 375
			ACPI_SET8(destination) |= (u8)
			    ((ACPI_GET8(source) & 0x01) << info->value);
B
Bob Moore 已提交
376 377 378 379 380 381
			break;

		case ACPI_RSC_2BITFLAG:
			/*
			 * Mask and shift the flag bits
			 */
B
Bob Moore 已提交
382 383
			ACPI_SET8(destination) |= (u8)
			    ((ACPI_GET8(source) & 0x03) << info->value);
B
Bob Moore 已提交
384 385 386 387
			break;

		case ACPI_RSC_COUNT:

B
Bob Moore 已提交
388 389
			item_count = ACPI_GET8(source);
			ACPI_SET8(destination) = (u8) item_count;
B
Bob Moore 已提交
390

B
Bob Moore 已提交
391 392 393
			aml_length =
			    (u16) (aml_length +
				   (info->value * (item_count - 1)));
B
Bob Moore 已提交
394 395 396 397
			break;

		case ACPI_RSC_COUNT16:

B
Bob Moore 已提交
398
			item_count = ACPI_GET16(source);
B
Bob Moore 已提交
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
			aml_length = (u16) (aml_length + item_count);
			acpi_rs_set_resource_length(aml_length, aml);
			break;

		case ACPI_RSC_LENGTH:

			acpi_rs_set_resource_length(info->value, aml);
			break;

		case ACPI_RSC_MOVE8:
		case ACPI_RSC_MOVE16:
		case ACPI_RSC_MOVE32:
		case ACPI_RSC_MOVE64:

			if (info->value) {
				item_count = info->value;
			}
			acpi_rs_move_data(destination, source, item_count,
					  info->opcode);
			break;

		case ACPI_RSC_ADDRESS:

			/* Set the Resource Type, General Flags, and Type-Specific Flags */

			acpi_rs_set_address_common(aml, resource);
			break;

		case ACPI_RSC_SOURCEX:
			/*
			 * Optional resource_source (Index and String)
			 */
			aml_length =
L
Len Brown 已提交
432
			    acpi_rs_set_resource_source(aml, (acpi_rs_length)
B
Bob Moore 已提交
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
							aml_length, source);
			acpi_rs_set_resource_length(aml_length, aml);
			break;

		case ACPI_RSC_SOURCE:
			/*
			 * Optional resource_source (Index and String). This is the more
			 * complicated case used by the Interrupt() macro
			 */
			aml_length =
			    acpi_rs_set_resource_source(aml, info->value,
							source);
			acpi_rs_set_resource_length(aml_length, aml);
			break;

		case ACPI_RSC_BITMASK:
			/*
			 * 8-bit encoded bitmask (DMA macro)
			 */
B
Bob Moore 已提交
452
			ACPI_SET8(destination) = (u8)
B
Bob Moore 已提交
453
			    acpi_rs_encode_bitmask(source,
B
Bob Moore 已提交
454 455
						   *ACPI_ADD_PTR(u8, resource,
								 info->value));
B
Bob Moore 已提交
456 457 458 459 460 461
			break;

		case ACPI_RSC_BITMASK16:
			/*
			 * 16-bit encoded bitmask (IRQ macro)
			 */
B
Bob Moore 已提交
462 463 464 465 466
			temp16 = acpi_rs_encode_bitmask(source,
							*ACPI_ADD_PTR(u8,
								      resource,
								      info->
								      value));
B
Bob Moore 已提交
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
			ACPI_MOVE_16_TO_16(destination, &temp16);
			break;

		case ACPI_RSC_EXIT_LE:
			/*
			 * Control - Exit conversion if less than or equal
			 */
			if (item_count <= info->value) {
				goto exit;
			}
			break;

		case ACPI_RSC_EXIT_NE:
			/*
			 * Control - Exit conversion if not equal
			 */
			switch (COMPARE_OPCODE(info)) {
			case ACPI_RSC_COMPARE_VALUE:
B
Bob Moore 已提交
485 486 487

				if (*ACPI_ADD_PTR(u8, resource,
						  COMPARE_TARGET(info)) !=
B
Bob Moore 已提交
488 489 490 491 492 493
				    COMPARE_VALUE(info)) {
					goto exit;
				}
				break;

			default:
B
Bob Moore 已提交
494 495 496

				ACPI_ERROR((AE_INFO,
					    "Invalid conversion sub-opcode"));
B
Bob Moore 已提交
497 498 499 500
				return_ACPI_STATUS(AE_BAD_PARAMETER);
			}
			break;

501 502 503 504 505 506 507 508 509 510 511
		case ACPI_RSC_EXIT_EQ:
			/*
			 * Control - Exit conversion if equal
			 */
			if (*ACPI_ADD_PTR(u8, resource,
					  COMPARE_TARGET(info)) ==
			    COMPARE_VALUE(info)) {
				goto exit;
			}
			break;

B
Bob Moore 已提交
512 513
		default:

B
Bob Moore 已提交
514
			ACPI_ERROR((AE_INFO, "Invalid conversion opcode"));
B
Bob Moore 已提交
515
			return_ACPI_STATUS(AE_BAD_PARAMETER);
B
Bob Moore 已提交
516
		}
L
Linus Torvalds 已提交
517

B
Bob Moore 已提交
518 519
		count--;
		info++;
L
Linus Torvalds 已提交
520 521
	}

B
Bob Moore 已提交
522
      exit:
L
Len Brown 已提交
523
	return_ACPI_STATUS(AE_OK);
L
Linus Torvalds 已提交
524 525
}

B
Bob Moore 已提交
526 527
#if 0
/* Previous resource validations */
R
Robert Moore 已提交
528

B
Bob Moore 已提交
529 530
if (aml->ext_address64.revision_iD != AML_RESOURCE_EXTENDED_ADDRESS_REVISION) {
	return_ACPI_STATUS(AE_SUPPORT);
L
Linus Torvalds 已提交
531 532
}

B
Bob Moore 已提交
533 534
if (resource->data.start_dpf.performance_robustness >= 3) {
	return_ACPI_STATUS(AE_AML_BAD_RESOURCE_VALUE);
L
Linus Torvalds 已提交
535 536
}

B
Bob Moore 已提交
537 538 539 540 541 542
if (((aml->irq.flags & 0x09) == 0x00) || ((aml->irq.flags & 0x09) == 0x09)) {
	/*
	 * Only [active_high, edge_sensitive] or [active_low, level_sensitive]
	 * polarity/trigger interrupts are allowed (ACPI spec, section
	 * "IRQ Format"), so 0x00 and 0x09 are illegal.
	 */
B
Bob Moore 已提交
543
	ACPI_ERROR((AE_INFO,
544
		    "Invalid interrupt polarity/trigger in resource list, 0x%X",
B
Bob Moore 已提交
545
		    aml->irq.flags));
B
Bob Moore 已提交
546
	return_ACPI_STATUS(AE_BAD_DATA);
L
Linus Torvalds 已提交
547 548
}

B
Bob Moore 已提交
549 550
resource->data.extended_irq.interrupt_count = temp8;
if (temp8 < 1) {
B
Bob Moore 已提交
551

B
Bob Moore 已提交
552
	/* Must have at least one IRQ */
R
Robert Moore 已提交
553

B
Bob Moore 已提交
554
	return_ACPI_STATUS(AE_AML_BAD_RESOURCE_LENGTH);
L
Linus Torvalds 已提交
555 556
}

B
Bob Moore 已提交
557
if (resource->data.dma.transfer == 0x03) {
B
Bob Moore 已提交
558
	ACPI_ERROR((AE_INFO, "Invalid DMA.Transfer preference (3)"));
B
Bob Moore 已提交
559
	return_ACPI_STATUS(AE_BAD_DATA);
L
Linus Torvalds 已提交
560
}
B
Bob Moore 已提交
561
#endif