1. 14 3月, 2012 1 次提交
  2. 16 11月, 2011 1 次提交
  3. 30 10月, 2011 1 次提交
  4. 19 10月, 2011 1 次提交
    • M
      Input: adp5589-keys - add support for the ADP5585 derivatives · 3f48e735
      Michael Hennerich 提交于
      The ADP5585 family keypad decoder and IO expander is similar to the ADP5589,
      however it features less IO pins, and lacks hardware assisted key-lock
      functionality. Unfortunately the register addresses are different, as well as
      the event codes and bit organization within the port related registers.
      
      Move ADP5589 Register defines from the header file into the main source file.
      Add new defines while making sure we don't break existing platform_data.
      Add register address translation, and turn device specific defines into variables.
      Introduce some helper functions and disable functions that doesn't
      exist on the added devices.
      Signed-off-by: NMichael Hennerich <michael.hennerich@analog.com>
      Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
      3f48e735
  5. 27 5月, 2011 1 次提交
  6. 19 5月, 2011 1 次提交
  7. 12 5月, 2011 1 次提交
  8. 14 3月, 2011 1 次提交
  9. 21 1月, 2011 2 次提交
  10. 08 1月, 2011 1 次提交
  11. 30 12月, 2010 1 次提交
  12. 08 12月, 2010 1 次提交
  13. 07 12月, 2010 1 次提交
  14. 20 11月, 2010 1 次提交
  15. 13 10月, 2010 1 次提交
  16. 09 10月, 2010 1 次提交
  17. 24 9月, 2010 1 次提交
  18. 01 9月, 2010 1 次提交
  19. 12 8月, 2010 1 次提交
  20. 21 7月, 2010 1 次提交
  21. 18 7月, 2010 1 次提交
  22. 08 7月, 2010 2 次提交
  23. 04 7月, 2010 1 次提交
  24. 23 6月, 2010 1 次提交
    • R
      Input: fixup X86_MRST selects · 0b28bac5
      Randy Dunlap 提交于
      Some of the recent X86_MRST additions make some "select"s
      conditional on X86_MRST but missed some related kconfig symbols,
      causing:
      
      drivers/built-in.o: In function `ps2_end_command':
      (.text+0x257ab2): undefined reference to `i8042_check_port_owner'
      drivers/built-in.o: In function `ps2_end_command':
      (.text+0x257ae1): undefined reference to `i8042_unlock_chip'
      drivers/built-in.o: In function `ps2_begin_command':
      (.text+0x257b40): undefined reference to `i8042_check_port_owner'
      drivers/built-in.o: In function `ps2_begin_command':
      (.text+0x257b6f): undefined reference to `i8042_lock_chip'
      
      when SERIO_I8042=m, SERIO_LIBPS2=y, KEYBOARD_ATKBD=y.
      
      We need to make i8042 dependant upon !X86_MRST and allow deselecting
      atkbd on Moorestown even when !CONFIG_EMBEDDED.
      Signed-off-by: NRandy Dunlap <randy.dunlap@oracle.com>
      Cc: Jacob Pan <jacob.jun.pan@intel.com>
      Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
      0b28bac5
  25. 20 5月, 2010 1 次提交
  26. 11 5月, 2010 2 次提交
  27. 04 5月, 2010 2 次提交
  28. 17 2月, 2010 1 次提交
  29. 11 2月, 2010 1 次提交
  30. 01 2月, 2010 1 次提交
    • A
      Input: add imx-keypad driver to support the IMX Keypad Port · 76cdc083
      Alberto Panizzo 提交于
      The IMX family of Application Processors is shipped with a Keypad Port
      supported by this driver.
      
      The peripheral can control up to an 8x8 matrix key pad where all the
      scanning is done via software.  The hardware provides two interrupts:
      one for key presses (KDI) and one for all key releases (KRI). There is
      also a simple circuit for glitch reduction (said for synchronization)
      made by two series of 3 D-latches clocked by the keypad-clock that
      stabilize the interrupts sources. KDI and KRI are fired only if the
      respective conditions are maintained for at last 4 keypad-clock cycle.
      
      Since those circuits are poor for a correct debounce process (the
      keypad-clock frequency is 32K and bounces longer than 94us are not
      masked) the driver, when an interrupt arrives, samples the matrix
      with a period of 10ms until the readins are stable for
      IMX_KEYPAD_SCANS_FOR_STABILITY times (currently set at 3). After
      getting stable result appropriate events are sent through the input
      stack.
      
      If some keys are maintained pressed, the driver continues to scan
      the matrix with a longer period (60ms) to catch possible multiple
      key presses without overloading the cpu. This process ends when all
      keys are released.
      
      This driver is tested to build in kernel or as a module and follow
      the specification of Freescale Application processors:
      i.MX25 i.MX27 i.MX31 i.MX35 i.MX51 especially tested on i.MX31.
      Signed-off-by: NAlberto Panizzo <maramaopercheseimorto@gmail.com>
      Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
      76cdc083
  31. 19 1月, 2010 1 次提交
  32. 14 12月, 2009 1 次提交
  33. 14 10月, 2009 1 次提交
  34. 23 9月, 2009 1 次提交
  35. 22 9月, 2009 1 次提交
  36. 18 9月, 2009 1 次提交