rsdump.c 29.5 KB
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 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 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 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
/*******************************************************************************
 *
 * Module Name: rsdump - Functions to display the resource structures.
 *
 ******************************************************************************/

/*
 * Copyright (C) 2000 - 2005, R. Byron Moore
 * 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>

#define _COMPONENT          ACPI_RESOURCES
ACPI_MODULE_NAME("rsdump")

#if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
/* Local prototypes */
static void acpi_rs_dump_irq(union acpi_resource_data *data);

static void acpi_rs_dump_address16(union acpi_resource_data *data);

static void acpi_rs_dump_address32(union acpi_resource_data *data);

static void acpi_rs_dump_address64(union acpi_resource_data *data);

static void acpi_rs_dump_dma(union acpi_resource_data *data);

static void acpi_rs_dump_io(union acpi_resource_data *data);

static void acpi_rs_dump_extended_irq(union acpi_resource_data *data);

static void acpi_rs_dump_fixed_io(union acpi_resource_data *data);

static void acpi_rs_dump_fixed_memory32(union acpi_resource_data *data);

static void acpi_rs_dump_memory24(union acpi_resource_data *data);

static void acpi_rs_dump_memory32(union acpi_resource_data *data);

static void acpi_rs_dump_start_depend_fns(union acpi_resource_data *data);

static void acpi_rs_dump_vendor_specific(union acpi_resource_data *data);

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_irq
 *
 * PARAMETERS:  Data            - pointer to the resource structure to dump.
 *
 * RETURN:      None
 *
 * DESCRIPTION: Prints out the various members of the Data structure type.
 *
 ******************************************************************************/

