The touchpad on the Acer Aspire One D250 will report out of range values
in the extreme lower portion of the touchpad. These appear as abrupt
changes in the values reported by the hardware from very low values to
very high values, which can cause unexpected vertical jumps in the
position of the mouse pointer.
What seems to be happening is that the value is wrapping to a two's
compliment negative value of higher resolution than the 13-bit value
reported by the hardware, with the high-order bits being truncated. The
safest way to deal with this is to clamp any out of bounds values to the
minimum or maximum value for the axis.
Distinguishing between positive and negative is problematic, since we
lack definitive sign information in the value reported by the hardware.
The approach taken here is to split the difference between the maximum
legitimate value for the axis and the maximum possible value that the
hardware can report, treating values greater than this number as
negative and all other values as positive. This can be tweaked later if
hardware is found that operates outside of these parameters.
BugLink: http://bugs.launchpad.net/bugs/1001251
Cc: stable@vger.kernel.org
Cc: Daniel Kurtz <redacted>
Signed-off-by: Seth Forshee <redacted>
---
drivers/input/mouse/synaptics.c | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
Ping. Any objections to this version?
Thanks,
Seth
On Fri, Jun 29, 2012 at 01:22:18PM -0500, Seth Forshee wrote:
quoted hunk
The touchpad on the Acer Aspire One D250 will report out of range values
in the extreme lower portion of the touchpad. These appear as abrupt
changes in the values reported by the hardware from very low values to
very high values, which can cause unexpected vertical jumps in the
position of the mouse pointer.
What seems to be happening is that the value is wrapping to a two's
compliment negative value of higher resolution than the 13-bit value
reported by the hardware, with the high-order bits being truncated. The
safest way to deal with this is to clamp any out of bounds values to the
minimum or maximum value for the axis.
Distinguishing between positive and negative is problematic, since we
lack definitive sign information in the value reported by the hardware.
The approach taken here is to split the difference between the maximum
legitimate value for the axis and the maximum possible value that the
hardware can report, treating values greater than this number as
negative and all other values as positive. This can be tweaked later if
hardware is found that operates outside of these parameters.
BugLink: http://bugs.launchpad.net/bugs/1001251
Cc: stable@vger.kernel.org
Cc: Daniel Kurtz <redacted>
Signed-off-by: Seth Forshee <redacted>
---
drivers/input/mouse/synaptics.c | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
@@ -555,6 +559,29 @@ static int synaptics_parse_hw_state(const unsigned char buf[],hw->right=(buf[0]&0x02)?1:0;}+/*+*Somehardwareisknowntowrapnegativeontheyaxis,+*providingthelow-orderbitsofahigherresolutionnegative+*numberasa13-bitunsignedvalue.Nohardwareisknownto+*giveout-of-boundsvaluesonthehighend,butsincewe're+*dealingwithunspecifiedbehaviorwetakeaconservative+*approachtohandlingtheoutofboundsvalues.+*+*Clampoutofboundsvaluestotheminimumormaximumvalue+*fortheaxis.Usethemidpointbetweenthemaximumaxis+*valueandmaximumpossiblereportedvalueasthedividing+*linebetweenpositiveandnegativevalues.+*/+if(hw->x>((1<<13)+XMAX)/2)+hw->x=XMIN;+elseif(hw->x>XMAX)+hw->x=XMAX;++if(hw->y>((1<<13)+YMAX)/2)+hw->y=YMIN;+elseif(hw->y>YMAX)+hw->y=YMAX;+return0;}
--
1.7.9.5
--
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
From: Daniel Kurtz <hidden> Date: 2012-07-17 02:22:12
On Sat, Jun 30, 2012 at 2:22 AM, Seth Forshee
[off-list ref] wrote:
quoted hunk
The touchpad on the Acer Aspire One D250 will report out of range values
in the extreme lower portion of the touchpad. These appear as abrupt
changes in the values reported by the hardware from very low values to
very high values, which can cause unexpected vertical jumps in the
position of the mouse pointer.
What seems to be happening is that the value is wrapping to a two's
compliment negative value of higher resolution than the 13-bit value
reported by the hardware, with the high-order bits being truncated. The
safest way to deal with this is to clamp any out of bounds values to the
minimum or maximum value for the axis.
Distinguishing between positive and negative is problematic, since we
lack definitive sign information in the value reported by the hardware.
The approach taken here is to split the difference between the maximum
legitimate value for the axis and the maximum possible value that the
hardware can report, treating values greater than this number as
negative and all other values as positive. This can be tweaked later if
hardware is found that operates outside of these parameters.
BugLink: http://bugs.launchpad.net/bugs/1001251
Cc: stable@vger.kernel.org
Cc: Daniel Kurtz <redacted>
Signed-off-by: Seth Forshee <redacted>
---
drivers/input/mouse/synaptics.c | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
@@ -555,6 +559,29 @@ static int synaptics_parse_hw_state(const unsigned char buf[],hw->right=(buf[0]&0x02)?1:0;}+/*+*Somehardwareisknowntowrapnegativeontheyaxis,+*providingthelow-orderbitsofahigherresolutionnegative+*numberasa13-bitunsignedvalue.Nohardwareisknownto+*giveout-of-boundsvaluesonthehighend,butsincewe're+*dealingwithunspecifiedbehaviorwetakeaconservative+*approachtohandlingtheoutofboundsvalues.+*+*Clampoutofboundsvaluestotheminimumormaximumvalue+*fortheaxis.Usethemidpointbetweenthemaximumaxis+*valueandmaximumpossiblereportedvalueasthedividing+*linebetweenpositiveandnegativevalues.+*/+if(hw->x>((1<<13)+XMAX)/2)
These are constants too, it might be clearer to define:
/*
* Values reported above these limits are considered "wrapped around
negative numbers",
* and are clipped to XMIN/YMIN.
*/
#define X_MAX_POSITIVE ((1 << 13) + XMAX) / 2)
#define Y_MAX_POSITIVE ((1 << 13) + YMAX) / 2)
+ hw->x = XMIN;
IMHO, though, I think it might be better to just report the negative
value rather than clamping. Clamping like this introduces a dead zone
on the trackpad, which leads to a degraded user experience on at least
one real, known, device, whereas clamping might prevent a potential
problem on other, unknown, devices. This doesn't seem like the best
tradeoff.
-Dan
The touchpad on the Acer Aspire One D250 will report out of range values
in the extreme lower portion of the touchpad. These appear as abrupt
changes in the values reported by the hardware from very low values to
very high values, which can cause unexpected vertical jumps in the
position of the mouse pointer.
What seems to be happening is that the value is wrapping to a two's
compliment negative value of higher resolution than the 13-bit value
reported by the hardware, with the high-order bits being truncated. This
patch adds handling for these values by converting them to the
appropriate negative values.
The only tricky part about this is deciding when to treat a number as
negative. It stands to reason that if out of range values can be
reported on the low end then it could also happen on the high end, so
not all out of range values should be treated as negative. The approach
taken here is to split the difference between the maximum legitimate
value for the axis and the maximum possible value that the hardware can
report, treating values greater than this number as negative and all
other values as positive. This can be tweaked later if hardware is found
that operates outside of these parameters.
BugLink: http://bugs.launchpad.net/bugs/1001251
Cc: stable@vger.kernel.org
Cc: Daniel Kurtz <redacted>
Signed-off-by: Seth Forshee <redacted>
---
drivers/input/mouse/synaptics.c | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
From: Daniel Kurtz <hidden> Date: 2012-07-25 02:50:36
On Wed, Jul 25, 2012 at 3:31 AM, Seth Forshee
[off-list ref] wrote:
quoted hunk
The touchpad on the Acer Aspire One D250 will report out of range values
in the extreme lower portion of the touchpad. These appear as abrupt
changes in the values reported by the hardware from very low values to
very high values, which can cause unexpected vertical jumps in the
position of the mouse pointer.
What seems to be happening is that the value is wrapping to a two's
compliment negative value of higher resolution than the 13-bit value
reported by the hardware, with the high-order bits being truncated. This
patch adds handling for these values by converting them to the
appropriate negative values.
The only tricky part about this is deciding when to treat a number as
negative. It stands to reason that if out of range values can be
reported on the low end then it could also happen on the high end, so
not all out of range values should be treated as negative. The approach
taken here is to split the difference between the maximum legitimate
value for the axis and the maximum possible value that the hardware can
report, treating values greater than this number as negative and all
other values as positive. This can be tweaked later if hardware is found
that operates outside of these parameters.
BugLink: http://bugs.launchpad.net/bugs/1001251
Cc: stable@vger.kernel.org
Cc: Daniel Kurtz <redacted>
Signed-off-by: Seth Forshee <redacted>
---
drivers/input/mouse/synaptics.c | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
It makes no difference to me, either way it works the same. I don't
think I'll send another patch just to change this though, unless Dmitry
asks for it :)
Either way, it looks good, thanks!
Reviewed-by: Daniel Kurtz <redacted>