1. 23 12月, 2008 2 次提交
  2. 20 12月, 2008 1 次提交
  3. 25 11月, 2008 1 次提交
  4. 20 11月, 2008 1 次提交
    • N
      Input: usbtouchscreen - fix TSC-10 DM USB controllers without EEPROM · 2ec6f246
      Nuno Lucas 提交于
      The usbtouchscreen module implements a driver for the TSC-10 DM USB
      touchscreen controllers, but assumes a 2-byte response for the
      CMD_RESET and CMD_RATE commands, when they can be only a single byte
      when no EEPROM is connected.
      
      The driver worked with an earlier controller revision, but new
      revisions of the controller fail.
      
      It seems the problem is that the early controller had the
      SEL4/EEPROM-CS pin high, but the new controller has it down, making
      the response different.
      
      Without the fix, the controller would answer the single byte 0x06
      (ACK), making the init fail with -ENODEV because buf[1] is 0xFF (as
      initialized before).
      
      As the single byte is the only thing we need to check it was ok, there
      is no need to verify the second byte.
      
      The [0x15 0x01] case is the NAK [0x15] response for when there is no
      data in the EEPROM [bit-0 of second byte set], so I let that be, as I
      don't have any controller with an EEPROM.
      
      With this patch, both the earlier and latest controller work the same.
      
      Note: This was previously submited as BUG #11961 [1] on the bugzilla
      tracker, but rebased to version 2.6.27.4 and with unnecessary comments
      and printk's removed.
      
      [1] http://bugzilla.kernel.org/show_bug.cgi?id=11961Signed-off-by: NNuno Lucas <ntlucas@gmail.com>
      Acked-by: NDaniel Ritz <daniel.ritz@gmx.ch>
      Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
      2ec6f246
  5. 30 10月, 2008 2 次提交
  6. 21 10月, 2008 1 次提交
  7. 20 10月, 2008 2 次提交
  8. 14 10月, 2008 1 次提交
  9. 09 10月, 2008 1 次提交
  10. 18 9月, 2008 1 次提交
  11. 17 9月, 2008 1 次提交
  12. 11 9月, 2008 3 次提交
  13. 24 8月, 2008 1 次提交
  14. 21 8月, 2008 1 次提交
  15. 18 8月, 2008 1 次提交
  16. 11 8月, 2008 1 次提交
  17. 07 8月, 2008 2 次提交
  18. 29 7月, 2008 1 次提交
  19. 27 7月, 2008 1 次提交
  20. 24 7月, 2008 3 次提交
  21. 08 7月, 2008 1 次提交
  22. 03 7月, 2008 1 次提交
  23. 30 6月, 2008 2 次提交
  24. 02 6月, 2008 1 次提交
  25. 27 5月, 2008 4 次提交
  26. 22 5月, 2008 1 次提交
  27. 21 5月, 2008 1 次提交
  28. 17 5月, 2008 1 次提交
    • M
      Input: add support for SuperH MigoR touchscreen · 885c316d
      Magnus Damm 提交于
      This is V2 of the MigoR touch screen driver. The chip we interface to
      is unfortunately a custom designed microcontroller speaking some
      undocumented protocol over i2c.
      
      The board specific code is expected to register this device as an i2c
      chip using struct i2c_board_info [] and i2c_register_board_info().
      
      [dtor@mail.ru: don't enable touchscreen if there are no users]
      Signed-off-by: NMagnus Damm <damm@igel.co.jp>
      Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
      885c316d