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 4E6B122B8A1; Mon, 2 Jun 2025 14:06:59 +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=1748873220; cv=none; b=bVNZnCtI66T9BrtTC8+RntEzivmLowFzOMSpULG8sb3wEC9u2XRdQE5ZMcVo/yIGfyRDtoeZ55mgTET+T6qPadqv3MJqKdciumWvhXrEdhnt3j7NsRPI7tIbhmbx/tl4UIUMC1V8az523YN52gi90FrhfkWik3nYmXQkqVHoOg4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1748873220; c=relaxed/simple; bh=Hf47s/tgRbCDzeRCdDSV6JQ/7aqIXp9Cdt2+HnrXL4Q=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=QPtOx3MAJbAY9pdODJDX8SByusMB3kYrq4bU5z8A6Dz3chCF7J9AHAsjbco+T4sJM20/4lGX8YoeokmsFWcdY0OdF7+m8TmmsDnLMN3oWnfpYB/xBOcHxj7/jFwAjeSj9Oc0GoWL26lC2ETAaRRxzepzOCySWKHEEkRFnQ5whiM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=UM4eUaY2; 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="UM4eUaY2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 59E6CC4CEEB; Mon, 2 Jun 2025 14:06:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1748873219; bh=Hf47s/tgRbCDzeRCdDSV6JQ/7aqIXp9Cdt2+HnrXL4Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=UM4eUaY2zxOG4Ee6M423gZQpZA1cjM/AKMYpUPhxCBx2ENQfINuZVyPxHH8TjgFKk PLjfyhXkRgpgbBg1TcmAuSsRU2p5mSQ0zZUlcl97Gz4A94lfKLnOilBKOJmmAdQ1sd oxkxS4krFJIkieLl6epo2zCYzFcl0RN9vDaxwR2A= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Diogo Ivo , "Rafael J. Wysocki" , Sasha Levin Subject: [PATCH 6.6 045/444] ACPI: PNP: Add Intel OC Watchdog IDs to non-PNP device list Date: Mon, 2 Jun 2025 15:41:49 +0200 Message-ID: <20250602134342.756992454@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250602134340.906731340@linuxfoundation.org> References: <20250602134340.906731340@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Diogo Ivo [ Upstream commit f06777cf2bbc21dd8c71d6e3906934e56b4e18e4 ] Intel Over-Clocking Watchdogs are described in ACPI tables by both the generic PNP0C02 _CID and their ACPI _HID. The presence of the _CID then causes the PNP scan handler to attach to the watchdog, preventing the actual watchdog driver from binding. Address this by adding the ACPI _HIDs to the list of non-PNP devices, so that the PNP scan handler is bypassed. Note that these watchdogs can be described by multiple _HIDs for what seems to be identical hardware. This commit is not a complete list of all the possible watchdog ACPI _HIDs. Signed-off-by: Diogo Ivo Link: https://patch.msgid.link/20250317-ivo-intel_oc_wdt-v3-2-32c396f4eefd@siemens.com Signed-off-by: Rafael J. Wysocki Signed-off-by: Sasha Levin --- drivers/acpi/acpi_pnp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/acpi/acpi_pnp.c b/drivers/acpi/acpi_pnp.c index 01abf26764b00..3f5a1840f5733 100644 --- a/drivers/acpi/acpi_pnp.c +++ b/drivers/acpi/acpi_pnp.c @@ -355,8 +355,10 @@ static bool acpi_pnp_match(const char *idstr, const struct acpi_device_id **matc * device represented by it. */ static const struct acpi_device_id acpi_nonpnp_device_ids[] = { + {"INT3F0D"}, {"INTC1080"}, {"INTC1081"}, + {"INTC1099"}, {""}, }; -- 2.39.5