linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Input and HID updates for 3.7
@ 2012-09-19 18:56 Henrik Rydberg
  2012-09-19 21:52 ` Jiri Kosina
  0 siblings, 1 reply; 6+ messages in thread
From: Henrik Rydberg @ 2012-09-19 18:56 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Dmitry Torokhov, linux-input, linux-kernel

Hi Jiri,

Please pull this tree to receive Input and HID updates for 3.7. The
tree contains input core changes, Acked by Dmitry, which substantially
reduces the irqsoff latency for all input devices. It also contains MT
changes which allows further memory reduction, speedup and hardware
support in the HID Multitouch driver. Lastly, you get the conversion
of the bcm5974 driver to MT-B, which due to the mixed dependency of
the tree fits better here than anywhere else.

Thanks,
Henrik

The following changes since commit 4cbe5a555fa58a79b6ecbb6c531b8bab0650778d:

  Linux 3.6-rc4 (2012-09-01 10:39:58 -0700)

are available in the git repository at:

  git://github.com/rydberg/linux.git for-next

for you to fetch changes up to 51c80b74002f86477d691ed7c8ac479dcfa6271c:

  Input: bcm5974 - Convert to MT-B (2012-09-19 19:50:22 +0200)

----------------------------------------------------------------
Henrik Rydberg (21):
      Input: Break out MT data
      Input: Improve the events-per-packet estimate
      Input: Make sure we follow all EV_KEY events
      Input: Move autorepeat to the event-passing phase
      Input: Send events one packet at a time
      Input: evdev - Add the events() callback
      Input: MT - Add flags to input_mt_init_slots()
      Input: MT - Handle frame synchronization in core
      Input: MT - Add in-kernel tracking
      Input: MT - Get slot by key
      Input: MT - Allow legacy pressure computation
      HID: Add an input configured notification callback
      HID: Allow more fields in the hid report
      HID: hid-multitouch: Simplify setup and frame synchronization
      HID: hid-multitouch: Remove the redundant touch state
      HID: hid-multitouch: Fix contact count on 3M panels
      HID: hid-multitouch: Add Flatfrog support
      Input: bcm5974 - only setup button urb for TYPE1 devices
      Input: bcm5974 - Preparatory renames
      Input: bcm5974 - Drop the logical dimensions
      Input: bcm5974 - Convert to MT-B

 drivers/hid/hid-ids.h                    |   3 +
 drivers/hid/hid-input.c                  |  11 +-
 drivers/hid/hid-magicmouse.c             |   2 +-
 drivers/hid/hid-multitouch.c             | 185 ++++++++--------
 drivers/input/evdev.c                    |  78 ++++---
 drivers/input/input-mt.c                 | 305 ++++++++++++++++++++++++---
 drivers/input/input.c                    | 254 ++++++++++++++--------
 drivers/input/misc/uinput.c              |   2 +-
 drivers/input/mouse/alps.c               |   2 +-
 drivers/input/mouse/bcm5974.c            | 348 ++++++++++++++-----------------
 drivers/input/mouse/elantech.c           |   4 +-
 drivers/input/mouse/sentelic.c           |   2 +-
 drivers/input/mouse/synaptics.c          |   4 +-
 drivers/input/tablet/wacom_wac.c         |   6 +-
 drivers/input/touchscreen/atmel_mxt_ts.c |   2 +-
 drivers/input/touchscreen/cyttsp_core.c  |   2 +-
 drivers/input/touchscreen/edt-ft5x06.c   |   2 +-
 drivers/input/touchscreen/egalax_ts.c    |   2 +-
 drivers/input/touchscreen/ili210x.c      |   2 +-
 drivers/input/touchscreen/mms114.c       |   2 +-
 drivers/input/touchscreen/penmount.c     |   2 +-
 drivers/input/touchscreen/wacom_w8001.c  |   2 +-
 include/linux/hid.h                      |   5 +-
 include/linux/input.h                    |  35 ++--
 include/linux/input/mt.h                 |  57 ++++-
 25 files changed, 850 insertions(+), 469 deletions(-)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [GIT PULL] Input and HID updates for 3.7
  2012-09-19 18:56 [GIT PULL] Input and HID updates for 3.7 Henrik Rydberg
@ 2012-09-19 21:52 ` Jiri Kosina
  2012-09-28 17:35   ` Dmitry Torokhov
  0 siblings, 1 reply; 6+ messages in thread
From: Jiri Kosina @ 2012-09-19 21:52 UTC (permalink / raw)
  To: Henrik Rydberg; +Cc: Dmitry Torokhov, linux-input, linux-kernel

On Wed, 19 Sep 2012, Henrik Rydberg wrote:

> Hi Jiri,
> 
> Please pull this tree to receive Input and HID updates for 3.7. The
> tree contains input core changes, Acked by Dmitry, which substantially
> reduces the irqsoff latency for all input devices. It also contains MT
> changes which allows further memory reduction, speedup and hardware
> support in the HID Multitouch driver. Lastly, you get the conversion
> of the bcm5974 driver to MT-B, which due to the mixed dependency of
> the tree fits better here than anywhere else.
> 
> Thanks,
> Henrik
> 
> The following changes since commit 4cbe5a555fa58a79b6ecbb6c531b8bab0650778d:
> 
>   Linux 3.6-rc4 (2012-09-01 10:39:58 -0700)
> 
> are available in the git repository at:
> 
>   git://github.com/rydberg/linux.git for-next

Pulled. Thanks Henrik, thanks Dmitry.

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [GIT PULL] Input and HID updates for 3.7
  2012-09-19 21:52 ` Jiri Kosina
@ 2012-09-28 17:35   ` Dmitry Torokhov
  2012-09-28 20:21     ` Jiri Kosina
  0 siblings, 1 reply; 6+ messages in thread
