1. 26 7月, 2014 2 次提交
    • B
      Input: wacom - switch from an USB driver to a HID driver · 29b47391
      Benjamin Tissoires 提交于
      All USB Wacom tablets are actually HID devices.
      For historical reasons, they are handled as plain USB devices.
      The current code makes more and more reference to the HID subsystem
      like implementing its own HID report descriptor parser to handle new
      devices.
      
      From the user point of view, we can transparently switch from this state
      to a driver handled in the HID subsystem and clean up a lot of USB specific
      code in the wacom.ko driver.
      
      The other benefit once the USB dependecies have been removed is that we can
      use a tool like uhid to make regression tests and allow further cleanup or
      new implementations without risking breaking current behaviors.
      
      To match the current handling of devices in wacom_wac.c, we rely on the
      hid_type set by usbhid. usbhid sets the hid_type to HID_TYPE_USBMOUSE when
      it sees a USB boot mouse protocol declared and HID_TYPE_USBNONE when the
      device is plain HID. There is thus a one to one matching between the list
      of supported devices before and after the switch from USB to HID.
      Signed-off-by: NBenjamin Tissoires <benjamin.tissoires@redhat.com>
      Reviewed-by: NJason Gerecke <killertofu@gmail.com>
      Tested-by: NJason Gerecke <killertofu@gmail.com>
      Signed-off-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
      29b47391
    • B
      Input: wacom - create a separate input device for pads · d2d13f18
      Benjamin Tissoires 提交于
      Currently, the pad events are sent through the stylus input device
      for the Intuos/Cintiqs, and through the touch input device for the
      Bamboos.
      
      To differentiate the buttons pressed on the pad from the ones pressed
      on the stylus, the Intuos/Cintiq uses MISC_SERIAL and ABS_MISC. This
      lead to a multiplexing of the events into one device, which are then
      splitted out in xf86-input-wacom. Bamboos are not using MISC events
      because the pad is attached to the touch interface, and only BTN_TOUCH
      is used for the finger (and DOUBLE_TAP, etc...). However, the user space
      driver still splits out the pad from the touch interface in the same
      way it does for the pro line devices.
      
      The other problem we can see with this fact is that some of the Intuos
      and Cintiq have a wheel, and the effective range of the reported values
      is [0..71]. Unfortunately, the airbrush stylus also sends wheel events
      (there is a small wheel on it), but in the range [0..1023]. From the user
      space point of view it is kind of difficult to understand that because
      the wheel on the pad are quite common, while the airbrush tool is not.
      
      A solution to fix all of these problems is to split out the pad device
      from the stylus/touch. This decision makes more sense because the pad is
      not linked to the absolute position of the finger or pen, and usually, the
      events from the pad are filtered out by the compositor, which then convert
      them into actions or keyboard shortcuts.
      
      For backward compatibility with current xf86-input-wacom, the pad devices
      still present the ABS_X, ABS_Y and ABS_MISC events, but they can be
      completely ignored in the new implementation.
      Signed-off-by: NBenjamin Tissoires <benjamin.tissoires@redhat.com>
      Reviewed-by: NPing Cheng <pingc@wacom.com>
      Reviewed-by: NJason Gerecke <killertofu@gmail.com>
      Signed-off-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
      d2d13f18
  2. 07 1月, 2014 1 次提交
  3. 30 4月, 2012 1 次提交
  4. 26 3月, 2012 2 次提交
  5. 05 10月, 2011 2 次提交
  6. 08 9月, 2011 1 次提交
  7. 23 12月, 2010 1 次提交
  8. 06 9月, 2010 1 次提交
  9. 14 4月, 2010 4 次提交
  10. 11 2月, 2010 1 次提交
  11. 15 12月, 2009 3 次提交
  12. 09 5月, 2009 1 次提交
  13. 29 4月, 2009 1 次提交
  14. 26 11月, 2008 1 次提交
  15. 17 5月, 2008 1 次提交
  16. 15 4月, 2008 1 次提交
  17. 14 3月, 2008 1 次提交
  18. 10 7月, 2007 1 次提交
  19. 08 5月, 2007 1 次提交
  20. 02 12月, 2006 1 次提交
  21. 18 10月, 2006 1 次提交
  22. 05 10月, 2006 1 次提交
    • D
      IRQ: Maintain regs pointer globally rather than passing to IRQ handlers · 7d12e780
      David Howells 提交于
      Maintain a per-CPU global "struct pt_regs *" variable which can be used instead
      of passing regs around manually through all ~1800 interrupt handlers in the
      Linux kernel.
      
      The regs pointer is used in few places, but it potentially costs both stack
      space and code to pass it around.  On the FRV arch, removing the regs parameter
      from all the genirq function results in a 20% speed up of the IRQ exit path
      (ie: from leaving timer_interrupt() to leaving do_IRQ()).
      
      Where appropriate, an arch may override the generic storage facility and do
      something different with the variable.  On FRV, for instance, the address is
      maintained in GR28 at all times inside the kernel as part of general exception
      handling.
      
      Having looked over the code, it appears that the parameter may be handed down
      through up to twenty or so layers of functions.  Consider a USB character
      device attached to a USB hub, attached to a USB controller that posts its
      interrupts through a cascaded auxiliary interrupt controller.  A character
      device driver may want to pass regs to the sysrq handler through the input
      layer which adds another few layers of parameter passing.
      
      I've build this code with allyesconfig for x86_64 and i386.  I've runtested the
      main part of the code on FRV and i386, though I can't test most of the drivers.
      I've also done partial conversion for powerpc and MIPS - these at least compile
      with minimal configurations.
      
      This will affect all archs.  Mostly the changes should be relatively easy.
      Take do_IRQ(), store the regs pointer at the beginning, saving the old one:
      
      	struct pt_regs *old_regs = set_irq_regs(regs);
      
      And put the old one back at the end:
      
      	set_irq_regs(old_regs);
      
      Don't pass regs through to generic_handle_irq() or __do_IRQ().
      
      In timer_interrupt(), this sort of change will be necessary:
      
      	-	update_process_times(user_mode(regs));
      	-	profile_tick(CPU_PROFILING, regs);
      	+	update_process_times(user_mode(get_irq_regs()));
      	+	profile_tick(CPU_PROFILING);
      
      I'd like to move update_process_times()'s use of get_irq_regs() into itself,
      except that i386, alone of the archs, uses something other than user_mode().
      
      Some notes on the interrupt handling in the drivers:
      
       (*) input_dev() is now gone entirely.  The regs pointer is no longer stored in
           the input_dev struct.
      
       (*) finish_unlinks() in drivers/usb/host/ohci-q.c needs checking.  It does
           something different depending on whether it's been supplied with a regs
           pointer or not.
      
       (*) Various IRQ handler function pointers have been moved to type
           irq_handler_t.
      Signed-Off-By: NDavid Howells <dhowells@redhat.com>
      (cherry picked from 1b16e7ac850969f38b375e511e3fa2f474a33867 commit)
      7d12e780
  23. 28 9月, 2006 1 次提交