From patchwork Sun Apr 19 12:49:46 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dmitry Tunin X-Patchwork-Id: 6238371 Return-Path: X-Original-To: patchwork-linux-input@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 8BA609F313 for ; Sun, 19 Apr 2015 12:50:02 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 9FCC5203C0 for ; Sun, 19 Apr 2015 12:50:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 999D9203B6 for ; Sun, 19 Apr 2015 12:50:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751887AbbDSMt6 (ORCPT ); Sun, 19 Apr 2015 08:49:58 -0400 Received: from mail-lb0-f181.google.com ([209.85.217.181]:35494 "EHLO mail-lb0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751648AbbDSMt5 (ORCPT ); Sun, 19 Apr 2015 08:49:57 -0400 Received: by lbbuc2 with SMTP id uc2so112445110lbb.2; Sun, 19 Apr 2015 05:49:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=YA+0NS187lGMEFQChcTHRGOxVtaV9Zj7EfvWBAdf5MY=; b=iCZrAspS1chcHx+Kre1ya8YQ40Jm6C3vL55w6mTpPI7LkQodWDLfWD6a4PmC2R/R2M cCCJWdEnAu3Nup5hijxtAwDbapaA77jnZtKTUtvyrmHwRfnSRPZoohoRYvnnJXUy+eni OQvOnxNa9VcJVqune/jW8KCECR5nFE5IAbWDBjoEchIng6ZJ3DJMUi5jISJOPf6m62up 33kpxb2TyTWe+8ohkQXwpOXIprZBRmASbAwI7e3qGSY2QE+Lt64zslvlFh+vMa+3zH7/ rztb2KgZLQmuxQgaAAEMF63JfWTexflwhOYB/57s6xgAddnATphRJnB/YyIflRLYZGOW O2ww== X-Received: by 10.152.18.225 with SMTP id z1mr11900677lad.124.1429447795799; Sun, 19 Apr 2015 05:49:55 -0700 (PDT) Received: from localhost.localdomain ([2.92.165.225]) by mx.google.com with ESMTPSA id at2sm3658591lbc.12.2015.04.19.05.49.54 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 19 Apr 2015 05:49:54 -0700 (PDT) From: Dmitry Tunin To: linux-input@vger.kernel.org Cc: Mathias Gottschlag , linux-kernel@vger.kernel.org, Dmitry Tunin Subject: [PATCH v5] psmouse - focaltech pass finger width to userspace Date: Sun, 19 Apr 2015 15:49:46 +0300 Message-Id: <1429447786-12197-1-git-send-email-hanipouspilot@gmail.com> X-Mailer: git-send-email 1.9.1 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Focaltech touchpads report finger width in packet[5] of absolute packet. Range for width in raw format is 0x10 - 0x70. Second half-byte is always 0. 0xff is reported, when a large contact area is detected. This can be handled in userspace. Signed-off-by: Dmitry Tunin --- drivers/input/mouse/focaltech.c | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/drivers/input/mouse/focaltech.c b/drivers/input/mouse/focaltech.c index 23d2594..32f810c 100644 --- a/drivers/input/mouse/focaltech.c +++ b/drivers/input/mouse/focaltech.c @@ -105,6 +105,16 @@ struct focaltech_hw_state { /* True if the clickpad has been pressed. */ bool pressed; + + /* + * Finger width 0-7 and 15 for 'latching' + * 15 value stays until the finger is released + * Width is reported only when 1 finger is active + */ + unsigned int width; + + /* Finger count */ + unsigned int count; }; struct focaltech_data { @@ -137,10 +147,12 @@ static void focaltech_report_state(struct psmouse *psmouse) input_report_abs(dev, ABS_MT_POSITION_X, clamped_x); input_report_abs(dev, ABS_MT_POSITION_Y, priv->y_max - clamped_y); + if (state->count == 1) + input_report_abs(dev, ABS_TOOL_WIDTH, state->width); } } - input_mt_report_pointer_emulation(dev, true); - + input_mt_report_finger_count(dev, state->count); + input_mt_report_pointer_emulation(dev, false); input_report_key(psmouse->dev, BTN_LEFT, state->pressed); input_sync(psmouse->dev); } @@ -152,13 +164,16 @@ static void focaltech_process_touch_packet(struct psmouse *psmouse, struct focaltech_hw_state *state = &priv->state; unsigned char fingers = packet[1]; int i; + int count = 0; state->pressed = (packet[0] >> 4) & 1; /* the second byte contains a bitmap of all fingers touching the pad */ for (i = 0; i < FOC_MAX_FINGERS; i++) { - state->fingers[i].active = fingers & 0x1; - if (!state->fingers[i].active) { + if (fingers & 0x1) { + state->fingers[i].active = true; + count++; + } else { /* * Even when the finger becomes active again, we still * will have to wait for the first valid position. @@ -167,6 +182,7 @@ static void focaltech_process_touch_packet(struct psmouse *psmouse, } fingers >>= 1; } + state->count = count; } static void focaltech_process_abs_packet(struct psmouse *psmouse, @@ -187,6 +203,7 @@ static void focaltech_process_abs_packet(struct psmouse *psmouse, state->fingers[finger].x = ((packet[1] & 0xf) << 8) | packet[2]; state->fingers[finger].y = (packet[3] << 8) | packet[4]; + state->width = packet[5] >> 4; state->fingers[finger].valid = true; } @@ -331,6 +348,7 @@ static void focaltech_set_input_params(struct psmouse *psmouse) __set_bit(EV_ABS, dev->evbit); input_set_abs_params(dev, ABS_MT_POSITION_X, 0, priv->x_max, 0, 0); input_set_abs_params(dev, ABS_MT_POSITION_Y, 0, priv->y_max, 0, 0); + input_set_abs_params(dev, ABS_TOOL_WIDTH, 0, 15, 0, 0); input_mt_init_slots(dev, 5, INPUT_MT_POINTER); __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit); }