static void acpi_rs_dump_irq(union acpi_resource_data *data)
{
	struct acpi_resource_irq *irq_data = (struct acpi_resource_irq *)data;
	u8 index = 0;

	ACPI_FUNCTION_ENTRY();

	acpi_os_printf("IRQ Resource\n");

	acpi_os_printf("  %s Triggered\n",
		       ACPI_LEVEL_SENSITIVE ==
		       irq_data->edge_level ? "Level" : "Edge");

	acpi_os_printf("  Active %s\n",
		       ACPI_ACTIVE_LOW ==
		       irq_data->active_high_low ? "Low" : "High");

	acpi_os_printf("  %s\n",
		       ACPI_SHARED ==
		       irq_data->shared_exclusive ? "Shared" : "Exclusive");

	acpi_os_printf("  %X Interrupts ( ", irq_data->number_of_interrupts);

	for (index = 0; index < irq_data->number_of_interrupts; index++) {
		acpi_os_printf("%X ", irq_data->interrupts[index]);
	}

	acpi_os_printf(")\n");
	return;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_dma
 *
 * PARAMETERS:  Data            - pointer to the resource structure to dump.
 *
 * RETURN:      None
 *
 * DESCRIPTION: Prints out the various members of the Data structure type.
 *
 ******************************************************************************/

static void acpi_rs_dump_dma(union acpi_resource_data *data)
{
	struct acpi_resource_dma *dma_data = (struct acpi_resource_dma *)data;
	u8 index = 0;

	ACPI_FUNCTION_ENTRY();

	acpi_os_printf("DMA Resource\n");

	switch (dma_data->type) {
	case ACPI_COMPATIBILITY:
		acpi_os_printf("  Compatibility mode\n");
		break;

	case ACPI_TYPE_A:
		acpi_os_printf("  Type A\n");
		break;

	case ACPI_TYPE_B:
		acpi_os_printf("  Type B\n");
		break;

	case ACPI_TYPE_F:
		acpi_os_printf("  Type F\n");
		break;

	default:
		acpi_os_printf("  Invalid DMA type\n");
		break;
	}

	acpi_os_printf("  %sBus Master\n",
		       ACPI_BUS_MASTER == dma_data->bus_master ? "" : "Not a ");

	switch (dma_data->transfer) {
	case ACPI_TRANSFER_8:
		acpi_os_printf("  8-bit only transfer\n");
		break;

	case ACPI_TRANSFER_8_16:
		acpi_os_printf("  8 and 16-bit transfer\n");
		break;

	case ACPI_TRANSFER_16:
		acpi_os_printf("  16 bit only transfer\n");
		break;

	default:
		acpi_os_printf("  Invalid transfer preference\n");
		break;
	}

	acpi_os_printf("  Number of Channels: %X ( ",
		       dma_data->number_of_channels);

	for (index = 0; index < dma_data->number_of_channels; index++) {
		acpi_os_printf("%X ", dma_data->channels[index]);
	}

	acpi_os_printf(")\n");
	return;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_start_depend_fns
 *
 * PARAMETERS:  Data            - pointer to the resource structure to dump.
 *
 * RETURN:      None
 *
 * DESCRIPTION: Prints out the various members of the Data structure type.
 *
 ******************************************************************************/

static void acpi_rs_dump_start_depend_fns(union acpi_resource_data *data)
{
	struct acpi_resource_start_dpf *sdf_data =
	    (struct acpi_resource_start_dpf *)data;

	ACPI_FUNCTION_ENTRY();

	acpi_os_printf("Start Dependent Functions Resource\n");

	switch (sdf_data->compatibility_priority) {
	case ACPI_GOOD_CONFIGURATION:
		acpi_os_printf("  Good configuration\n");
		break;

	case ACPI_ACCEPTABLE_CONFIGURATION:
		acpi_os_printf("  Acceptable configuration\n");
		break;

	case ACPI_SUB_OPTIMAL_CONFIGURATION:
		acpi_os_printf("  Sub-optimal configuration\n");
		break;

	default:
		acpi_os_printf("  Invalid compatibility priority\n");
		break;
	}

	switch (sdf_data->performance_robustness) {
	case ACPI_GOOD_CONFIGURATION:
		acpi_os_printf("  Good configuration\n");
		break;

	case ACPI_ACCEPTABLE_CONFIGURATION:
		acpi_os_printf("  Acceptable configuration\n");
		break;

	case ACPI_SUB_OPTIMAL_CONFIGURATION:
		acpi_os_printf("  Sub-optimal configuration\n");
		break;

	default:
		acpi_os_printf("  Invalid performance robustness preference\n");
		break;
	}

	return;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_io
 *
 * PARAMETERS:  Data            - pointer to the resource structure to dump.
 *
 * RETURN:      None
 *
 * DESCRIPTION: Prints out the various members of the Data structure type.
 *
 ******************************************************************************/

static void acpi_rs_dump_io(union acpi_resource_data *data)
{
	struct acpi_resource_io *io_data = (struct acpi_resource_io *)data;

	ACPI_FUNCTION_ENTRY();

	acpi_os_printf("Io Resource\n");

	acpi_os_printf("  %d bit decode\n",
		       ACPI_DECODE_16 == io_data->io_decode ? 16 : 10);

	acpi_os_printf("  Range minimum base: %08X\n",
		       io_data->min_base_address);

	acpi_os_printf("  Range maximum base: %08X\n",
		       io_data->max_base_address);

	acpi_os_printf("  Alignment: %08X\n", io_data->alignment);

	acpi_os_printf("  Range Length: %08X\n", io_data->range_length);

	return;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_fixed_io
 *
 * PARAMETERS:  Data            - pointer to the resource structure to dump.
 *
 * RETURN:      None
 *
 * DESCRIPTION: Prints out the various members of the Data structure type.
 *
 ******************************************************************************/

static void acpi_rs_dump_fixed_io(union acpi_resource_data *data)
{
	struct acpi_resource_fixed_io *fixed_io_data =
	    (struct acpi_resource_fixed_io *)data;

	ACPI_FUNCTION_ENTRY();

	acpi_os_printf("Fixed Io Resource\n");
	acpi_os_printf("  Range base address: %08X",
		       fixed_io_data->base_address);

	acpi_os_printf("  Range length: %08X", fixed_io_data->range_length);

	return;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_vendor_specific
 *
 * PARAMETERS:  Data            - pointer to the resource structure to dump.
 *
 * RETURN:      None
 *
 * DESCRIPTION: Prints out the various members of the Data structure type.
 *
 ******************************************************************************/

static void acpi_rs_dump_vendor_specific(union acpi_resource_data *data)
{
	struct acpi_resource_vendor *vendor_data =
	    (struct acpi_resource_vendor *)data;
	u16 index = 0;

	ACPI_FUNCTION_ENTRY();

	acpi_os_printf("Vendor Specific Resource\n");

	acpi_os_printf("  Length: %08X\n", vendor_data->length);

	for (index = 0; index < vendor_data->length; index++) {
		acpi_os_printf("  Byte %X: %08X\n",
			       index, vendor_data->reserved[index]);
	}

	return;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_memory24
 *
 * PARAMETERS:  Data            - pointer to the resource structure to dump.
 *
 * RETURN:      None
 *
 * DESCRIPTION: Prints out the various members of the Data structure type.
 *
 ******************************************************************************/

static void acpi_rs_dump_memory24(union acpi_resource_data *data)
{
	struct acpi_resource_mem24 *memory24_data =
	    (struct acpi_resource_mem24 *)data;

	ACPI_FUNCTION_ENTRY();

	acpi_os_printf("24-Bit Memory Range Resource\n");

	acpi_os_printf("  Read%s\n",
		       ACPI_READ_WRITE_MEMORY ==
		       memory24_data->read_write_attribute ?
		       "/Write" : " only");

	acpi_os_printf("  Range minimum base: %08X\n",
		       memory24_data->min_base_address);

	acpi_os_printf("  Range maximum base: %08X\n",
		       memory24_data->max_base_address);

	acpi_os_printf("  Alignment: %08X\n", memory24_data->alignment);

	acpi_os_printf("  Range length: %08X\n", memory24_data->range_length);

	return;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_memory32
 *
 * PARAMETERS:  Data            - pointer to the resource structure to dump.
 *
 * RETURN:      None
 *
 * DESCRIPTION: Prints out the various members of the Data structure type.
 *
 ******************************************************************************/

static void acpi_rs_dump_memory32(union acpi_resource_data *data)
{
	struct acpi_resource_mem32 *memory32_data =
	    (struct acpi_resource_mem32 *)data;

	ACPI_FUNCTION_ENTRY();

	acpi_os_printf("32-Bit Memory Range Resource\n");

	acpi_os_printf("  Read%s\n",
		       ACPI_READ_WRITE_MEMORY ==
		       memory32_data->read_write_attribute ?
		       "/Write" : " only");

	acpi_os_printf("  Range minimum base: %08X\n",
		       memory32_data->min_base_address);

	acpi_os_printf("  Range maximum base: %08X\n",
		       memory32_data->max_base_address);

	acpi_os_printf("  Alignment: %08X\n", memory32_data->alignment);

	acpi_os_printf("  Range length: %08X\n", memory32_data->range_length);

	return;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_fixed_memory32
 *
 * PARAMETERS:  Data            - pointer to the resource structure to dump.
 *
 * RETURN:
 *
 * DESCRIPTION: Prints out the various members of the Data structure type.
 *
 ******************************************************************************/

static void acpi_rs_dump_fixed_memory32(union acpi_resource_data *data)
{
	struct acpi_resource_fixed_mem32 *fixed_memory32_data =
	    (struct acpi_resource_fixed_mem32 *)data;

	ACPI_FUNCTION_ENTRY();

	acpi_os_printf("32-Bit Fixed Location Memory Range Resource\n");

	acpi_os_printf("  Read%s\n",
		       ACPI_READ_WRITE_MEMORY ==
		       fixed_memory32_data->
		       read_write_attribute ? "/Write" : " Only");

	acpi_os_printf("  Range base address: %08X\n",
		       fixed_memory32_data->range_base_address);

	acpi_os_printf("  Range length: %08X\n",
		       fixed_memory32_data->range_length);

	return;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_address16
 *
 * PARAMETERS:  Data            - pointer to the resource structure to dump.
 *
 * RETURN:      None
 *
 * DESCRIPTION: Prints out the various members of the Data structure type.
 *
 ******************************************************************************/

static void acpi_rs_dump_address16(union acpi_resource_data *data)
{
	struct acpi_resource_address16 *address16_data =
	    (struct acpi_resource_address16 *)data;

	ACPI_FUNCTION_ENTRY();

	acpi_os_printf("16-Bit Address Space Resource\n");
	acpi_os_printf("  Resource Type: ");

	switch (address16_data->resource_type) {
	case ACPI_MEMORY_RANGE:

		acpi_os_printf("Memory Range\n");

		switch (address16_data->attribute.memory.cache_attribute) {
		case ACPI_NON_CACHEABLE_MEMORY:
			acpi_os_printf
			    ("  Type Specific: Noncacheable memory\n");
			break;

		case ACPI_CACHABLE_MEMORY:
			acpi_os_printf("  Type Specific: Cacheable memory\n");
			break;

		case ACPI_WRITE_COMBINING_MEMORY:
			acpi_os_printf
			    ("  Type Specific: Write-combining memory\n");
			break;

		case ACPI_PREFETCHABLE_MEMORY:
			acpi_os_printf
			    ("  Type Specific: Prefetchable memory\n");
			break;

		default:
			acpi_os_printf
			    ("  Type Specific: Invalid cache attribute\n");
			break;
		}

		acpi_os_printf("  Type Specific: Read%s\n",
			       ACPI_READ_WRITE_MEMORY ==
			       address16_data->attribute.memory.
			       read_write_attribute ? "/Write" : " Only");
		break;

	case ACPI_IO_RANGE:

		acpi_os_printf("I/O Range\n");

		switch (address16_data->attribute.io.range_attribute) {
		case ACPI_NON_ISA_ONLY_RANGES:
			acpi_os_printf
			    ("  Type Specific: Non-ISA Io Addresses\n");
			break;

		case ACPI_ISA_ONLY_RANGES:
			acpi_os_printf("  Type Specific: ISA Io Addresses\n");
			break;

		case ACPI_ENTIRE_RANGE:
			acpi_os_printf
			    ("  Type Specific: ISA and non-ISA Io Addresses\n");
			break;

		default:
			acpi_os_printf
			    ("  Type Specific: Invalid range attribute\n");
			break;
		}

		acpi_os_printf("  Type Specific: %s Translation\n",
			       ACPI_SPARSE_TRANSLATION ==
			       address16_data->attribute.io.
			       translation_attribute ? "Sparse" : "Dense");
		break;

	case ACPI_BUS_NUMBER_RANGE:

		acpi_os_printf("Bus Number Range\n");
		break;

	default:

		acpi_os_printf("0x%2.2X\n", address16_data->resource_type);
		break;
	}

	acpi_os_printf("  Resource %s\n",
		       ACPI_CONSUMER == address16_data->producer_consumer ?
		       "Consumer" : "Producer");

	acpi_os_printf("  %s decode\n",
		       ACPI_SUB_DECODE == address16_data->decode ?
		       "Subtractive" : "Positive");

	acpi_os_printf("  Min address is %s fixed\n",
		       ACPI_ADDRESS_FIXED == address16_data->min_address_fixed ?
		       "" : "not");

	acpi_os_printf("  Max address is %s fixed\n",
		       ACPI_ADDRESS_FIXED == address16_data->max_address_fixed ?
		       "" : "not");

	acpi_os_printf("  Granularity: %08X\n", address16_data->granularity);

	acpi_os_printf("  Address range min: %08X\n",
		       address16_data->min_address_range);

	acpi_os_printf("  Address range max: %08X\n",
		       address16_data->max_address_range);

	acpi_os_printf("  Address translation offset: %08X\n",
		       address16_data->address_translation_offset);

	acpi_os_printf("  Address Length: %08X\n",
		       address16_data->address_length);

	if (0xFF != address16_data->resource_source.index) {
		acpi_os_printf("  Resource Source Index: %X\n",
			       address16_data->resource_source.index);

		acpi_os_printf("  Resource Source: %s\n",
			       address16_data->resource_source.string_ptr);
	}

	return;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_address32
 *
 * PARAMETERS:  Data            - pointer to the resource structure to dump.
 *
 * RETURN:      None
 *
 * DESCRIPTION: Prints out the various members of the Data structure type.
 *
 ******************************************************************************/

static void acpi_rs_dump_address32(union acpi_resource_data *data)
{
	struct acpi_resource_address32 *address32_data =
	    (struct acpi_resource_address32 *)data;

	ACPI_FUNCTION_ENTRY();

	acpi_os_printf("32-Bit Address Space Resource\n");

	switch (address32_data->resource_type) {
	case ACPI_MEMORY_RANGE:

		acpi_os_printf("  Resource Type: Memory Range\n");

		switch (address32_data->attribute.memory.cache_attribute) {
		case ACPI_NON_CACHEABLE_MEMORY:
			acpi_os_printf
			    ("  Type Specific: Noncacheable memory\n");
			break;

		case ACPI_CACHABLE_MEMORY:
			acpi_os_printf("  Type Specific: Cacheable memory\n");
			break;

		case ACPI_WRITE_COMBINING_MEMORY:
			acpi_os_printf
			    ("  Type Specific: Write-combining memory\n");
			break;

		case ACPI_PREFETCHABLE_MEMORY:
			acpi_os_printf
			    ("  Type Specific: Prefetchable memory\n");
			break;

		default:
			acpi_os_printf
			    ("  Type Specific: Invalid cache attribute\n");
			break;
		}

		acpi_os_printf("  Type Specific: Read%s\n",
			       ACPI_READ_WRITE_MEMORY ==
			       address32_data->attribute.memory.
			       read_write_attribute ? "/Write" : " Only");
		break;

	case ACPI_IO_RANGE:

		acpi_os_printf("  Resource Type: Io Range\n");

		switch (address32_data->attribute.io.range_attribute) {
		case ACPI_NON_ISA_ONLY_RANGES:
			acpi_os_printf
			    ("  Type Specific: Non-ISA Io Addresses\n");
			break;

		case ACPI_ISA_ONLY_RANGES:
			acpi_os_printf("  Type Specific: ISA Io Addresses\n");
			break;

		case ACPI_ENTIRE_RANGE:
			acpi_os_printf
			    ("  Type Specific: ISA and non-ISA Io Addresses\n");
			break;

		default:
			acpi_os_printf
			    ("  Type Specific: Invalid Range attribute");
			break;
		}

		acpi_os_printf("  Type Specific: %s Translation\n",
			       ACPI_SPARSE_TRANSLATION ==
			       address32_data->attribute.io.
			       translation_attribute ? "Sparse" : "Dense");
		break;

	case ACPI_BUS_NUMBER_RANGE:

		acpi_os_printf("  Resource Type: Bus Number Range\n");
		break;

	default:

		acpi_os_printf("  Resource Type: 0x%2.2X\n",
			       address32_data->resource_type);
		break;
	}

	acpi_os_printf("  Resource %s\n",
		       ACPI_CONSUMER == address32_data->producer_consumer ?
		       "Consumer" : "Producer");

	acpi_os_printf("  %s decode\n",
		       ACPI_SUB_DECODE == address32_data->decode ?
		       "Subtractive" : "Positive");

	acpi_os_printf("  Min address is %s fixed\n",
		       ACPI_ADDRESS_FIXED == address32_data->min_address_fixed ?
		       "" : "not ");

	acpi_os_printf("  Max address is %s fixed\n",
		       ACPI_ADDRESS_FIXED == address32_data->max_address_fixed ?
		       "" : "not ");

	acpi_os_printf("  Granularity: %08X\n", address32_data->granularity);

	acpi_os_printf("  Address range min: %08X\n",
		       address32_data->min_address_range);

	acpi_os_printf("  Address range max: %08X\n",
		       address32_data->max_address_range);

	acpi_os_printf("  Address translation offset: %08X\n",
		       address32_data->address_translation_offset);

	acpi_os_printf("  Address Length: %08X\n",
		       address32_data->address_length);

	if (0xFF != address32_data->resource_source.index) {
		acpi_os_printf("  Resource Source Index: %X\n",
			       address32_data->resource_source.index);

		acpi_os_printf("  Resource Source: %s\n",
			       address32_data->resource_source.string_ptr);
	}

	return;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_address64
 *
 * PARAMETERS:  Data            - pointer to the resource structure to dump.
 *
 * RETURN:      None
 *
 * DESCRIPTION: Prints out the various members of the Data structure type.
 *
 ******************************************************************************/

static void acpi_rs_dump_address64(union acpi_resource_data *data)
{
	struct acpi_resource_address64 *address64_data =
	    (struct acpi_resource_address64 *)data;

	ACPI_FUNCTION_ENTRY();

	acpi_os_printf("64-Bit Address Space Resource\n");

	switch (address64_data->resource_type) {
	case ACPI_MEMORY_RANGE:

		acpi_os_printf("  Resource Type: Memory Range\n");

		switch (address64_data->attribute.memory.cache_attribute) {
		case ACPI_NON_CACHEABLE_MEMORY:
			acpi_os_printf
			    ("  Type Specific: Noncacheable memory\n");
			break;

		case ACPI_CACHABLE_MEMORY:
			acpi_os_printf("  Type Specific: Cacheable memory\n");
			break;

		case ACPI_WRITE_COMBINING_MEMORY:
			acpi_os_printf
			    ("  Type Specific: Write-combining memory\n");
			break;

		case ACPI_PREFETCHABLE_MEMORY:
			acpi_os_printf
			    ("  Type Specific: Prefetchable memory\n");
			break;

		default:
			acpi_os_printf
			    ("  Type Specific: Invalid cache attribute\n");
			break;
		}

		acpi_os_printf("  Type Specific: Read%s\n",
			       ACPI_READ_WRITE_MEMORY ==
			       address64_data->attribute.memory.
			       read_write_attribute ? "/Write" : " Only");
		break;

	case ACPI_IO_RANGE:

		acpi_os_printf("  Resource Type: Io Range\n");

		switch (address64_data->attribute.io.range_attribute) {
		case ACPI_NON_ISA_ONLY_RANGES:
			acpi_os_printf
			    ("  Type Specific: Non-ISA Io Addresses\n");
			break;

		case ACPI_ISA_ONLY_RANGES:
			acpi_os_printf("  Type Specific: ISA Io Addresses\n");
			break;

		case ACPI_ENTIRE_RANGE:
			acpi_os_printf
			    ("  Type Specific: ISA and non-ISA Io Addresses\n");
			break;

		default:
			acpi_os_printf
			    ("  Type Specific: Invalid Range attribute");
			break;
		}

		acpi_os_printf("  Type Specific: %s Translation\n",
			       ACPI_SPARSE_TRANSLATION ==
			       address64_data->attribute.io.
			       translation_attribute ? "Sparse" : "Dense");
		break;

	case ACPI_BUS_NUMBER_RANGE:

		acpi_os_printf("  Resource Type: Bus Number Range\n");
		break;

	default:

		acpi_os_printf("  Resource Type: 0x%2.2X\n",
			       address64_data->resource_type);
		break;
	}

	acpi_os_printf("  Resource %s\n",
		       ACPI_CONSUMER == address64_data->producer_consumer ?
		       "Consumer" : "Producer");

	acpi_os_printf("  %s decode\n",
		       ACPI_SUB_DECODE == address64_data->decode ?
		       "Subtractive" : "Positive");

	acpi_os_printf("  Min address is %s fixed\n",
		       ACPI_ADDRESS_FIXED == address64_data->min_address_fixed ?
		       "" : "not ");

	acpi_os_printf("  Max address is %s fixed\n",
		       ACPI_ADDRESS_FIXED == address64_data->max_address_fixed ?
		       "" : "not ");

	acpi_os_printf("  Granularity: %8.8X%8.8X\n",
		       ACPI_FORMAT_UINT64(address64_data->granularity));

	acpi_os_printf("  Address range min: %8.8X%8.8X\n",
		       ACPI_FORMAT_UINT64(address64_data->min_address_range));

	acpi_os_printf("  Address range max: %8.8X%8.8X\n",
		       ACPI_FORMAT_UINT64(address64_data->max_address_range));

	acpi_os_printf("  Address translation offset: %8.8X%8.8X\n",
		       ACPI_FORMAT_UINT64(address64_data->
					  address_translation_offset));

	acpi_os_printf("  Address Length: %8.8X%8.8X\n",
		       ACPI_FORMAT_UINT64(address64_data->address_length));

	acpi_os_printf("  Type Specific Attributes: %8.8X%8.8X\n",
		       ACPI_FORMAT_UINT64(address64_data->
					  type_specific_attributes));

	if (0xFF != address64_data->resource_source.index) {
		acpi_os_printf("  Resource Source Index: %X\n",
			       address64_data->resource_source.index);

		acpi_os_printf("  Resource Source: %s\n",
			       address64_data->resource_source.string_ptr);
	}

	return;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_extended_irq
 *
 * PARAMETERS:  Data            - pointer to the resource structure to dump.
 *
 * RETURN:      None
 *
 * DESCRIPTION: Prints out the various members of the Data structure type.
 *
 ******************************************************************************/

static void acpi_rs_dump_extended_irq(union acpi_resource_data *data)
{
	struct acpi_resource_ext_irq *ext_irq_data =
	    (struct acpi_resource_ext_irq *)data;
	u8 index = 0;

	ACPI_FUNCTION_ENTRY();

	acpi_os_printf("Extended IRQ Resource\n");

	acpi_os_printf("  Resource %s\n",
		       ACPI_CONSUMER == ext_irq_data->producer_consumer ?
		       "Consumer" : "Producer");

	acpi_os_printf("  %s\n",
		       ACPI_LEVEL_SENSITIVE == ext_irq_data->edge_level ?
		       "Level" : "Edge");

	acpi_os_printf("  Active %s\n",
		       ACPI_ACTIVE_LOW == ext_irq_data->active_high_low ?
		       "low" : "high");

	acpi_os_printf("  %s\n",
		       ACPI_SHARED == ext_irq_data->shared_exclusive ?
		       "Shared" : "Exclusive");

	acpi_os_printf("  Interrupts : %X ( ",
		       ext_irq_data->number_of_interrupts);

	for (index = 0; index < ext_irq_data->number_of_interrupts; index++) {
		acpi_os_printf("%X ", ext_irq_data->interrupts[index]);
	}

	acpi_os_printf(")\n");

	if (0xFF != ext_irq_data->resource_source.index) {
		acpi_os_printf("  Resource Source Index: %X",
			       ext_irq_data->resource_source.index);

		acpi_os_printf("  Resource Source: %s",
			       ext_irq_data->resource_source.string_ptr);
	}

	return;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_resource_list
 *
 * PARAMETERS:  Resource        - pointer to the resource structure to dump.
 *
 * RETURN:      None
 *
 * DESCRIPTION: Dispatches the structure to the correct dump routine.
 *
 ******************************************************************************/

void acpi_rs_dump_resource_list(struct acpi_resource *resource)
{
	u8 count = 0;
	u8 done = FALSE;

	ACPI_FUNCTION_ENTRY();

	if (acpi_dbg_level & ACPI_LV_RESOURCES && _COMPONENT & acpi_dbg_layer) {
		while (!done) {
			acpi_os_printf("Resource structure %X.\n", count++);

			switch (resource->id) {
			case ACPI_RSTYPE_IRQ:
				acpi_rs_dump_irq(&resource->data);
				break;

			case ACPI_RSTYPE_DMA:
				acpi_rs_dump_dma(&resource->data);
				break;

			case ACPI_RSTYPE_START_DPF:
				acpi_rs_dump_start_depend_fns(&resource->data);
				break;

			case ACPI_RSTYPE_END_DPF:
				acpi_os_printf
				    ("end_dependent_functions Resource\n");
				/* acpi_rs_dump_end_dependent_functions (Resource->Data); */
				break;

			case ACPI_RSTYPE_IO:
				acpi_rs_dump_io(&resource->data);
				break;

			case ACPI_RSTYPE_FIXED_IO:
				acpi_rs_dump_fixed_io(&resource->data);
				break;

			case ACPI_RSTYPE_VENDOR:
				acpi_rs_dump_vendor_specific(&resource->data);
				break;

			case ACPI_RSTYPE_END_TAG:
				/*rs_dump_end_tag (Resource->Data); */
				acpi_os_printf("end_tag Resource\n");
				done = TRUE;
				break;

			case ACPI_RSTYPE_MEM24:
				acpi_rs_dump_memory24(&resource->data);
				break;

			case ACPI_RSTYPE_MEM32:
				acpi_rs_dump_memory32(&resource->data);
				break;

			case ACPI_RSTYPE_FIXED_MEM32:
				acpi_rs_dump_fixed_memory32(&resource->data);
				break;

			case ACPI_RSTYPE_ADDRESS16:
				acpi_rs_dump_address16(&resource->data);
				break;

			case ACPI_RSTYPE_ADDRESS32:
				acpi_rs_dump_address32(&resource->data);
				break;

			case ACPI_RSTYPE_ADDRESS64:
				acpi_rs_dump_address64(&resource->data);
				break;

			case ACPI_RSTYPE_EXT_IRQ:
				acpi_rs_dump_extended_irq(&resource->data);
				break;

			default:
				acpi_os_printf("Invalid resource type\n");
				break;

			}

			resource =
			    ACPI_PTR_ADD(struct acpi_resource, resource,
					 resource->length);
		}
	}

	return;
}

/*******************************************************************************
 *
 * FUNCTION:    acpi_rs_dump_irq_list
 *
 * PARAMETERS:  route_table     - pointer to the routing table to dump.
 *
 * RETURN:      None
 *
 * DESCRIPTION: Dispatches the structures to the correct dump routine.
 *
 ******************************************************************************/

void acpi_rs_dump_irq_list(u8 * route_table)
{
	u8 *buffer = route_table;
	u8 count = 0;
	u8 done = FALSE;
	struct acpi_pci_routing_table *prt_element;

	ACPI_FUNCTION_ENTRY();

	if (acpi_dbg_level & ACPI_LV_RESOURCES && _COMPONENT & acpi_dbg_layer) {
		prt_element =
		    ACPI_CAST_PTR(struct acpi_pci_routing_table, buffer);

		while (!done) {
			acpi_os_printf("PCI IRQ Routing Table structure %X.\n",
				       count++);

			acpi_os_printf("  Address: %8.8X%8.8X\n",
				       ACPI_FORMAT_UINT64(prt_element->
							  address));

			acpi_os_printf("  Pin: %X\n", prt_element->pin);

			acpi_os_printf("  Source: %s\n", prt_element->source);

			acpi_os_printf("  source_index: %X\n",
				       prt_element->source_index);

			buffer += prt_element->length;
			prt_element =
			    ACPI_CAST_PTR(struct acpi_pci_routing_table,
					  buffer);
			if (0 == prt_element->length) {
				done = TRUE;
			}
		}
	}

	return;
}

#endif