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 5036C35BDB5; Wed, 3 Dec 2025 16:22:29 +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=1764778949; cv=none; b=FXxmBG2O/Aa9agCDuxaTdcDXVoevq8AtGZIIckAXBhk5TpxChdSeBTkkm4hnOzhjb2lRH5n6RbgLsBM3SxCzXsvvw8cqOVtHRPl/QA1S135yXpGFVm52dQ2qfkR/7LAYWRWdqqjygBu97W38aiwgkUxTVneGnOxGXgFAL9vJJJk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1764778949; c=relaxed/simple; bh=8ou2dJKOZog1CYMhnsdE+4tjP2hTglYU+XdUYHM8qyc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=L1uIp2uezLHKMdkqdhMfygBzrGyFzy+e8cXtxJ5jGHAPTlwIk9ThCKH1WEj9YjWBasrofRVb9g+CsX8wN8ObqYH9Pnn4E1Eu+/+ObkmglWo2PMfcHAKQvJPi2GoSwDctTwhSuk0xufGO+QrFmWhw/9DANsWTtfLLv7BGBSDW1l8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=WyspxIeO; 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="WyspxIeO" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AD0E9C4CEF5; Wed, 3 Dec 2025 16:22:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1764778949; bh=8ou2dJKOZog1CYMhnsdE+4tjP2hTglYU+XdUYHM8qyc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=WyspxIeOGUQQmeLRyH38xyia74ggRvHmSp8fJy/9lOEadJSF4If9vkV2huKPJec/2 qWlQs0FJRuyk9mYyLmt7owSfTqtBOxGYnoVdz+udh8vjPn/b9p/OyNyJXEFb7ddzBg 86eAwDZmRLpank1B9hzvp3xewDjld6M4vMfD/h4c= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Hans de Goede , "Rafael J. Wysocki" , Sasha Levin Subject: [PATCH 6.1 102/568] ACPI: scan: Add Intel CVS ACPI HIDs to acpi_ignore_dep_ids[] Date: Wed, 3 Dec 2025 16:21:44 +0100 Message-ID: <20251203152444.472793151@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20251203152440.645416925@linuxfoundation.org> References: <20251203152440.645416925@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.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Hans de Goede [ Upstream commit 4405a214df146775338a1e6232701a29024b82e1 ] Some x86/ACPI laptops with MIPI cameras have a INTC10DE or INTC10E0 ACPI device in the _DEP dependency list of the ACPI devices for the camera- sensors (which have flags.honor_deps set). These devices are for an Intel Vision CVS chip for which an out of tree driver is available [1]. The camera sensor works fine without a driver being loaded for this ACPI device on the 2 laptops this was tested on: ThinkPad X1 Carbon Gen 12 (Meteor Lake) ThinkPad X1 2-in-1 Gen 10 (Arrow Lake) For now add these HIDs to acpi_ignore_dep_ids[] so that acpi_dev_ready_for_enumeration() will return true once the other _DEP dependencies are met and an i2c_client for the camera sensor will get instantiated. Link: https://github.com/intel/vision-drivers/ [1] Signed-off-by: Hans de Goede Link: https://patch.msgid.link/20250829142748.21089-1-hansg@kernel.org Signed-off-by: Rafael J. Wysocki 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 293cdf486fd81..9e8f38e525893 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c @@ -785,6 +785,8 @@ static bool acpi_info_matches_ids(struct acpi_device_info *info, static const char * const acpi_ignore_dep_ids[] = { "PNP0D80", /* Windows-compatible System Power Management Controller */ "INT33BD", /* Intel Baytrail Mailbox Device */ + "INTC10DE", /* Intel CVS LNL */ + "INTC10E0", /* Intel CVS ARL */ "LATT2021", /* Lattice FW Update Client Driver */ NULL }; -- 2.51.0