From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 43BCD34D38E; Tue, 11 Nov 2025 01:26:19 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762824380; cv=none; b=iMCeJmzjy5ijVoBuiXKyNIbvybdqjkcTz3jm20ZbgAlWHiWDIfFqnitw12uoLpeBeZePzMZq0nmxNsDhAU/8FeTEJpma7AYfq3htEFljf99aazxDjc9TUwa3AgCJ/i6uVmmfrzr13hrUIFrH64ql7OqFNVIRXuedzE52X7zmWQs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762824380; c=relaxed/simple; bh=wMuM6b4bCUOOVRJpI85pk7+NcnkzRN7kmbG7hW8l7S4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=QP/fkYwOo3sXnht7AcZLyh5BQ7AXWiC0z8i/3R46GbcZQt58sLB3c959KinYtnizozGPRekeDQpX2WWJq8toDvapIBA6IvxV8dZvEHh4qDpZBA4qe6Eg9rfeLB9Nu7BP47ReehNpbV3x2WKN7cM2DT7UN0IghlA6e2GHI7f+YqY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Yfzhtj6n; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="Yfzhtj6n" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 80B76C113D0; Tue, 11 Nov 2025 01:26:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1762824379; bh=wMuM6b4bCUOOVRJpI85pk7+NcnkzRN7kmbG7hW8l7S4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Yfzhtj6n3Rrb5YsFvX3zfzCtNPxqMiYQTjrUzUfcHIOn+hj9MepJQDKGKpt2T9aJK CIUZWQFHV+TekwGJdt+C4JSNEDUs0DqsdgpZ67G+U//mTmcoAO3Su5OtGaQtiUaJyp GdtGqrqQOxSYs136/eHPCgB5pb+87IdRHsDn2GV8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Atish Patra , Andy Shevchenko , "Rafael J. Wysocki" , Sunil V L , Anup Patel , Jassi Brar , Paul Walmsley , Sasha Levin Subject: [PATCH 6.12 432/565] ACPI: scan: Update honor list for RPMI System MSI Date: Tue, 11 Nov 2025 09:44:48 +0900 Message-ID: <20251111004536.592577455@linuxfoundation.org> X-Mailer: git-send-email 2.51.2 In-Reply-To: <20251111004526.816196597@linuxfoundation.org> References: <20251111004526.816196597@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Sunil V L [ Upstream commit 4215d1cf59e4b272755f4277a05cd5967935a704 ] The RPMI System MSI interrupt controller (just like PLIC and APLIC) needs to probed prior to devices like GED which use interrupts provided by it. Also, it has dependency on the SBI MPXY mailbox device. Add HIDs of RPMI System MSI and SBI MPXY mailbox devices to the honor list so that those dependencies are handled. Reviewed-by: Atish Patra Reviewed-by: Andy Shevchenko Acked-by: Rafael J. Wysocki Signed-off-by: Sunil V L Signed-off-by: Anup Patel Acked-by: Jassi Brar Link: https://lore.kernel.org/r/20250818040920.272664-17-apatel@ventanamicro.com Signed-off-by: Paul Walmsley Signed-off-by: Sasha Levin --- drivers/acpi/scan.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index 4ef94d06365fc..ba98763ced7d4 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c @@ -862,6 +862,8 @@ static const char * const acpi_honor_dep_ids[] = { "INTC10CF", /* IVSC (MTL) driver must be loaded to allow i2c access to camera sensors */ "RSCV0001", /* RISC-V PLIC */ "RSCV0002", /* RISC-V APLIC */ + "RSCV0005", /* RISC-V SBI MPXY MBOX */ + "RSCV0006", /* RISC-V RPMI SYSMSI */ "PNP0C0F", /* PCI Link Device */ NULL }; -- 2.51.0