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 85A9450094F; Fri, 9 Jan 2026 12:07:31 +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=1767960451; cv=none; b=QRASi3LuTsEmRXTaHXQTaqUU0Eupn2NgmxeiPk5XNtbvpkBwvCj/eBY8Hq2bKEhNoQsidTmAjb3CTXJgUG+Gr8YKRzcRIXdRXOZ6IbbBcj0/bw8yLPz/tZL9nM9WhUVa+OaHvBKaw1ObbxvIo0QJ9fbWsZ0BG3ySPSV8oL4CgeA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1767960451; c=relaxed/simple; bh=ku9NIsnUDQcgjtmrnQ2INZKbB0LQbbYz35pF2sV6Sak=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=fD7bMXW2aqiTU/8Yd4ilK+oGe7RGhrRGsSrMfTbfyOOZwWjPbDYuuYg++/7W56gdrbGIpct06eRg0put8M7AamRjiHCjm68Jo3xOGhraYeODB8UAiz5+CZIkcc9hkYWpxiSLan52toOEnu8StfjPu7vHHZJnZoR82XPrle3BCnQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=YGuQzmsc; 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="YGuQzmsc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 11B6DC4CEF1; Fri, 9 Jan 2026 12:07:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1767960451; bh=ku9NIsnUDQcgjtmrnQ2INZKbB0LQbbYz35pF2sV6Sak=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=YGuQzmscbBnskOGWiBF0hXRe9ePWy3sRu+ZBKwyAWHJFnp0la6RXilAY/72AI9Jc0 6pLQbesxDEUdqhyXlcFTKcQ3nCsQ8/+tCaBDcD3yr8Tjx9jy9fdi2keo9Gi5DFovgI qBLaWCk5EYgRcS9Wepzmor979BwEJvJgHh9jznwM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, "Chia-Lin Kao (AceLan)" , Hans de Goede , =?UTF-8?q?Ilpo=20J=C3=A4rvinen?= , Sasha Levin Subject: [PATCH 6.6 408/737] platform/x86/intel/hid: Add Dell Pro Rugged 10/12 tablet to VGBS DMI quirks Date: Fri, 9 Jan 2026 12:39:07 +0100 Message-ID: <20260109112149.346478946@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260109112133.973195406@linuxfoundation.org> References: <20260109112133.973195406@linuxfoundation.org> User-Agent: quilt/0.69 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-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Chia-Lin Kao (AceLan) [ Upstream commit b169e1733cadb614e87f69d7a5ae1b186c50d313 ] Dell Pro Rugged 10/12 tablets has a reliable VGBS method. If VGBS is not called on boot, the on-screen keyboard won't appear if the device is booted without a keyboard. Call VGBS on boot on thess devices to get the initial state of SW_TABLET_MODE in a reliable way. Signed-off-by: Chia-Lin Kao (AceLan) Reviewed-by: Hans de Goede Link: https://patch.msgid.link/20251127070407.656463-1-acelan.kao@canonical.com Reviewed-by: Ilpo Järvinen Signed-off-by: Ilpo Järvinen Signed-off-by: Sasha Levin --- drivers/platform/x86/intel/hid.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/drivers/platform/x86/intel/hid.c b/drivers/platform/x86/intel/hid.c index 36209997ba98..ac88119a73b8 100644 --- a/drivers/platform/x86/intel/hid.c +++ b/drivers/platform/x86/intel/hid.c @@ -163,6 +163,18 @@ static const struct dmi_system_id dmi_vgbs_allow_list[] = { DMI_MATCH(DMI_PRODUCT_NAME, "HP Elite Dragonfly G2 Notebook PC"), }, }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Dell Pro Rugged 10 Tablet RA00260"), + }, + }, + { + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Dell Pro Rugged 12 Tablet RA02260"), + }, + }, { } }; -- 2.51.0