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 6957627FD56; Wed, 4 Feb 2026 14:48:01 +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=1770216481; cv=none; b=Sgrvm4pLzRmLZ4WMUH2WFm3NRTFI9a/7ZxYIOnu02FqAQ3mdqOPtXmgR+YKY7RjuFyCU37NnHJBWC+17BwNd8T0WC6b0Nz+XnxNgZMh0zsmcxVheLX4Lp2yumSwkCwtMEzcmxYF5DPTVP+tXt74mvvew/CYcjZUV5CXqNOrAQCg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770216481; c=relaxed/simple; bh=/rFtltnl4vnhNfmRrMuVdCcEtvcE5tcTuzLevWlR96Q=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ZzRH2GzwWzFpVK7PeCQIAiThLIWI7HGdt7QMzIN2K0H3n3AofOcw2sRBGpbceypOV15G2J2xR0R5D9hA94j/P3IiovwvLywRWUFlxWzRFl06KJzWaVJV+c9thiNSiO/oKq4pCzFXO+BAgO4p203MKCenXs2ZJ9gKEzrRcoc0X6Y= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=hpJeidAQ; 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="hpJeidAQ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AA444C4CEF7; Wed, 4 Feb 2026 14:48:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1770216481; bh=/rFtltnl4vnhNfmRrMuVdCcEtvcE5tcTuzLevWlR96Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=hpJeidAQqmbTTlgYCf+coeIzhqf3c7qtymsKdI7F0Lg2yJMjK/74M8EPdk1ouUEBb ZCzoYO05OolNlZ3ESG4dsQ/pfCkgP4Bg7YECTXNHrHVV6G2F2duE1IF7egndblWim5 2KqLdi7vIFed+U4DI3KoOe6DmuItnfBMYwhrOnu8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, gongqi <550230171hxy@gmail.com>, Dmitry Torokhov Subject: [PATCH 5.10 067/161] Input: i8042 - add quirks for MECHREVO Wujie 15X Pro Date: Wed, 4 Feb 2026 15:38:50 +0100 Message-ID: <20260204143854.166339868@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260204143851.755002596@linuxfoundation.org> References: <20260204143851.755002596@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-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: gongqi <550230171hxy@gmail.com> commit 19a5d9ba6208e9006a2a9d5962aea4d6e427d8ab upstream. The MECHREVO Wujie 15X Pro requires several i8042 quirks to function correctly. Specifically, NOMUX, RESET_ALWAYS, NOLOOP, and NOPNP are needed to ensure the keyboard and touchpad work reliably. Signed-off-by: gongqi <550230171hxy@gmail.com> Link: https://patch.msgid.link/20260122155501.376199-3-550230171hxy@gmail.com Cc: stable@vger.kernel.org Signed-off-by: Dmitry Torokhov Signed-off-by: Greg Kroah-Hartman --- drivers/input/serio/i8042-acpipnpio.h | 7 +++++++ 1 file changed, 7 insertions(+) --- a/drivers/input/serio/i8042-acpipnpio.h +++ b/drivers/input/serio/i8042-acpipnpio.h @@ -1176,6 +1176,13 @@ static const struct dmi_system_id i8042_ .driver_data = (void *)(SERIO_QUIRK_NOMUX | SERIO_QUIRK_RESET_ALWAYS | SERIO_QUIRK_NOLOOP | SERIO_QUIRK_NOPNP) }, + { + .matches = { + DMI_MATCH(DMI_BOARD_NAME, "WUJIE Series-X5SP4NAG"), + }, + .driver_data = (void *)(SERIO_QUIRK_NOMUX | SERIO_QUIRK_RESET_ALWAYS | + SERIO_QUIRK_NOLOOP | SERIO_QUIRK_NOPNP) + }, /* * A lot of modern Clevo barebones have touchpad and/or keyboard issues * after suspend fixable with nomux + reset + noloop + nopnp. Luckily,