From patchwork Tue Oct 17 15:15:21 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Szilard Fabian X-Patchwork-Id: 735349 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C1374CDB474 for ; Tue, 17 Oct 2023 15:15:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235057AbjJQPPn (ORCPT ); Tue, 17 Oct 2023 11:15:43 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52112 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235052AbjJQPPn (ORCPT ); Tue, 17 Oct 2023 11:15:43 -0400 Received: from mail-4018.proton.ch (mail-4018.proton.ch [185.70.40.18]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0533CB0; Tue, 17 Oct 2023 08:15:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bluemarch.art; s=protonmail; t=1697555735; x=1697814935; bh=++9pU1La/0B9FiBK0CkwIdzhIQraonwBLREebKGpRAg=; h=Date:To:From:Cc:Subject:Message-ID:Feedback-ID:From:To:Cc:Date: Subject:Reply-To:Feedback-ID:Message-ID:BIMI-Selector; b=gvxOeY1XwUMAs9i7bGuAlH66JEHL2qGdQ7chdlMiR5bHF50acZ0K2E6ztwRyv3yQO JJk7JL8XOW8UHGeamXM896xnt6E1Oqs3wryhT/6tLSZc6l2DfLnqU1nbRNAT0Jq7Xs y0wLb7O0SL9h/Sutb7+jqqBnHvULw0D31kYPaSzPVw/Z8zjEiMgGSjQCDbTbG0C2e3 wsmto76yMz+0b+wsOjWfpvYKQXKuYJQqchiUtEHwBmxXC+4DA3YOTPeB7PCW4Y8nKN aRghUrDdv307FTbvr4n8qSdDF8jgm16BwXLZNrqIStnBEfHs/StU+ghuwbqUn8nibt xmrHX8vFLzIhg== Date: Tue, 17 Oct 2023 15:15:21 +0000 To: linux-kernel@vger.kernel.org, linux-input@vger.kernel.org, dmitry.torokhov@gmail.com From: Szilard Fabian Cc: Szilard Fabian Subject: [PATCH] Input: i8042 - add Fujitsu Lifebook U728 to i8042 quirk table Message-ID: <20231017151114.99135-2-szfabian@bluemarch.art> Feedback-ID: 87830438:user:proton MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org Another Fujitsu-related patch. In the initial boot stage the integrated keyboard of Fujitsu Lifebook U728 refuses to work and it's not possible to type for example a dm-crypt passphrase without the help of an external keyboard. i8042.nomux kernel parameter resolves this issue but using that a PS/2 mouse is detected. This input device is unused even when the i2c-hid-acpi kernel module is blacklisted making the integrated ELAN touchpad (04F3:3092) not working at all. So this notebook uses a hid-over-i2c touchpad which is managed by the i2c_designware input driver. Since you can't find a PS/2 mouse port on this computer and you can't connect a PS/2 mouse to it even with an official port replicator I think it's safe to not use the PS/2 mouse port at all. Signed-off-by: Szilard Fabian --- I think the same configuration could be applied to Lifebook U748 and U758 too but I can't test this theory on these machines. --- drivers/input/serio/i8042-acpipnpio.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/drivers/input/serio/i8042-acpipnpio.h b/drivers/input/serio/i8042-acpipnpio.h index 028e45bd050b..983f31014330 100644 --- a/drivers/input/serio/i8042-acpipnpio.h +++ b/drivers/input/serio/i8042-acpipnpio.h @@ -618,6 +618,14 @@ static const struct dmi_system_id i8042_dmi_quirk_table[] __initconst = { }, .driver_data = (void *)(SERIO_QUIRK_NOMUX) }, + { + /* Fujitsu Lifebook U728 */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"), + DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK U728"), + }, + .driver_data = (void *)(SERIO_QUIRK_NOAUX) + }, { /* Gigabyte M912 */ .matches = {