1. 03 12月, 2013 1 次提交
    • O
      HID: logitech-dj: add HIDRAW dependency in Kconfig · dcdc50e7
      Olivier Gay 提交于
      hid-logitech-dj.c driver needs hidraw to work correctly. Without
      hidraw, hid-logitech-dj.c fails during probe() and Logitech
      Unifying devices HID reports aren't recognized.
      
      The unifying receiver has 3 usb interfaces. When hid-logitech-dj driver is
      loaded, interfaces 0 and 1 are discarded.
      
      Interface 2 consists of a hid class interface with 3 collections, each of
      which sports the 'vendor' usage, thus, there is no reason for hid_input to
      claim any of them. On the other hand, hidraw has no issue in claiming the
      collections, even if they are 'vendor'. As of today, hid-logitech-dj uses
      hidraw api to send configuration/control reports to interface 2 of the
      Unifying receiver.
      
      Without the hid-logitech-dj driver, interfaces 0 and 1 are claimed by
      hid-input, as they correspond to a keyboard and a mouse. But that is not
      relevant to the discussion.
      
      [jkosina@suse.cz: make the changelog more verbose, thanks to Nestor]
      Signed-off-by: NOlivier Gay <ogay@logitech.com>
      Signed-off-by: NNestor Lopez Casado <nlopezcasad@logitech.com>
      Signed-off-by: NMathieu Meisser <mmeisser@logitech.com>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      dcdc50e7
  2. 21 11月, 2013 1 次提交
  3. 11 11月, 2013 1 次提交
    • S
      HID: sony: Add force feedback support for Dualshock3 USB · a08c22c0
      Sven Eckelmann 提交于
      Sony Dualshock 3 controllers have two motors which can be used to provide
      simple force feedback rumble effects. The right motor is can be used to create
      a weak rumble effect but does not allow to set the force. The left motor is
      used to create a strong rumble effect with adjustable intensity.
      
      The state of both motors can be changed using HID_OUTPUT_REPORT packets and
      have no timing information. FF memless is used to keep track of the timing and
      the sony driver just generates the necessary URBs.
      Signed-off-by: NSven Eckelmann <sven@narfation.org>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      a08c22c0
  4. 30 10月, 2013 1 次提交
  5. 25 10月, 2013 2 次提交
  6. 15 10月, 2013 1 次提交
  7. 09 10月, 2013 1 次提交
  8. 02 10月, 2013 1 次提交
  9. 24 9月, 2013 1 次提交
  10. 13 9月, 2013 1 次提交
  11. 29 7月, 2013 1 次提交
  12. 13 6月, 2013 1 次提交
  13. 03 6月, 2013 2 次提交
  14. 29 5月, 2013 1 次提交
    • J
      HID: add driver for ELO 4000/4500 · d23efc19
      Jiri Slaby 提交于
      This is a driver for ELO 4000/4500 devices which report themselves as
      HID devices, but do not really send HID events on touch. So we
      introduce a new HID 'quirk' driver with a raw_event handler where we
      take care of those events.
      
      What we need additionally is an input_configured hook, because the
      device does not mention anything about PRESSURE and TOUCH in its
      report descriptor, but it actually generate those. So we set the bits
      in the corresponding input_dev in that hook.
      
      Thanks to Petr Ostadal who was willing to test the driver. The rest of
      Cc's listed below had something to do with that driver over the years
      in our enterprise tree.
      Signed-off-by: NJiri Slaby <jslaby@suse.cz>
      Tested-by: NPetr Ostadal <postadal@suse.cz>
      Cc: Oliver Neukum <oliver@neukum.org>
      Cc: Vojtech Pavlik <vojtech@suse.cz>
      Cc: Egbert Eich <eich@suse.com>
      Cc: Libor Pechacek <lpechacek@suse.cz>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      d23efc19
  15. 28 5月, 2013 5 次提交
    • M
      HID: add support for Huion 580 tablet · 68e353fe
      Martin Rusko 提交于
      Add hid-huion.c with support for Huion 580 tablet, which is simple
      8x5" tablet with 4000LPI resolution and 2048 levels pressure-sensitive
      pen manufactured by the Chinese company Huion.
      
      The driver fixes incorrect report descriptor sent by the device,
      performs custom initialization required to switch the tablet into
      its native resolution mode and inverts the in-range bit.
      Signed-off-by: NMartin Rusko <martin.rusko@gmail.com>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      68e353fe
    • C
      HID: Add support for Holtek gaming mouse 04d9:a04a · d4f51890
      Christian Ohm 提交于
      This mouse is sold as Tracer Sniper TRM-503, NOVA Gaming Slider X200 and
      Zalman ZM-GM1, and reports too high usage maximum and logical maximum
      (like 04d9:a067, but its report descriptor is different). This patch
      adds its USB ID and fixes the report descriptor in the same way.
      
      Note: I don't actually have such a mouse to test, I took the report
      descriptor posted at https://bugzilla.novell.com/show_bug.cgi?id=774676,
      compared it to the one from 04d9:a067 and changed the offsets
      accordingly (all numbers minus 9, since it is 9 bytes shorter, and the
      difference is before the values that need changing). That Surely Works™.
      Signed-off-by: NChristian Ohm <chr.ohm@gmx.net>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      d4f51890
    • C
      HID: Add driver for Holtek gaming mouse 04d9:a067 · 41de326e
      Christian Ohm 提交于
      This mouse is sold as Sharkoon Drakonia and Perixx MX-2000 and reports a
      too high usage maximum and logical maximum. This driver fixes the report
      descriptor so those values don't exceed HID_MAX_USAGES.
      Signed-off-by: NChristian Ohm <chr.ohm@gmx.net>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      41de326e
    • J
      HID: sony: fix leds dependency · 40e32ee6
      Jiri Kosina 提交于
      The newly added support for Buzz controller
      
      - introduced Kconfig selection of LEDS_CLASS
      - introduced conditional preprocessor checking for CONFIG_LEDS_CLASS
      
      This has multiple problems -- namely select doesn't work transitively,
      so it shouldn't be used. On the other hand the code assumed that LEDS_CLASS
      is enabled in some places, but not everywhere.
      
      Put LEDS_CLASS as a Kconfig dependency for hid-sony and remove all the
      CONFIG_LEDS_CLASS conditionals from hid-sony.
      
      Reported-by: fengguang.wu@intel.com
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      40e32ee6
    • C
      HID: driver for PS2/3 Buzz controllers · f04d5140
      Colin Leitner 提交于
      This patch adds support for PS2/3 Buzz controllers into hid-sony
      
      It has been tested on Debian 7 with kernel version 3.10.0-rc2. Unfortunately
      I can't test the patch with a regular six-axis controller myself.
      Signed-off-by: NColin Leitner <colin.leitner@gmail.com>
      Cc: Jiri Kosina <jkosina@suse.cz>
      Cc: linux-input@vger.kernel.org
      Cc: linux-kernel@vger.kernel.org
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      f04d5140
  16. 21 4月, 2013 1 次提交
  17. 19 4月, 2013 1 次提交
  18. 07 3月, 2013 1 次提交
  19. 05 3月, 2013 1 次提交
  20. 25 2月, 2013 3 次提交
  21. 19 2月, 2013 1 次提交
    • V
      HID: add ThingM blink(1) USB RGB LED support · 30ba2fbd
      Vivien Didelot 提交于
      The ThingM blink(1) is an open source hardware USB RGB LED. It contains
      an internal EEPROM, allowing to configure up to 12 light patterns. A
      light pattern is a RGB color plus a fade time. This driver registers a
      LED class instance with additional sysfs attributes to support basic
      functions such as setting RGB colors, fade and playing. Other functions
      are still accessible through the hidraw interface.
      
      At this time, the only documentation for the device is the firmware
      source code from ThingM, plus a few schematics. They are available at:
      
      https://github.com/todbot/blink1
      
      This patch is version 3. It updates the name of the source file, the
      driver and the led sysfs entry, according to comments from Jiri Kosina
      and Simon Wood.
      Signed-off-by: NVivien Didelot <vivien.didelot@savoirfairelinux.com>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      30ba2fbd
  22. 07 2月, 2013 1 次提交
  23. 31 1月, 2013 2 次提交
  24. 03 1月, 2013 1 次提交
  25. 19 11月, 2012 1 次提交
  26. 31 10月, 2012 2 次提交
  27. 01 10月, 2012 1 次提交
  28. 07 9月, 2012 1 次提交
  29. 03 9月, 2012 1 次提交
    • J
      HID: Remove "default m" from HID_LOGITECH_DJ · 6dbea044
      Josh Triplett 提交于
      HID_LOGITECH_DJ uses "default m", which enables it in default kernel
      builds.  Since this module just enables extra, non-critical
      functionality for one particular piece of hardware (specifically,
      differentiating multiple wireless keyboards and mice as separate input
      devices rather than treating them as one device), and the hardware works
      just fine with the default USB HID support, drop the "default m".
      Signed-off-by: NJosh Triplett <josh@joshtriplett.org>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      6dbea044
  30. 15 8月, 2012 1 次提交