From: Joonyoung Shim <jy0922.shim@samsung.com>
To: Henrik Rydberg <rydberg@euromail.se>
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>,
linux-input@vger.kernel.org, kyungmin.park@samsung.com
Subject: Re: [PATCH] input: qt602240 - Add ATMEL QT602240 touchscreen driver
Date: Fri, 25 Jun 2010 10:34:54 +0900 [thread overview]
Message-ID: <4C2407BE.2050106@samsung.com> (raw)
In-Reply-To: <4C2332FF.7040103@euromail.se>
On 6/24/2010 7:27 PM, Henrik Rydberg wrote:
> Joonyoung Shim wrote:
> [...]
>>> The finger[id].status is checked twice in this block, is there any particular
>>> reason for it?
>> There is three states press / release / none. The none state means that
>> the finger weren't be pressed still. First checking is to detect none
>> state and second checking is to distinguish press and release. Does it
>> need to report the finger of none state?
>>
>>> Either way, reporting only a part of the finger properties before
>>> input_mt_sync() is wrong. Perhaps one can move the second test up together with
>>> the first one?
>>>
>> I don't know well what you mean. Please give me detailed thing.
>
> The code has one patch where (ABS_MT_TRACKING_ID, ABS_MT_TOUCH_MAJOR) is
> reported, and another patch where (ABS_MT_TRACKING_ID, ABS_MT_TOUCH_MAJOR,
> ABS_MT_POSITION_X, ABS_MT_POSITION_Y) is reported. This is incorrect. Either
> send the release event with ABS_MT_TOUCH_MAJOR set to zero, or do not report the
> finger at all.
>
OK. I had to remove ABS_MT_TRACKING_ID event to use MT protocol A.
>>>>> +
>>>>> + input_mt_sync(input_dev);
>>>>> + }
>>>>> +
>>>>> + if (!finger_num)
>>>>> + input_report_key(input_dev, BTN_TOUCH, 0);
>>> The lines above can be combined with the first BTN_TOUCH instance to something
>>> like this:
>>>
>>> input_report_key(input_dev, BTN_TOUCH, finger_num > 0);
>>>
>>> The input core will not emit the key unless it actually changes.
>>>
>> I have a quick question. If finger_num is more than one, should
>> BTN_TOUCH be reported before ABS_XX event reporting?
>
> BTN_TOUCH should be placed first for the benefit of mousedev (is this correct,
> Dmitry?), but there is no restriction on the ordering between MT events and
> other events in the package.
>
OK.
>>>>> + input_sync(input_dev);
>>>>> + } else {
>>>>> + qt602240_dump_message(dev, &message);
>>>>> + qt602240_check_config_error(data, &message, reportid);
>>>>> + }
>>>>> +
>>>>> + goto repeat;
>>> [...]
>>>>> + __set_bit(EV_ABS, input_dev->evbit);
>>>>> + __set_bit(EV_KEY, input_dev->evbit);
>>>>> + __set_bit(BTN_TOUCH, input_dev->keybit);
>>>>> +
>>>>> + /* For single touch */
>>>>> + input_set_abs_params(input_dev, ABS_X, 0, QT602240_MAX_XC, 0,
>>>>> + 0);
>>>>> + input_set_abs_params(input_dev, ABS_Y, 0, QT602240_MAX_YC, 0,
>>>>> + 0);
>>>>> +
>>>>> + /* For multi touch */
>>>>> + input_set_abs_params(input_dev, ABS_MT_TRACKING_ID, 0,
>>>>> + QT602240_MAX_ID, 0, 0);
>>> What is a normal value for QT602240_MAX_ID? Is it modified every time there is a
>>> new touch?
>>>
>> The ID value range can differ by chip firmware, but it can be calculated
>> from 0 to 9. ID is decided by touch order. If i pressed three fingers,
>> IDs ard 0, 1, 2.
>
> In the MT protocol lingo, this is actually not a tracking id, but a slot id. A
> tracking id increases for every new touch, and can be a much larger number than
> the number of slots. Since the MT slot protocol is in the pipe now, perhaps you
> would like to become the first driver to use the MT slots protocol? It seems it
> would simplify the code of this driver.
>
The ID of this chip is created in order, so i think the slot id and the
tracking id have same relative offset. Now, i will use MT protocol A and
i can change to MT slots protocol later if it is merged.
Thanks.
next prev parent reply other threads:[~2010-06-25 1:34 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-23 13:16 [PATCH] input: qt602240 - Add ATMEL QT602240 touchscreen driver Joonyoung Shim
2010-06-23 17:34 ` Dmitry Torokhov
2010-06-23 20:06 ` Henrik Rydberg
2010-06-24 1:41 ` Joonyoung Shim
2010-06-24 10:27 ` Henrik Rydberg
2010-06-25 1:34 ` Joonyoung Shim [this message]
2010-06-25 13:32 ` Henrik Rydberg
2010-06-23 20:18 ` Henrik Rydberg
2010-06-24 0:58 ` Joonyoung Shim
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=4C2407BE.2050106@samsung.com \
--to=jy0922.shim@samsung.com \
--cc=dmitry.torokhov@gmail.com \
--cc=kyungmin.park@samsung.com \
--cc=linux-input@vger.kernel.org \
--cc=rydberg@euromail.se \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.