1. 14 2月, 2019 1 次提交
  2. 07 12月, 2018 1 次提交
    • P
      HID: input: use the Resolution Multiplier for high-resolution scrolling · 2dc702c9
      Peter Hutterer 提交于
      Windows uses a magic number of 120 for a wheel click. High-resolution
      scroll wheels are supposed to use a fraction of 120 to signal smaller
      scroll steps. This is implemented by the Resolution Multiplier in the
      device itself.
      
      If the multiplier is present in the report descriptor, set it to the
      logical max and then use the resolution multiplier to calculate the
      high-resolution events. This is the recommendation by Microsoft, see
      http://msdn.microsoft.com/en-us/windows/hardware/gg487477.aspx
      
      Note that all mice encountered so far have a logical min/max of 0/1, so
      it's a binary "yes or no" to high-res scrolling anyway.
      
      To make userspace simpler, always enable the REL_WHEEL_HI_RES bit. Where
      the device doesn't support high-resolution scrolling, the value for the
      high-res data will simply be a multiple of 120 every time. For userspace,
      if REL_WHEEL_HI_RES is available that is the one to be used.
      
      Potential side-effect: a device with a Resolution Multiplier applying to
      other Input items will have those items set to the logical max as well.
      This cannot easily be worked around but it is doubtful such devices exist.
      Signed-off-by: NPeter Hutterer <peter.hutterer@who-t.net>
      Verified-by: NHarry Cutts <hcutts@chromium.org>
      Signed-off-by: NBenjamin Tissoires <benjamin.tissoires@redhat.com>
      2dc702c9
  3. 22 11月, 2018 2 次提交
  4. 12 11月, 2018 1 次提交
  5. 30 10月, 2018 1 次提交
    • L
      HID: input: simplify/fix high-res scroll event handling · 044ee890
      Linus Torvalds 提交于
      Commit 1ff2e1a4 ("HID: input: Create a utility class for counting
      scroll events") created the helper function
      
          hid_scroll_counter_handle_scroll()
      
      to handle high-res scroll events and also expose them as regular wheel
      events.
      
      But the resulting algorithm was unstable, and causes scrolling to be
      very unreliable.  When you hit the half-way mark of the highres
      multiplier, small highres movements will incorrectly translate into big
      traditional wheel movements, causing odd jitters.
      
      Simplify the code and make the output stable.
      
      NOTE! I'm pretty sure this will need further tweaking.  But this at
      least turns a unusable mouse wheel on my Logitech MX Anywhere 2S into
      a usable one.
      
      Cc: Jiri Kosina <jikos@kernel.org>
      Cc: Harry Cutts <hcutts@chromium.org>
      Cc: Benjamin Tissoires <benjamin.tissoires@redhat.com>
      Cc: Peter Hutterer <peter.hutterer@who-t.net>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      044ee890
  6. 05 9月, 2018 4 次提交
  7. 28 8月, 2018 1 次提交
  8. 17 7月, 2018 1 次提交
  9. 26 4月, 2018 3 次提交
  10. 17 4月, 2018 1 次提交
    • B
      HID: input: do not increment usages when a duplicate is found · 190d7f02
      Benjamin Tissoires 提交于
      This is something that bothered us from a long time. When hid-input
      doesn't know how to map a usage, it uses *_MISC. But there is something
      else which increments the usage if the evdev code is already used.
      
      This leads to few issues:
      - some devices may have their ABS_X mapped to ABS_Y if they export a bad
        set of usages (see the DragonRise joysticks IIRC -> fixed in a specific
        HID driver)
      - *_MISC + N might (will) conflict with other defined axes (my Logitech
        H800 exports some multitouch axes because of that)
      - this prevents to freely add some new evdev usages, because "hey, my
        headset will now report ABS_COFFEE, and it's not coffee capable".
      
      So let's try to kill this nonsense, and hope we won't break too many
      devices.
      
      I my headset case, the ABS_MISC axes are created because of some
      proprietary usages, so we might not break that many devices.
      
      For backward compatibility, a quirk HID_QUIRK_INCREMENT_USAGE_ON_DUPLICATE
      is created and can be applied to any device that needs this behavior.
      Signed-off-by: NBenjamin Tissoires <benjamin.tissoires@redhat.com>
      Acked-by: NPeter Hutterer <peter.hutterer@who-t.net>
      Acked-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      190d7f02
  11. 09 4月, 2018 1 次提交
    • D
      HID: input: fix battery level reporting on BT mice · 2e210bbb
      Dmitry Torokhov 提交于
      The commit 581c4484 ("HID: input: map digitizer battery usage")
      assumed that devices having input (qas opposed to feature) report for
      battery strength would report the data on their own, without the need to
      be polled by the kernel; unfortunately it is not so. Many wireless mice
      do not send unsolicited reports with battery strength data and have to
      be polled explicitly. As a complication, stylus devices on digitizers
      are not normally connected to the base and thus can not be polled - the
      base can only determine battery strength in the stylus when it is in
      proximity.
      
      To solve this issue, we add a special flag that tells the kernel
      to avoid polling the device (and expect unsolicited reports) and set it
      when report field with physical usage of digitizer stylus (HID_DG_STYLUS).
      Unless this flag is set, and we have not seen the unsolicited reports,
      the kernel will attempt to poll the device when userspace attempts to
      read "capacity" and "state" attributes of power_supply object
      corresponding to the devices battery.
      
      Fixes: 581c4484 ("HID: input: map digitizer battery usage")
      Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=198095
      Cc: stable@vger.kernel.org
      Reported-and-tested-by: NMartin van Es <martin@mrvanes.com>
      Signed-off-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      2e210bbb
  12. 23 3月, 2018 1 次提交
  13. 16 2月, 2018 1 次提交
  14. 05 10月, 2017 1 次提交
  15. 15 8月, 2017 1 次提交
  16. 02 8月, 2017 2 次提交
  17. 22 5月, 2017 1 次提交
  18. 11 5月, 2017 1 次提交
  19. 21 3月, 2017 1 次提交
  20. 06 3月, 2017 1 次提交
  21. 28 11月, 2016 1 次提交
    • B
      HID: input: rework HID_QUIRK_MULTI_INPUT · 72d19459
      Benjamin Tissoires 提交于
      The purpose of HID_QUIRK_MULTI_INPUT is to have an input device per
      report id. This is useful when the HID device presents several HID
      collections of different device types.
      
      The current implementation of hid-input creates one input node per id per
      type (input or output). This is problematic for the LEDs of a keyboard as
      they are often set through an output report. The current code creates
      one input node with all the keyboard keys, and one other with only the
      LEDs.
      
      To solve this, we use a two-passes way:
      - first, we initialize all input nodes and associate one per report id
      - then, we register all the input nodes
      Signed-off-by: NBenjamin Tissoires <benjamin.tissoires@redhat.com>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      72d19459
  22. 20 10月, 2016 1 次提交
    • J
      HID: input: Recognize ABS_WHEEL in hidinput_calc_abs_res · c0bf5741
      Jason Gerecke 提交于
      The "Steering" usage (HID_UP_SIMULATION | 0xc8) is defined in HUT 1.12 as
      follows:
      
      "A steering wheel is a single degree-of-freedom device that rotates about
      an axis. The zero position is always the neutral or 'straight ahead'
      position, with positive values turning clockwise and negative values
      turning counterclockwise. If the Coordinate Values Wrap attribute is
      set, the steering wheel can be turned past 360 degrees."
      
      The hidinput_configure_usage function canonically maps this usage to the
      ABS_WHEEL axis, but hidinput_calc_abs_res does not recognize this axis
      as one for which it can calculate a resolution. This effectively prevents
      wheels from being assigned a proper resolution that userspace can use
      to determine the precise angle of input.
      
      This commit adds ABS_WHEEL as a rotational axis to hidinput_calc_abs_res.
      Signed-off-by: NJason Gerecke <jason.gerecke@wacom.com>
      Reviewed-by: NBenjamin Tissoires <benjamin.tissoires@redhat.com>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      c0bf5741
  23. 19 9月, 2016 1 次提交
  24. 05 8月, 2016 1 次提交
    • A
      HID: input: add mic mute key on HP slim keyboard · 08fc9473
      AceLan Kao 提交于
      Add MIC mute key which is found on HP Business Slim Keyboard
      
      T:  Bus=02 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#= 23 Spd=1.5 MxCh= 0
      D:  Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 8 #Cfgs=  1
      P:  Vendor=03f0 ProdID=2f4a Rev=00.10
      S:  Manufacturer=Chicony
      S:  Product=HP Business Slim Keyboard
      C:  #Ifs= 2 Cfg#= 1 Atr=a0 MxPwr=100mA
      I:  If#= 0 Alt= 0 #EPs= 1 Cls=03(HID  ) Sub=01 Prot=01 Driver=usbhid
      I:  If#= 1 Alt= 0 #EPs= 1 Cls=03(HID  ) Sub=00 Prot=00 Driver=usbhid
      Signed-off-by: NAceLan Kao <acelan.kao@canonical.com>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      08fc9473
  25. 18 12月, 2015 1 次提交
  26. 20 11月, 2015 1 次提交
  27. 06 11月, 2015 1 次提交
  28. 30 9月, 2015 1 次提交
  29. 04 8月, 2015 1 次提交
  30. 10 7月, 2015 1 次提交
  31. 28 5月, 2015 3 次提交