linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Pavel Rojtberg <rojtberg@gmail.com>
To: linux-input@vger.kernel.org, pgriffais@valvesoftware.com,
	dmitry.torokhov@gmail.com, gregkh@linuxfoundation.org
Cc: Pavel Rojtberg <rojtberg@gmail.com>
Subject: [PATCH 00/15] Input: xpad: updates
Date: Thu,  1 Oct 2015 22:57:11 +0200	[thread overview]
Message-ID: <1443733046-29610-1-git-send-email-rojtberg@gmail.com> (raw)

From: Pavel Rojtberg <rojtberg@gmail.com>

This series contains several bug-fixes and updates for the xpad driver from
my github repository. See the issue tracker for full discussion of the
individual patches:
https://github.com/paroj/xpad/issues?q=is%3Aissue+is%3Aclosed

Patches 1-2 improve device support

Patches 3-5 are refactorings in preparation for the following changes

Patch 6 makes the x360 wireless pads support the x360 wired button interface.
See the commit message for details and a link to the preceding discussion.

Patches 7-10 implement "on demand" creation/ deletion of input 
devices. To this end pad enumeration had to be changed from an monotonic
counter to a ida() based enumeration. See Patch 10 for rationale.

Patches 11-13 properly handle incoming messages when the irq_out is busy 

Patch 14 fixes issues of the x360 wireless pads after suspend/ resume.

Patch 15 improves Xbox One Force Feedback support

Dario Scarpa (1):
  Input: xpad: fix Razer Atrox Arcade Stick button mapping

Erik Lundgren (1):
  Input: xpad: add Covert Forces edition of the Xbox One controller

Pavel Rojtberg (10):
  Input: xpad: clarify LED enumeration
  Input: xpad: remove needless bulk out URB used for LED setup
  Input: xpad: factor out URB submission in xpad_play_effect
  Input: xpad: x360w: report dpad as buttons and axes
  Input: xpad: query Wireless controller state at init
  Input: xpad: use ida() for finding the pad_nr
  Input: xpad: do not submit active URBs
  Input: xpad: replace mutex by spinlock
  Input: xpad: re-submit pending ff and led requests
  Input: xpad: workaround dead irq_out after suspend/ resume

Pierre-Loup A. Griffais (3):
  Input: xpad: move the input device creation to a new function
  Input: xpad: handle "present" and "gone" correctly
  Input: xpad: update Xbox One Force Feedback Support

 drivers/input/joystick/drivers/input/joystick/xpad.c | 666 ++++++++++++++++++++++++++++++++++++++++-------------------------
 1 file changed, 407 insertions(+), 259 deletions(-)

-- 
1.9.1


             reply	other threads:[~2015-10-01 20:57 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-01 20:57 Pavel Rojtberg [this message]
2015-10-01 20:57 ` [PATCH 01/15] Input: xpad: add Covert Forces edition of the Xbox One controller Pavel Rojtberg
2015-10-10 16:42   ` Dmitry Torokhov
2015-10-01 20:57 ` [PATCH 02/15] Input: xpad: fix Razer Atrox Arcade Stick button mapping Pavel Rojtberg
2015-10-10 16:43   ` Dmitry Torokhov
2015-10-01 20:57 ` [PATCH 03/15] Input: xpad: clarify LED enumeration Pavel Rojtberg
2015-10-10 16:44   ` Dmitry Torokhov
2015-10-01 20:57 ` [PATCH 04/15] Input: xpad: remove needless bulk out URB used for LED setup Pavel Rojtberg
2015-10-10 16:45   ` Dmitry Torokhov
2015-10-01 20:57 ` [PATCH 05/15] Input: xpad: factor out URB submission in xpad_play_effect Pavel Rojtberg
2015-10-10 16:45   ` Dmitry Torokhov
2015-10-01 20:57 ` [PATCH 06/15] Input: xpad: x360w: report dpad as buttons and axes Pavel Rojtberg
2015-10-10 16:45   ` Dmitry Torokhov
2015-10-01 20:57 ` [PATCH 07/15] Input: xpad: move the input device creation to a new function Pavel Rojtberg
2015-10-10 18:00   ` Dmitry Torokhov
2015-10-15 19:19     ` Pavel Rojtberg
2015-10-17 16:49       ` Dmitry Torokhov
2015-10-17 18:08         ` Pavel Rojtberg
2015-10-01 20:57 ` [PATCH 08/15] Input: xpad: query Wireless controller state at init Pavel Rojtberg
2015-10-01 20:57 ` [PATCH 09/15] Input: xpad: handle "present" and "gone" correctly Pavel Rojtberg
2015-10-10 16:42   ` Dmitry Torokhov
2015-10-01 20:57 ` [PATCH 10/15] Input: xpad: use ida() for finding the pad_nr Pavel Rojtberg
2015-10-01 22:53   ` Pavel Rojtberg
2015-10-10 17:06     ` Dmitry Torokhov
2015-10-01 20:57 ` [PATCH 11/15] Input: xpad: do not submit active URBs Pavel Rojtberg
2015-10-01 20:57 ` [PATCH 12/15] Input: xpad: replace mutex by spinlock Pavel Rojtberg
2015-10-10 18:10   ` Dmitry Torokhov
2015-10-01 20:57 ` [PATCH 13/15] Input: xpad: re-submit pending ff and led requests Pavel Rojtberg
2015-10-01 20:57 ` [PATCH 14/15] Input: xpad: workaround dead irq_out after suspend/ resume Pavel Rojtberg
2015-10-01 20:57 ` [PATCH 15/15] Input: xpad: update Xbox One Force Feedback Support Pavel Rojtberg

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1443733046-29610-1-git-send-email-rojtberg@gmail.com \
    --to=rojtberg@gmail.com \
    --cc=dmitry.torokhov@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-input@vger.kernel.org \
    --cc=pgriffais@valvesoftware.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).