From patchwork Sun Apr 19 12:36:52 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dmitry Tunin X-Patchwork-Id: 6238361 Return-Path: X-Original-To: patchwork-linux-input@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id B9340BF4A6 for ; Sun, 19 Apr 2015 12:37:25 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id D1CBA203B6 for ; Sun, 19 Apr 2015 12:37:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D2D6C203B5 for ; Sun, 19 Apr 2015 12:37:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752675AbbDSMhG (ORCPT ); Sun, 19 Apr 2015 08:37:06 -0400 Received: from mail-la0-f53.google.com ([209.85.215.53]:34959 "EHLO mail-la0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751941AbbDSMhF (ORCPT ); Sun, 19 Apr 2015 08:37:05 -0400 Received: by labbd9 with SMTP id bd9so109073370lab.2; Sun, 19 Apr 2015 05:37:03 -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=byxu7G+qGoAXBz0xDtO1/B/DcKa41AAzRJ8/GDFLsWs=; b=gsFiELrjjfnyT/CzhGtVubc6Lp9Utvx++xDIVzpnQp20dca7cCV4d+PfK+BVg3WjQ5 Sm8dy0aKYD2Rqmqo7bECxNrlAzZ8ltNgg5oEenh5zE519nNt9MgUq+DRAP9TGdd5GLC6 G+VDt8fTnUk2/KsgX1HhKMlgz3Hlq6oiF4KTJBAakrQdLnutNP5yJ73yuCVgmKhHyZaN 2FR0W+W0V6QcGEdaInbX9zxI0ioMdtWc5fqCF2NkWBQWVF/9iqNPsdOrJV46EXa2fIow GJCv1/9MUUucOCv00lGrz7tuSDrmdrhD7W8Gzll8L9I/xyZy2qkBbHSgXNA3wAsLnK4X STeQ== X-Received: by 10.112.129.132 with SMTP id nw4mr11899117lbb.122.1429447023794; Sun, 19 Apr 2015 05:37:03 -0700 (PDT) Received: from localhost.localdomain ([2.92.165.225]) by mx.google.com with ESMTPSA id n10sm3643234laa.40.2015.04.19.05.37.03 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 19 Apr 2015 05:37:03 -0700 (PDT) From: Dmitry Tunin To: linux-input@vger.kernel.org Cc: Mathias Gottschlag , linux-kernel@vger.kernel.org, Dmitry Tunin Subject: [PATCH v4] psmouse - focaltech pass finger width to userspace Date: Sun, 19 Apr 2015 15:36:52 +0300 Message-Id: <1429447012-11624-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=unavailable 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 | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/drivers/input/mouse/focaltech.c b/drivers/input/mouse/focaltech.c index 23d2594..111735c 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,8 @@ static void focaltech_process_touch_packet(struct psmouse *psmouse, } fingers >>= 1; } + state->width = packet[5] >> 4; + state->count = count; } static void focaltech_process_abs_packet(struct psmouse *psmouse, @@ -187,6 +204,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 +349,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); }