linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Pavel Rojtberg <rojtberg@gmail.com>
Cc: linux-input@vger.kernel.org, pgriffais@valvesoftware.com,
	gregkh@linuxfoundation.org
Subject: Re: [PATCH 05/15] Input: xpad: factor out URB submission in xpad_play_effect
Date: Sat, 10 Oct 2015 09:45:25 -0700	[thread overview]
Message-ID: <20151010164525.GF39573@dtor-ws> (raw)
In-Reply-To: <1443733046-29610-6-git-send-email-rojtberg@gmail.com>

On Thu, Oct 01, 2015 at 10:57:16PM +0200, Pavel Rojtberg wrote:
> From: Pavel Rojtberg <rojtberg@gmail.com>
> 
> Move submisson logic to a single point at the end of the function.
> This makes it easy to add locking/ queuing code later on.
> 
> Signed-off-by: Pavel Rojtberg <rojtberg@gmail.com>

Applied, thank you.

> ---
>  drivers/input/joystick/xpad.c | 140 ++++++++++++++++++++++++++++++++---------------------------------
>  1 file changed, 69 insertions(+), 71 deletions(-)
> 
> diff --git a/drivers/input/joystick/xpad.c b/drivers/input/joystick/xpad.c
> index a379346..1195dbb 100644
> --- a/drivers/input/joystick/xpad.c
> +++ b/drivers/input/joystick/xpad.c
> @@ -759,80 +759,78 @@ static void xpad_deinit_output(struct usb_xpad *xpad)
>  static int xpad_play_effect(struct input_dev *dev, void *data, struct ff_effect *effect)
>  {
>  	struct usb_xpad *xpad = input_get_drvdata(dev);
> +	__u16 strong;
> +	__u16 weak;
>  
> -	if (effect->type == FF_RUMBLE) {
> -		__u16 strong = effect->u.rumble.strong_magnitude;
> -		__u16 weak = effect->u.rumble.weak_magnitude;
> -
> -		switch (xpad->xtype) {
> -
> -		case XTYPE_XBOX:
> -			xpad->odata[0] = 0x00;
> -			xpad->odata[1] = 0x06;
> -			xpad->odata[2] = 0x00;
> -			xpad->odata[3] = strong / 256;	/* left actuator */
> -			xpad->odata[4] = 0x00;
> -			xpad->odata[5] = weak / 256;	/* right actuator */
> -			xpad->irq_out->transfer_buffer_length = 6;
> -
> -			return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
> -
> -		case XTYPE_XBOX360:
> -			xpad->odata[0] = 0x00;
> -			xpad->odata[1] = 0x08;
> -			xpad->odata[2] = 0x00;
> -			xpad->odata[3] = strong / 256;  /* left actuator? */
> -			xpad->odata[4] = weak / 256;	/* right actuator? */
> -			xpad->odata[5] = 0x00;
> -			xpad->odata[6] = 0x00;
> -			xpad->odata[7] = 0x00;
> -			xpad->irq_out->transfer_buffer_length = 8;
> -
> -			return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
> -
> -		case XTYPE_XBOX360W:
> -			xpad->odata[0] = 0x00;
> -			xpad->odata[1] = 0x01;
> -			xpad->odata[2] = 0x0F;
> -			xpad->odata[3] = 0xC0;
> -			xpad->odata[4] = 0x00;
> -			xpad->odata[5] = strong / 256;
> -			xpad->odata[6] = weak / 256;
> -			xpad->odata[7] = 0x00;
> -			xpad->odata[8] = 0x00;
> -			xpad->odata[9] = 0x00;
> -			xpad->odata[10] = 0x00;
> -			xpad->odata[11] = 0x00;
> -			xpad->irq_out->transfer_buffer_length = 12;
> -
> -			return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
> -
> -		case XTYPE_XBOXONE:
> -			xpad->odata[0] = 0x09; /* activate rumble */
> -			xpad->odata[1] = 0x08;
> -			xpad->odata[2] = 0x00;
> -			xpad->odata[3] = 0x08; /* continuous effect */
> -			xpad->odata[4] = 0x00; /* simple rumble mode */
> -			xpad->odata[5] = 0x03; /* L and R actuator only */
> -			xpad->odata[6] = 0x00; /* TODO: LT actuator */
> -			xpad->odata[7] = 0x00; /* TODO: RT actuator */
> -			xpad->odata[8] = strong / 256;	/* left actuator */
> -			xpad->odata[9] = weak / 256;	/* right actuator */
> -			xpad->odata[10] = 0x80;	/* length of pulse */
> -			xpad->odata[11] = 0x00;	/* stop period of pulse */
> -			xpad->irq_out->transfer_buffer_length = 12;
> -
> -			return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
> -
> -		default:
> -			dev_dbg(&xpad->dev->dev,
> -				"%s - rumble command sent to unsupported xpad type: %d\n",
> -				__func__, xpad->xtype);
> -			return -1;
> -		}
> +	if (effect->type != FF_RUMBLE)
> +		return 0;
> +
> +	strong = effect->u.rumble.strong_magnitude;
> +	weak = effect->u.rumble.weak_magnitude;
> +
> +	switch (xpad->xtype) {
> +	case XTYPE_XBOX:
> +		xpad->odata[0] = 0x00;
> +		xpad->odata[1] = 0x06;
> +		xpad->odata[2] = 0x00;
> +		xpad->odata[3] = strong / 256;	/* left actuator */
> +		xpad->odata[4] = 0x00;
> +		xpad->odata[5] = weak / 256;	/* right actuator */
> +		xpad->irq_out->transfer_buffer_length = 6;
> +		break;
> +
> +	case XTYPE_XBOX360:
> +		xpad->odata[0] = 0x00;
> +		xpad->odata[1] = 0x08;
> +		xpad->odata[2] = 0x00;
> +		xpad->odata[3] = strong / 256;  /* left actuator? */
> +		xpad->odata[4] = weak / 256;	/* right actuator? */
> +		xpad->odata[5] = 0x00;
> +		xpad->odata[6] = 0x00;
> +		xpad->odata[7] = 0x00;
> +		xpad->irq_out->transfer_buffer_length = 8;
> +		break;
> +
> +	case XTYPE_XBOX360W:
> +		xpad->odata[0] = 0x00;
> +		xpad->odata[1] = 0x01;
> +		xpad->odata[2] = 0x0F;
> +		xpad->odata[3] = 0xC0;
> +		xpad->odata[4] = 0x00;
> +		xpad->odata[5] = strong / 256;
> +		xpad->odata[6] = weak / 256;
> +		xpad->odata[7] = 0x00;
> +		xpad->odata[8] = 0x00;
> +		xpad->odata[9] = 0x00;
> +		xpad->odata[10] = 0x00;
> +		xpad->odata[11] = 0x00;
> +		xpad->irq_out->transfer_buffer_length = 12;
> +		break;
> +
> +	case XTYPE_XBOXONE:
> +		xpad->odata[0] = 0x09; /* activate rumble */
> +		xpad->odata[1] = 0x08;
> +		xpad->odata[2] = 0x00;
> +		xpad->odata[3] = 0x08; /* continuous effect */
> +		xpad->odata[4] = 0x00; /* simple rumble mode */
> +		xpad->odata[5] = 0x03; /* L and R actuator only */
> +		xpad->odata[6] = 0x00; /* TODO: LT actuator */
> +		xpad->odata[7] = 0x00; /* TODO: RT actuator */
> +		xpad->odata[8] = strong / 256;	/* left actuator */
> +		xpad->odata[9] = weak / 256;	/* right actuator */
> +		xpad->odata[10] = 0x80;	/* length of pulse */
> +		xpad->odata[11] = 0x00;	/* stop period of pulse */
> +		xpad->irq_out->transfer_buffer_length = 12;
> +		break;
> +
> +	default:
> +		dev_dbg(&xpad->dev->dev,
> +			"%s - rumble command sent to unsupported xpad type: %d\n",
> +			__func__, xpad->xtype);
> +		return -EINVAL;
>  	}
>  
> -	return 0;
> +	return usb_submit_urb(xpad->irq_out, GFP_ATOMIC);
>  }
>  
>  static int xpad_init_ff(struct usb_xpad *xpad)
> -- 
> 1.9.1
> 

-- 
Dmitry

  reply	other threads:[~2015-10-10 16:45 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-01 20:57 [PATCH 00/15] Input: xpad: updates Pavel Rojtberg
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 [this message]
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=20151010164525.GF39573@dtor-ws \
    --to=dmitry.torokhov@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-input@vger.kernel.org \
    --cc=pgriffais@valvesoftware.com \
    --cc=rojtberg@gmail.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).