From patchwork Tue Nov 19 22:33:49 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marco Felsch X-Patchwork-Id: 844363 Received: from metis.whiteo.stw.pengutronix.de (metis.whiteo.stw.pengutronix.de [185.203.201.7]) (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 28C551D3560 for ; Tue, 19 Nov 2024 22:34:04 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.203.201.7 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1732055646; cv=none; b=U2DIqQYIFBrjhRxDlmiehSpKnsEQ1EdvNzBMUYoEvR7oa/HP5908uleUK9zevF9WMELC+mHX1xajhOjEeQteQ2QJsE/yjfnj1BkgxjkewmaEUdhKqUZAovwa+RQm3XFE/ocTZSnlWCOwexAApNeCHLzDmgRNM6qaHUzsgDzJJRw= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1732055646; c=relaxed/simple; bh=h4Oc3f0BWoAszDFIcfl37CbhvLHeg8AetmCPXHM/4Kc=; h=From:Subject:Date:Message-Id:MIME-Version:Content-Type:To:Cc; b=BoTbqCvUPyT9EBP7Rtbjs0GOu5IuSaDEXTKW9otNCZSb1okzPutLTw8wqMtCEPpDZjuxduT51pmpibsdsDjpeUXTsXuA3dw1QdlWWoEpJGJ/lthbUU3uTnGZwZluReQI2H+g5okTddP849Hu5U3+hRu8GAOFPRI1lrthIyQh/8U= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=pengutronix.de; spf=pass smtp.mailfrom=pengutronix.de; arc=none smtp.client-ip=185.203.201.7 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=pengutronix.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=pengutronix.de Received: from dude02.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::28]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1tDWnF-0002gF-2M; Tue, 19 Nov 2024 23:33:57 +0100 From: Marco Felsch Subject: [PATCH 0/5] Input: Add support for TouchNetix aXiom touchscreen Date: Tue, 19 Nov 2024 23:33:49 +0100 Message-Id: <20241119-v6-10-topic-touchscreen-axiom-v1-0-6124925b9718@pengutronix.de> Precedence: bulk X-Mailing-List: linux-input@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-B4-Tracking: v=1; b=H4sIAE4SPWcC/x2MSQqAMAwAvyI5G0jEDb8iHqRGzcFWWhVB/LvBy 8AwMA8kiSoJuuyBKJcmDd6E8wzcOvpFUCdzKKgoqaESrxqZ8Ai7OuPp1uSiiMfx1rBZqpqapWV iBnvsUWa9/38/vO8HFfMdIG8AAAA= To: Luis Chamberlain , Russ Weight , Greg Kroah-Hartman , "Rafael J. Wysocki" , Andrew Morton , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Dmitry Torokhov , Kamel Bouhara , Marco Felsch , Henrik Rydberg , Danilo Krummrich Cc: linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, linux-input@vger.kernel.org, kernel@pengutronix.de, Marco Felsch , Krzysztof Kozlowski X-Mailer: b4 0.14.0 X-SA-Exim-Connect-IP: 2a0a:edc0:0:1101:1d::28 X-SA-Exim-Mail-From: m.felsch@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-input@vger.kernel.org Hi, This adds the initial support for the TouchNetix aXiom touchcontroller family. This series is the successor of [1] (many thanks to Bootlin) but I started from a fresh v1 since I had to rework the driver completely. The following features are added: - I2C communication - Input event handling - Touchcontroller firmware (AXFW or ALC) updates - Touchcontroller config (TH2CFGBIN) updates [1] https://lore.kernel.org/all/20240703142520.207066-1-kamel.bouhara@bootlin.com Regards, Marco --- Kamel Bouhara (2): dt-bindings: vendor-prefixes: Add TouchNetix AS dt-bindings: input: Add TouchNetix axiom touchscreen Marco Felsch (3): firmware_loader: expand firmware error codes with skip error firmware_loader: add support to handle FW_UPLOAD_ERR_SKIP Input: Add TouchNetix aXiom I2C Touchscreen support .../input/touchscreen/touchnetix,ax54a.yaml | 62 + .../devicetree/bindings/vendor-prefixes.yaml | 2 + drivers/base/firmware_loader/sysfs_upload.c | 5 + drivers/input/touchscreen/Kconfig | 15 + drivers/input/touchscreen/Makefile | 1 + drivers/input/touchscreen/touchnetix_axiom.c | 2764 ++++++++++++++++++++ include/linux/firmware.h | 2 + lib/test_firmware.c | 1 + 8 files changed, 2852 insertions(+) --- base-commit: 9852d85ec9d492ebef56dc5f229416c925758edc change-id: 20240704-v6-10-topic-touchscreen-axiom-105761e81011 Best regards,