From patchwork Tue Jul 16 22:19:26 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lukasz Majewski X-Patchwork-Id: 11046777 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 2A5606C5 for ; Tue, 16 Jul 2019 22:19:49 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1B77528608 for ; Tue, 16 Jul 2019 22:19:49 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0F754286DD; Tue, 16 Jul 2019 22:19:49 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6CC8C28608 for ; Tue, 16 Jul 2019 22:19:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728699AbfGPWTr (ORCPT ); Tue, 16 Jul 2019 18:19:47 -0400 Received: from mail-out.m-online.net ([212.18.0.10]:51333 "EHLO mail-out.m-online.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728434AbfGPWTr (ORCPT ); Tue, 16 Jul 2019 18:19:47 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 45pFFD6yK2z1rQBD; Wed, 17 Jul 2019 00:19:44 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 45pFFD5rdVz1qqkJ; Wed, 17 Jul 2019 00:19:44 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id RVFIJqg7lR18; Wed, 17 Jul 2019 00:19:42 +0200 (CEST) X-Auth-Info: ILqHvmM8zNGuCwA5+LhBeDbA7B3fIwwxdGYbTo5y8OI= Received: from localhost.localdomain (85-222-111-42.dynamic.chello.pl [85.222.111.42]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA; Wed, 17 Jul 2019 00:19:42 +0200 (CEST) From: Lukasz Majewski To: Lee Jones Cc: linux-kernel@vger.kernel.org, Dmitry Torokhov , Sascha Hauer , Enrico Weigelt , Thomas Gleixner , Kate Stewart , linux-input@vger.kernel.org, Lukasz Majewski Subject: [PATCH v3 0/3] mfd: mc13xxx: Fixes and enhancements for NXP's mc34708 Date: Wed, 17 Jul 2019 00:19:26 +0200 Message-Id: <20190716221929.3782-1-lukma@denx.de> X-Mailer: git-send-email 2.11.0 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This patch set provides several enhancements to mc13xxx MFD family of devices by introducing mc34708 as a separate device. This IC has dedicated pen detection feature, which allows better touchscreen experience. This is the third version of this code (v3). Discussion regarding v1 can be found here: https://lkml.org/lkml/2018/4/12/351 https://www.mail-archive.com/linux-kernel@vger.kernel.org/msg1661934.html https://www.mail-archive.com/linux-kernel@vger.kernel.org/msg1664296.html Sascha Hauer (3): mfd: mc13xxx: Add mc34708 adc support input: touchscreen mc13xxx: Make platform data optional input: touchscreen mc13xxx: Add mc34708 support drivers/input/touchscreen/mc13783_ts.c | 71 +++++++++++++++++++---- drivers/mfd/mc13xxx-core.c | 102 ++++++++++++++++++++++++++++++++- drivers/mfd/mc13xxx.h | 3 + include/linux/mfd/mc34708.h | 37 ++++++++++++ 4 files changed, 201 insertions(+), 12 deletions(-) create mode 100644 include/linux/mfd/mc34708.h