From: Dmitry Torokhov @ 2012-09-28 17:35 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Henrik Rydberg, linux-input, linux-kernel

On Wed, Sep 19, 2012 at 11:52:01PM +0200, Jiri Kosina wrote:
> On Wed, 19 Sep 2012, Henrik Rydberg wrote:
> 
> > Hi Jiri,
> > 
> > Please pull this tree to receive Input and HID updates for 3.7. The
> > tree contains input core changes, Acked by Dmitry, which substantially
> > reduces the irqsoff latency for all input devices. It also contains MT
> > changes which allows further memory reduction, speedup and hardware
> > support in the HID Multitouch driver. Lastly, you get the conversion
> > of the bcm5974 driver to MT-B, which due to the mixed dependency of
> > the tree fits better here than anywhere else.
> > 
> > Thanks,
> > Henrik
> > 
> > The following changes since commit 4cbe5a555fa58a79b6ecbb6c531b8bab0650778d:
> > 
> >   Linux 3.6-rc4 (2012-09-01 10:39:58 -0700)
> > 
> > are available in the git repository at:
> > 
> >   git://github.com/rydberg/linux.git for-next
> 
> Pulled. Thanks Henrik, thanks Dmitry.

Hmm, it looks like the work on making evdev using dynamic device numbers
will clash with Henrik's changes. I think I will also pull this into my
tree and then git should be able to resolve it all properly in -next.

Thanks.

-- 
Dmitry

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [GIT PULL] Input and HID updates for 3.7
  2012-09-28 17:35   ` Dmitry Torokhov
@ 2012-09-28 20:21     ` Jiri Kosina
  2012-09-29  9:02       ` Henrik Rydberg
  0 siblings, 1 reply; 6+ messages in thread
From: Jiri Kosina @ 2012-09-28 20:21 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: Henrik Rydberg, linux-input, linux-kernel

On Fri, 28 Sep 2012, Dmitry Torokhov wrote:

> > > Please pull this tree to receive Input and HID updates for 3.7. The
> > > tree contains input core changes, Acked by Dmitry, which substantially
> > > reduces the irqsoff latency for all input devices. It also contains MT
> > > changes which allows further memory reduction, speedup and hardware
> > > support in the HID Multitouch driver. Lastly, you get the conversion
> > > of the bcm5974 driver to MT-B, which due to the mixed dependency of
> > > the tree fits better here than anywhere else.
> > > 
> > > Thanks,
> > > Henrik
> > > 
> > > The following changes since commit 4cbe5a555fa58a79b6ecbb6c531b8bab0650778d:
> > > 
> > >   Linux 3.6-rc4 (2012-09-01 10:39:58 -0700)
> > > 
> > > are available in the git repository at:
> > > 
> > >   git://github.com/rydberg/linux.git for-next
> > 
> > Pulled. Thanks Henrik, thanks Dmitry.
> 
> Hmm, it looks like the work on making evdev using dynamic device numbers
> will clash with Henrik's changes. I think I will also pull this into my
> tree and then git should be able to resolve it all properly in -next.

That should work. Alternatively you can pull 'from-henrik' branch from my 
tree in case Henrik has already ditched/rebased his tree.

And when merging to Linus shouldn't really matter, git should handle that 
as well nicely.

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [GIT PULL] Input and HID updates for 3.7
  2012-09-28 20:21     ` Jiri Kosina
@ 2012-09-29  9:02       ` Henrik Rydberg
  2012-10-01 22:16         ` Jiri Kosina
  0 siblings, 1 reply; 6+ messages in thread
From: Henrik Rydberg @ 2012-09-29  9:02 UTC (permalink / raw)
  To: Jiri Kosina; +Cc: Dmitry Torokhov, linux-input, linux-kernel

> > Hmm, it looks like the work on making evdev using dynamic device numbers
> > will clash with Henrik's changes. I think I will also pull this into my
> > tree and then git should be able to resolve it all properly in -next.
> 
> That should work. Alternatively you can pull 'from-henrik' branch from my 
> tree in case Henrik has already ditched/rebased his tree.

The tree will remain the same until after 3.7-rc1 is out, so pulling
should be fine.

Thanks,
Henrik

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [GIT PULL] Input and HID updates for 3.7
  2012-09-29  9:02       ` Henrik Rydberg
@ 2012-10-01 22:16         ` Jiri Kosina
  0 siblings, 0 replies; 6+ messages in thread
From: Jiri Kosina @ 2012-10-01 22:16 UTC (permalink / raw)
  To: Henrik Rydberg; +Cc: Dmitry Torokhov, linux-input, linux-kernel

On Sat, 29 Sep 2012, Henrik Rydberg wrote:

> > > Hmm, it looks like the work on making evdev using dynamic device numbers
> > > will clash with Henrik's changes. I think I will also pull this into my
> > > tree and then git should be able to resolve it all properly in -next.
> > 
> > That should work. Alternatively you can pull 'from-henrik' branch from my 
> > tree in case Henrik has already ditched/rebased his tree.
> 
> The tree will remain the same until after 3.7-rc1 is out, so pulling
> should be fine.

Linus has just pulled from hid.git, so you can cross-check the pending 
changes now.

Thanks,

-- 
Jiri Kosina
SUSE Labs

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-10-01 22:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-19 18:56 [GIT PULL] Input and HID updates for 3.7 Henrik Rydberg
2012-09-19 21:52 ` Jiri Kosina
2012-09-28 17:35   ` Dmitry Torokhov
2012-09-28 20:21     ` Jiri Kosina
2012-09-29  9:02       ` Henrik Rydberg
2012-10-01 22:16         ` Jiri Kosina

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).