From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 2472D389473; Thu, 20 Aug 2026 17:46:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787247964; cv=none; b=QX9MbYQxDjEU6vICQ9py2Eu74Zca88GuH1BWJtGJPF7/Nk3QcUsNfKFMmkBFMUqvyM2F73DKn3htns3fYkOrxZH2LGiFMA11z3K5roMh41w35gxlQzaITe+0LBOoifglYNpQuWZV+Y7uv3xWzwdg2O3LgMuwpiJsxHS1pCP+GI8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787247964; c=relaxed/simple; bh=4ju6I3SKx8NOdDjLenRRiz1bG3ruRGWm/obDw7PihaQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=nvV1qU9D4YtjjY8KjY18atYGgdzjXpqcTF9ZtEc05fBkbWG2DKG9T0eH7N2gHTTpno/nwh7ZXRt3g8qI8nkDR410WyMumMfParBJ0m1xf86J1Ocjn2RzGx3KhEls9Fi+kCt569Zd3CgfBqnQjSRO9pHVMUV8YXvK7tfUHn/97/Q= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=uh0IS5wz; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="uh0IS5wz" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7E81E1F000E9; Thu, 20 Aug 2026 17:46:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1787247963; bh=LFYy5d6hoi8A4c00NhCRoyoGOXXLKjTaX1JW4hyQKtM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=uh0IS5wztVohFSLJFCzARKjj7ZbkqdUUhCjzBFwNCcUMbQDrtyassLNUv0ILgg8rE pUczCc7zQ9xkDOdKgqlgMYuVFQC+/tWpOpHZyIYAgCfc2sJKdlIqXC1u/jr36DjkLf g0598/6746gHvxsOlyAhxn7g5dAvRpcCIYbZztMU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Zhefu Zhang , Andrew Zhou , Dmitry Torokhov Subject: [PATCH 6.1 023/303] Input: atkbd - skip deactivate for Xiaomi Book Pro 14s internal keyboard Date: Thu, 20 Aug 2026 16:52:39 +0200 Message-ID: <20260820145253.876116017@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260820145253.200766705@linuxfoundation.org> References: <20260820145253.200766705@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: Zhefu Zhang commit 3a046db33bb9f28b43a951a7a090db771dc0f8b3 upstream. The internal keyboard of the Xiaomi Book Pro 14 does not work unless atkbd skips deactivating it at the end of atkbd_probe(). Using 'i8042.dumbkbd=1' also makes the keyboard work, but then the driver never writes to the keyboard at all, so the Caps Lock LED is lost. The atkbd_deactivate_fixup quirk fixes both without a boot parameter. DMI: XIAOMI Xiaomi Book Pro 14/TM2424, BIOS XMAPT4B0P0909 05/06/2026 Signed-off-by: Zhefu Zhang Reviewed-by: Andrew Zhou Link: https://patch.msgid.link/20260802031559.19701-1-a723356@gmail.com Cc: stable@vger.kernel.org Signed-off-by: Dmitry Torokhov Signed-off-by: Greg Kroah-Hartman --- drivers/input/keyboard/atkbd.c | 8 ++++++++ 1 file changed, 8 insertions(+) --- a/drivers/input/keyboard/atkbd.c +++ b/drivers/input/keyboard/atkbd.c @@ -1939,6 +1939,14 @@ static const struct dmi_system_id atkbd_ }, .callback = atkbd_deactivate_fixup, }, + { + /* Xiaomi Book Pro 14 (TM2424) */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "XIAOMI"), + DMI_MATCH(DMI_PRODUCT_NAME, "Xiaomi Book Pro 14"), + }, + .callback = atkbd_deactivate_fixup, + }, { } };