Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752166AbbBXHF3 (ORCPT ); Tue, 24 Feb 2015 02:05:29 -0500 Received: from mga14.intel.com ([192.55.52.115]:48472 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750748AbbBXHF1 (ORCPT ); Tue, 24 Feb 2015 02:05:27 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,637,1418112000"; d="scan'208";a="670640303" Date: Tue, 24 Feb 2015 09:05:22 +0200 From: Mika Westerberg To: Benjamin Tissoires Cc: Jiri Kosina , Mark Rutland , sb@m-labs.hk, linux-input@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 2/3] HID: i2c-hid: Read wMaxInputLength of input report instead of bufsize Message-ID: <20150224070522.GE1758@lahna.fi.intel.com> References: <1424699565-138045-1-git-send-email-mika.westerberg@linux.intel.com> <1424699565-138045-3-git-send-email-mika.westerberg@linux.intel.com> <20150223152630.GE27578@mail.corp.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20150223152630.GE27578@mail.corp.redhat.com> Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2833 Lines: 57 On Mon, Feb 23, 2015 at 10:26:35AM -0500, Benjamin Tissoires wrote: > On Feb 23 2015 or thereabouts, Mika Westerberg wrote: > > Wacom digitizer (WCOM0008) on Lenovo Thinkpad 10 seems to allow reading of > > subsequent reports (or part of them) if we read more than wMaxInputLength > > of data at the time. This data is not always aligned so that the next > > report would start right after another. > > > > For example we might get following sequence: > > > > i2c_hid i2c-WCOM0008:00: input: 0a 00 02 21 20 17 ad 22 11 03 > > i2c_hid i2c-WCOM0008:00: input: ad 22 11 03 0a 00 02 21 20 17 > > ad 22 11 03 0a 00 02 21 20 17 > > ad 22 11 03 0a 00 02 21 20 17 > > ad 22 11 03 0a 00 02 21 20 17 > > ad 22 11 03 0a 00 02 21 20 17 > > ad 22 11 03 0a 00 02 21 20 17 > > ad 22 11 03 > > i2c_hid i2c-WCOM0008:00: input: 02 21 20 17 ad 22 11 03 0a 00 > > 02 21 20 17 ad 22 11 03 0a 00 > > 02 21 20 17 ad 22 11 03 0a 00 > > 02 21 20 17 ad 22 11 03 0a 00 > > 02 21 20 17 ad 22 11 03 0a 00 > > 02 21 20 17 ad 22 11 03 0a 00 > > 02 21 20 17 > > i2c_hid i2c-WCOM0008:00: i2c_hid_get_input: incomplete report (76/8450) > > > > The bufsize is 76 and wMaxInputLength is 10. In above example the first > > read gets right amount of data. The second and third reads get full bufsize > > (76 bytes) but the report is missing a start already. This causes the > > driver to reject the report because we got less than was expected by the > > report length (0x2102 = 8450). > > > > If we read only wMaxInputLength at the time this does not happen at all and > > the digitizer works fine. > > > > Based on this change the driver to read wMaxInputLength bytes instead of > > bufsize if the value looks sane. > > > > Reported-by: S?bastien Bourdeauducq > > Signed-off-by: Mika Westerberg > > --- > > We can actually drop this one. Jiri already applied a patch sent last > week which does the exact same thing: > https://patchwork.kernel.org/patch/5857521/ (should appear shortly in > Jiri's tree I guess). Indeed looks like it does the same. Thanks for letting me know. > But thanks for confirming that it was really needed for other devices. No problem :-) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/