aboutsummaryrefslogtreecommitdiff
path: root/source/components/utilities
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2021-04-01 22:01:03 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2021-04-01 22:01:03 +0000
commit1e02e5b0ba8634758c128dcb43c67342c7219cd4 (patch)
treeda0db69c306079644fef78169ad973ae80b86f85 /source/components/utilities
parenta61ec1492c58c40bd0d968794c380668c157e2ef (diff)
Import ACPICA 20210331.vendor/acpica/20210331
Diffstat (limited to 'source/components/utilities')
-rw-r--r--source/components/utilities/utresdecode.c11
-rw-r--r--source/components/utilities/utresrc.c1
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),
};