From 38a6106b1099646f25657bba53cefb80886721a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Monin?= Date: Mon, 27 Oct 2025 14:12:17 +0100 Subject: [PATCH] lib: utils/ipi: mswi: add MIPS P8700 compatible MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The MSWI present in the MIPS P8700 is compliant with the ACLINT specification, so add a dedicated compatible string for it. Signed-off-by: BenoƮt Monin Reviewed-by: Anup Patel Link: https://lore.kernel.org/r/20251027-p8700-aclint-v2-1-f10cbfb66e92@bootlin.com Signed-off-by: Anup Patel --- lib/utils/ipi/fdt_ipi_mswi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/utils/ipi/fdt_ipi_mswi.c b/lib/utils/ipi/fdt_ipi_mswi.c index 20f6fbcc..6d8f6bf3 100644 --- a/lib/utils/ipi/fdt_ipi_mswi.c +++ b/lib/utils/ipi/fdt_ipi_mswi.c @@ -57,6 +57,7 @@ static const struct fdt_match ipi_mswi_match[] = { { .compatible = "sifive,clint0", .data = &clint_offset }, { .compatible = "thead,c900-clint", .data = &clint_offset }, { .compatible = "thead,c900-aclint-mswi" }, + { .compatible = "mips,p8700-aclint-mswi" }, { .compatible = "riscv,aclint-mswi" }, { }, };