Deleted Added
full compact
dbdisply.c (129684) dbdisply.c (131440)
1/*******************************************************************************
2 *
3 * Module Name: dbdisply - debug display commands
1/*******************************************************************************
2 *
3 * Module Name: dbdisply - debug display commands
4 * $Revision: 105 $
4 * $Revision: 106 $
5 *
6 ******************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.

--- 806 unchanged lines hidden (view full) ---

819 GpeBlock->RegisterCount,
820 ACPI_MUL_8 (GpeBlock->RegisterCount));
821 AcpiOsPrintf (" GPE range: 0x%X to 0x%X\n",
822 GpeBlock->BlockBaseNumber,
823 GpeBlock->BlockBaseNumber +
824 (GpeBlock->RegisterCount * 8) -1);
825 AcpiOsPrintf (" RegisterInfo: %p Status %8.8X%8.8X Enable %8.8X%8.8X\n",
826 GpeBlock->RegisterInfo,
5 *
6 ******************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999 - 2004, Intel Corp.

--- 806 unchanged lines hidden (view full) ---

819 GpeBlock->RegisterCount,
820 ACPI_MUL_8 (GpeBlock->RegisterCount));
821 AcpiOsPrintf (" GPE range: 0x%X to 0x%X\n",
822 GpeBlock->BlockBaseNumber,
823 GpeBlock->BlockBaseNumber +
824 (GpeBlock->RegisterCount * 8) -1);
825 AcpiOsPrintf (" RegisterInfo: %p Status %8.8X%8.8X Enable %8.8X%8.8X\n",
826 GpeBlock->RegisterInfo,
827 ACPI_FORMAT_UINT64 (GpeBlock->RegisterInfo->StatusAddress.Address),
828 ACPI_FORMAT_UINT64 (GpeBlock->RegisterInfo->EnableAddress.Address));
827 ACPI_FORMAT_UINT64 (ACPI_GET_ADDRESS (GpeBlock->RegisterInfo->StatusAddress.Address)),
828 ACPI_FORMAT_UINT64 (ACPI_GET_ADDRESS (GpeBlock->RegisterInfo->EnableAddress.Address)));
829 AcpiOsPrintf (" EventInfo: %p\n", GpeBlock->EventInfo);
830
831 /* Examine each GPE Register within the block */
832
833 for (i = 0; i < GpeBlock->RegisterCount; i++)
834 {
835 GpeRegisterInfo = &GpeBlock->RegisterInfo[i];
836
837 AcpiOsPrintf (
838 " Reg %u: WakeEnable %2.2X, RunEnable %2.2X Status %8.8X%8.8X Enable %8.8X%8.8X\n",
839 i, GpeRegisterInfo->EnableForWake,
840 GpeRegisterInfo->EnableForRun,
829 AcpiOsPrintf (" EventInfo: %p\n", GpeBlock->EventInfo);
830
831 /* Examine each GPE Register within the block */
832
833 for (i = 0; i < GpeBlock->RegisterCount; i++)
834 {
835 GpeRegisterInfo = &GpeBlock->RegisterInfo[i];
836
837 AcpiOsPrintf (
838 " Reg %u: WakeEnable %2.2X, RunEnable %2.2X Status %8.8X%8.8X Enable %8.8X%8.8X\n",
839 i, GpeRegisterInfo->EnableForWake,
840 GpeRegisterInfo->EnableForRun,
841 ACPI_FORMAT_UINT64 (GpeRegisterInfo->StatusAddress.Address),
842 ACPI_FORMAT_UINT64 (GpeRegisterInfo->EnableAddress.Address));
841 ACPI_FORMAT_UINT64 (ACPI_GET_ADDRESS (GpeRegisterInfo->StatusAddress.Address)),
842 ACPI_FORMAT_UINT64 (ACPI_GET_ADDRESS (GpeRegisterInfo->EnableAddress.Address)));
843
844 /* Now look at the individual GPEs in this byte register */
845
846 for (j = 0; j < ACPI_GPE_REGISTER_WIDTH; j++)
847 {
848 GpeIndex = (i * ACPI_GPE_REGISTER_WIDTH) + j;
849 GpeEventInfo = &GpeBlock->EventInfo[GpeIndex];
850

--- 86 unchanged lines hidden ---
843
844 /* Now look at the individual GPEs in this byte register */
845
846 for (j = 0; j < ACPI_GPE_REGISTER_WIDTH; j++)
847 {
848 GpeIndex = (i * ACPI_GPE_REGISTER_WIDTH) + j;
849 GpeEventInfo = &GpeBlock->EventInfo[GpeIndex];
850

--- 86 unchanged lines hidden ---