acpica: remove diagnostic messages

during PCIe config access.

Issue #4532
This commit is contained in:
Alexander Boettcher 2022-06-14 13:23:58 +02:00 committed by Christian Helmuth
parent 438e0adc77
commit 9b5840cb70

View File

@ -41,37 +41,6 @@ struct Bdf
}
};
static void dump_read(char const * const func, ACPI_PCI_ID *pcidev,
UINT32 reg, UINT64 value, UINT32 width)
{
using namespace Genode;
log(func, ": ", Bdf(pcidev->Bus, pcidev->Device, pcidev->Function), " "
"reg=", Hex(reg, Hex::PREFIX, Hex::PAD), " "
"width=", width, width < 10 ? " " : "", " -> "
"value=", Genode::Hex(value));
}
static void dump_write(char const * const func, ACPI_PCI_ID *pcidev,
UINT32 reg, UINT64 value, UINT32 width)
{
using namespace Genode;
warning(func, ": ", Bdf(pcidev->Bus, pcidev->Device, pcidev->Function), " "
"reg=", Hex(reg, Hex::PREFIX, Hex::PAD), " "
"width=", width, width < 10 ? " " : "", " -> "
"value=", Genode::Hex(value));
}
static void dump_error(char const * const func, ACPI_PCI_ID *pcidev,
UINT32 reg, UINT32 width)
{
error(func, " unknown device - segment=", pcidev->Segment, " ",
"bdf=", Bdf(pcidev->Bus, pcidev->Device, pcidev->Function), " ",
"reg=", Genode::Hex(reg), " "
"width=", Genode::Hex(width));
}
/*************************
* Acpica PCI OS backend *
@ -117,8 +86,6 @@ ACPI_STATUS AcpiOsReadPciConfiguration (ACPI_PCI_ID *pcidev, UINT32 reg,
*value = client.config_read(reg, access_size);
dump_read(__func__, pcidev, reg, *value, width);
Acpica::platform().release_device(client.rpc_cap());
return AE_OK;
}
@ -128,8 +95,6 @@ ACPI_STATUS AcpiOsReadPciConfiguration (ACPI_PCI_ID *pcidev, UINT32 reg,
Acpica::platform().release_device(client.rpc_cap());
}
dump_error(__func__, pcidev, reg, width);
*value = ~0U;
return AE_OK;
}
@ -172,8 +137,6 @@ ACPI_STATUS AcpiOsWritePciConfiguration (ACPI_PCI_ID *pcidev, UINT32 reg,
" out of supported config space range ",
" -> wrong location will be written");
dump_write(__func__, pcidev, reg, value, width);
Acpica::platform().release_device(client.rpc_cap());
return AE_OK;
}
@ -183,7 +146,5 @@ ACPI_STATUS AcpiOsWritePciConfiguration (ACPI_PCI_ID *pcidev, UINT32 reg,
Acpica::platform().release_device(client.rpc_cap());
}
dump_error(__func__, pcidev, reg, width);
return AE_OK;
}