linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jaikumar Ganesh <jaikumarg@android.com>
To: Jiri Kosina <jkosina@suse.cz>
Cc: Chase Douglas <chase.douglas@canonical.com>, linux-input@vger.kernel.org
Subject: Re: [PATCH] HID: magicmouse: ignore 'ivalid report id' while switching modes
Date: Tue, 23 Aug 2011 11:17:58 -0700	[thread overview]
Message-ID: <CAA8bQNj2vvM1F_VEQAFyRRBSVb1LUJ8y3Af5iz3c+QHhBD7aTg@mail.gmail.com> (raw)
In-Reply-To: <alpine.LNX.2.00.1108231052220.13644@pobox.suse.cz>

Hi Jiri,

On Tue, Aug 23, 2011 at 1:53 AM, Jiri Kosina <jkosina@suse.cz> wrote:
> On Thu, 18 Aug 2011, Jaikumar Ganesh wrote:
>
>> I also tracked down two Apple magic trackpads - both with the same
>> Bluetooth version.
>> One which needs this patch (as it returns an invalid report id) and
>> the other which doesn't need this patch.
>> Both use the same device id.
>
> Gotta love hardware vendors indeed.
>
> So how about the patch below?
>
>
>
> From: Jiri Kosina <jkosina@suse.cz>
> Subject: [PATCH] HID: magicmouse: ignore 'ivalid report id' while switching modes, v2
>
> This is basically a more generic respin of 23746a6 ("HID: magicmouse: ignore
> 'ivalid report id' while switching modes") which got reverted later by
> c3a492.
>
> It turns out that on some configurations, this is actually still the case
> and we are not able to detect in runtime.
>
> The device reponds with 'invalid report id' when feature report switching it
> into multitouch mode is sent to it.
>
> This has been silently ignored before 0825411ade ("HID: bt: Wait for ACK
> on Sent Reports"), but since this commit, it propagates -EIO from the _raw
> callback .
>
> So let the driver ignore -EIO as response to 0xd7,0x01 report, as that's
> how the device reacts in normal mode.
>
> Sad, but following reality.
>
> This fixes https://bugzilla.kernel.org/show_bug.cgi?id=35022
>
> Reported-by: Chase Douglas <chase.douglas@canonical.com>
> Reported-by: Jaikumar Ganesh <jaikumarg@android.com>
> Tested-by: Chase Douglas <chase.douglas@canonical.com>
> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
> ---
>  drivers/hid/hid-magicmouse.c |   10 +++++++++-
>  1 files changed, 9 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/hid/hid-magicmouse.c b/drivers/hid/hid-magicmouse.c
> index b5bdab3..f0fbd7b 100644
> --- a/drivers/hid/hid-magicmouse.c
> +++ b/drivers/hid/hid-magicmouse.c
> @@ -537,9 +537,17 @@ static int magicmouse_probe(struct hid_device *hdev,
>        }
>        report->size = 6;
>
> +       /*
> +        * Some devices repond with 'invalid report id' when feature
> +        * report switching it into multitouch mode is sent to it.
> +        *
> +        * This results in -EIO from the _raw low-level transport callback,
> +        * but there seems to be no other way of switching the mode.
> +        * Thus the super-ugly hacky success check below.
> +        */
>        ret = hdev->hid_output_raw_report(hdev, feature, sizeof(feature),
>                        HID_FEATURE_REPORT);
> -       if (ret != sizeof(feature)) {
> +       if (ret != -EIO && ret != sizeof(feature)) {
>                hid_err(hdev, "unable to request touch data (%d)\n", ret);
>                goto err_stop_hw;
>        }
> --
> 1.7.3.1
>
>

Tested. Please push.

Thanks
Jaikumar
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2011-08-23 18:18 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-08-17 19:59 [PATCH] HID: magicmouse: ignore 'ivalid report id' while switching modes Jaikumar Ganesh
2011-08-18 16:25 ` Chase Douglas
     [not found]   ` <CAA8bQNjQ2s4EY=2r455z-3r7yyV0uwSjhQ6m5g2+TCyMRvu0sQ@mail.gmail.com>
2011-08-18 16:48     ` Chase Douglas
2011-08-18 19:32       ` Chase Douglas
2011-08-18 19:45         ` Jaikumar Ganesh
2011-08-23  8:53           ` Jiri Kosina
2011-08-23 18:17             ` Jaikumar Ganesh [this message]
2011-08-25 12:22               ` Jiri Kosina
2011-08-24 15:13             ` Chase Douglas

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAA8bQNj2vvM1F_VEQAFyRRBSVb1LUJ8y3Af5iz3c+QHhBD7aTg@mail.gmail.com \
    --to=jaikumarg@android.com \
    --cc=chase.douglas@canonical.com \
    --cc=jkosina@suse.cz \
    --cc=linux-input@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).