1. 29 Dec, 2003 14 commits
  2. 24 Dec, 2003 1 commit
  3. 23 Dec, 2003 1 commit
  4. 21 Dec, 2003 1 commit
  5. 20 Dec, 2003 1 commit
  6. 19 Dec, 2003 1 commit
  7. 18 Dec, 2003 19 commits
    • Dmitry Torokhov's avatar
      [PATCH] Input: synaptics protocol discovery · fe6705c3
      Dmitry Torokhov authored
      If Synaptics fails to activate or if disabled by psmouse_proto option try
      other extended protocols as some touchpads may support them.
      fe6705c3
    • Dmitry Torokhov's avatar
      [PATCH] Input: remove synaptics config option · 07f0aef8
      Dmitry Torokhov authored
      Remove Synaptics config option.  Since mousedev was fixed with regard to
      touchpads generating absolute events there should no troubles for users
      migrating from older kernel or different hardware so we can have it always
      compiled in.
      07f0aef8
    • Dmitry Torokhov's avatar
      [PATCH] Input: add serio_[un]register_port_delayed to fix deadlock · c948129d
      Dmitry Torokhov authored
      Add serio_[un]register_port_delayed to allow delayed execution of
      register/unregister code (via kseriod) when it is not clear whether
      serio_sem has been taken or not.  Use in i8042.c to avoid deadlock
      c948129d
    • Dmitry Torokhov's avatar
      [PATCH] Input: psmouse fixes · c5a67891
      Dmitry Torokhov authored
      - Remove psmouse_pm_callback since i8042 now has its own resume
        handler which will issue reconnect request
      - Do not close/open serio port in psmouse_reconnect since i8042
        should restore ports to the proper state before calling reconnect
      c5a67891
    • Dmitry Torokhov's avatar
      [PATCH] Input: add atkbd reconnect method · bfb0d97d
      Dmitry Torokhov authored
      Add reconnect method to atkbd to restore keyboard state after suspend (to
      be called from i8042 resume function)
      bfb0d97d
    • Dmitry Torokhov's avatar
      [PATCH] Input: implement resume methods · 25b78b8f
      Dmitry Torokhov authored
      - Implement resume methods using serio_reconnect facility
      - Register i8042 with sysfs
      - Register i8042 with older PM scheme to restore keyboard
        and mouse for APM users
      - Convert parameter handling to the new style
      - Unregister port not only when there is no free IRQ but
        also if the port fails to activate.
      25b78b8f
    • Dmitry Torokhov's avatar
      [PATCH] Input: add psmouse_proto parameter · c0fbf5b6
      Dmitry Torokhov authored
      New parameter psmouse_proto to replace psmouse_noext.  Allows to specify
      highest PS/2 protocol extension that kernel has permission to negotiate
      (bare|imps|exps).  psmouse_noext marked as deprecated and emits a warning
      when used.  parameter parsing converted to the new scheme.
      c0fbf5b6
    • Dmitry Torokhov's avatar
      [PATCH] input: fix atkbd_softrepeat · 0f40c994
      Dmitry Torokhov authored
      Fix atkbd_softrepeat kernel command line parameter.
      0f40c994
    • Vojtech Pavlik's avatar
      [PATCH] Fixes for keyboard 2.4 compatibility · 46716383
      Vojtech Pavlik authored
      I have two patches I'd like to get tested by a wider audience before
      sending them to Linus for the 2.6 tree.
      
      The first one fixes an issue in current 2.6-test with AT keyboard repeat
      rate setting, the second one makes setkeycodes/getkeycodes work the same
      as 2.4, so that people can keep their setups. It also fixes japanese and
      korean key handling.
      46716383
    • Arief Mulya Utama's avatar
      [PATCH] psmouse pm resume fix · f5af7c4c
      Arief Mulya Utama authored
      I just want to share a little change that I've did to psmouse_pm_callback()
      which without this, my synaptics touchpad would prevent my laptop (IBM
      Thinkpad T30) from suspending.
      f5af7c4c
    • Dmitry Torokhov's avatar
      [PATCH] Input: unregister i8042 port when writing to control register fails · 39e00ca1
      Dmitry Torokhov authored
      I think that if we can't write to the control register it's not less critical
      than not having a free IRQ so we better unregister port in this case as well.
      
      Also logging moved a bit.
      39e00ca1
    • Peter Osterlund's avatar
      [PATCH] synaptics powerpro fix · 75dcd3a4
      Peter Osterlund authored
      Made the packet checking code less strict, so that the driver works also for
      touchpads that don't strictly follow the synaptics absolute protocol. 
      Problem reported by Anders Kaseorg using a PowerPro C 3:16 laptop.
      75dcd3a4
    • Dmitry Torokhov's avatar
      [PATCH] Synaptics: use serio_reconnect · 2b07066d
      Dmitry Torokhov authored
      Input/Synaptics:
        1. Support for pass-through port moved from Synaptics driver to psmouse
           itself, it is cleaner and should allow using it in other drivers if
           needed.
        2. The driver makes use of new reconnect functionality in serio. It will
           try to keep the same input device after resume or when it resets itself.
        3. If mouse is disconnected or other mouse plugged in while sleeping the
           driver should correctly recognize that and create a new serio/input 
           device.
      2b07066d
    • Dmitry Torokhov's avatar
      [PATCH] serio: reconnect facility · 5ef1bd1e
      Dmitry Torokhov authored
      Input: serio_reconnect added. Similar to serio_rescan but gives driver
             a chance to re-initialize keeping the same input device.
      5ef1bd1e
    • Dmitry Torokhov's avatar
      [PATCH] Synaptics: code cleanup · 7822f653
      Dmitry Torokhov authored
      Input: Synaptics code cleanup and credit update.
      7822f653
    • Dmitry Torokhov's avatar
      [PATCH] Add black list to handler<->device matching · 35028d96
      Dmitry Torokhov authored
      Input: Introduce an optional blacklist field in input_handler structure.
             When loading a new device or a new handler try to match device
             against handler's black list before doing match on required 
             attributes.
             This allows to get rid of "surprises" in connect functions, IMO
             connect should only fail when it physically can not connect, not
             because it decides it does not like device.
      35028d96
    • Dmitry Torokhov's avatar
      [PATCH] serio: possible race between port removal and kseriod · 94b49086
      Dmitry Torokhov authored
      Input: There is a possibility that serio might get deleted while there
             are outstanding events involving that serio waiting for kseriod
             to process them. Invalidate them so kseriod thread will just
             drop dead events.
      94b49086
    • Dmitry Torokhov's avatar
      [PATCH] serio: rename serio_[un]register_slave_port to __serio_[un]register_port · 9c3faa99
      Dmitry Torokhov authored
      Input: rename serio_{register|unregister}_slave_port to 
             __serio_{register|unregister}_port to better follow
             locked/lockless naming convention
      9c3faa99
    • David S. Miller's avatar
      Merge nuts.ninka.net:/disk1/davem/BK/sparcwork-2.5 · 2af01b24
      David S. Miller authored
      into nuts.ninka.net:/disk1/davem/BK/sparc-2.5
      2af01b24
  8. 17 Dec, 2003 2 commits