diff options
Diffstat (limited to 'source/components/utilities')
-rw-r--r-- | source/components/utilities/utresdecode.c | 11 | ||||
-rw-r--r-- | source/components/utilities/utresrc.c | 1 |
2 files changed, 11 insertions, 1 deletions
diff --git a/source/components/utilities/utresdecode.c b/source/components/utilities/utresdecode.c index e7c10afaae74..561240f06724 100644 --- a/source/components/utilities/utresdecode.c +++ b/source/components/utilities/utresdecode.c @@ -240,6 +240,14 @@ const char *AcpiGbl_MtpDecode[] = "AddressRangeNVS" }; +const char *AcpiGbl_PhyDecode[] = +{ + "Type C", + "Type D", + "Unknown Type", + "Unknown Type" +}; + const char *AcpiGbl_RngDecode[] = { "InvalidRanges", @@ -331,7 +339,8 @@ const char *AcpiGbl_SbtDecode[] = "/* UNKNOWN serial bus type */", "I2C", "SPI", - "UART" + "UART", + "CSI2" }; /* I2C serial bus access mode */ diff --git a/source/components/utilities/utresrc.c b/source/components/utilities/utresrc.c index b7c4aaceb8e2..70e5119e807f 100644 --- a/source/components/utilities/utresrc.c +++ b/source/components/utilities/utresrc.c @@ -212,6 +212,7 @@ const UINT8 AcpiGbl_ResourceAmlSerialBusSizes[] = ACPI_AML_SIZE_LARGE (AML_RESOURCE_I2C_SERIALBUS), ACPI_AML_SIZE_LARGE (AML_RESOURCE_SPI_SERIALBUS), ACPI_AML_SIZE_LARGE (AML_RESOURCE_UART_SERIALBUS), + ACPI_AML_SIZE_LARGE (AML_RESOURCE_CSI2_SERIALBUS), }; |