]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ACPI/IORT: Add PMCG platform information for HiSilicon HIP09A
authorQinxin Xia <xiaqinxin@huawei.com>
Thu, 5 Dec 2024 01:33:31 +0000 (09:33 +0800)
committerCatalin Marinas <catalin.marinas@arm.com>
Thu, 5 Dec 2024 11:24:18 +0000 (11:24 +0000)
HiSilicon HIP09A platforms using the same SMMU PMCG with HIP09
and thus suffers the same erratum. List them in the PMCG platform
information list without introducing a new SMMU PMCG Model.

Update the silicon-errata.rst as well.

Reviewed-by: Yicong Yang <yangyicong@hisilicon.com>
Acked-by: Hanjun Guo <guohanjun@huawei.com>
Signed-off-by: Qinxin Xia <xiaqinxin@huawei.com>
Link: https://lore.kernel.org/r/20241205013331.1484017-1-xiaqinxin@huawei.com
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Documentation/arch/arm64/silicon-errata.rst
drivers/acpi/arm64/iort.c

index 77db10e944f039a8920a3e8dd9cfff7757b56f32..b42fea07c5cec8af004ffdce00ed9523ebd79bb8 100644 (file)
@@ -255,8 +255,9 @@ stable kernels.
 +----------------+-----------------+-----------------+-----------------------------+
 | Hisilicon      | Hip08 SMMU PMCG | #162001800      | N/A                         |
 +----------------+-----------------+-----------------+-----------------------------+
-| Hisilicon      | Hip{08,09,10,10C| #162001900      | N/A                         |
-|                | ,11} SMMU PMCG  |                 |                             |
+| Hisilicon      | Hip{08,09,09A,10| #162001900      | N/A                         |
+|                | ,10C,11}        |                 |                             |
+|                | SMMU PMCG       |                 |                             |
 +----------------+-----------------+-----------------+-----------------------------+
 | Hisilicon      | Hip09           | #162100801      | HISILICON_ERRATUM_162100801 |
 +----------------+-----------------+-----------------+-----------------------------+
index 1f7e4c691d9ee35235bec82a9d394c7db5c10648..98759d6199d3acb72f8fd942a7632c9697280109 100644 (file)
@@ -1716,6 +1716,8 @@ static struct acpi_platform_list pmcg_plat_info[] __initdata = {
        /* HiSilicon Hip09 Platform */
        {"HISI  ", "HIP09   ", 0, ACPI_SIG_IORT, greater_than_or_equal,
         "Erratum #162001900", IORT_SMMU_V3_PMCG_HISI_HIP09},
+       {"HISI  ", "HIP09A  ", 0, ACPI_SIG_IORT, greater_than_or_equal,
+        "Erratum #162001900", IORT_SMMU_V3_PMCG_HISI_HIP09},
        /* HiSilicon Hip10/11 Platform uses the same SMMU IP with Hip09 */
        {"HISI  ", "HIP10   ", 0, ACPI_SIG_IORT, greater_than_or_equal,
         "Erratum #162001900", IORT_SMMU_V3_PMCG_HISI_HIP09},