Skip to content

Commit

Permalink
Input: iforce - use DMA-safe buffores for USB transfers
Browse files Browse the repository at this point in the history
USB transport has to use cache line-aligned buffers for transfers to avoid
DMA issues; serio doe snot have such restrictions. Let's move "data_in"
buffer from main driver structure into transport modules and make sure USB
requirements are respected.

Tested-by: Tim Schumacher <[email protected]>
Signed-off-by: Dmitry Torokhov <[email protected]>
  • Loading branch information
dtor committed Jun 23, 2019
1 parent 6ac0aec commit dfad2b1
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 15 deletions.
10 changes: 6 additions & 4 deletions drivers/input/joystick/iforce/iforce-serio.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ struct iforce_serio {
u8 expect_packet;
u8 cmd_response[IFORCE_MAX_LENGTH];
u8 cmd_response_len;
u8 data_in[IFORCE_MAX_LENGTH];
};

static void iforce_serio_xmit(struct iforce *iforce)
Expand Down Expand Up @@ -169,7 +170,7 @@ static irqreturn_t iforce_serio_irq(struct serio *serio,
}

if (iforce_serio->idx < iforce_serio->len) {
iforce->data[iforce_serio->idx++] = data;
iforce_serio->data_in[iforce_serio->idx++] = data;
iforce_serio->csum += data;
goto out;
}
Expand All @@ -178,15 +179,16 @@ static irqreturn_t iforce_serio_irq(struct serio *serio,
/* Handle command completion */
if (iforce_serio->expect_packet == iforce_serio->id) {
iforce_serio->expect_packet = 0;
memcpy(iforce_serio->cmd_response, iforce->data,
IFORCE_MAX_LENGTH);
memcpy(iforce_serio->cmd_response,
iforce_serio->data_in, IFORCE_MAX_LENGTH);
iforce_serio->cmd_response_len = iforce_serio->len;

/* Signal that command is done */
wake_up(&iforce->wait);
} else if (likely(iforce->type)) {
iforce_process_packet(iforce, iforce_serio->id,
iforce->data, iforce_serio->len);
iforce_serio->data_in,
iforce_serio->len);
}

iforce_serio->pkt = 0;
Expand Down
28 changes: 19 additions & 9 deletions drivers/input/joystick/iforce/iforce-usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ struct iforce_usb {
struct usb_device *usbdev;
struct usb_interface *intf;
struct urb *irq, *out;

u8 data_in[IFORCE_MAX_LENGTH] ____cacheline_aligned;
u8 data_out[IFORCE_MAX_LENGTH] ____cacheline_aligned;
};

static void __iforce_usb_xmit(struct iforce *iforce)
Expand Down Expand Up @@ -171,8 +174,8 @@ static void iforce_usb_irq(struct urb *urb)
goto exit;
}

iforce_process_packet(iforce, iforce->data[0],
iforce->data + 1, urb->actual_length - 1);
iforce_process_packet(iforce, iforce_usb->data_in[0],
iforce_usb->data_in + 1, urb->actual_length - 1);

exit:
status = usb_submit_urb(urb, GFP_ATOMIC);
Expand Down Expand Up @@ -216,13 +219,16 @@ static int iforce_usb_probe(struct usb_interface *intf,
epirq = &interface->endpoint[0].desc;
epout = &interface->endpoint[1].desc;

if (!(iforce_usb = kzalloc(sizeof(*iforce_usb) + 32, GFP_KERNEL)))
iforce_usb = kzalloc(sizeof(*iforce_usb), GFP_KERNEL);
if (!iforce_usb)
goto fail;

if (!(iforce_usb->irq = usb_alloc_urb(0, GFP_KERNEL)))
iforce_usb->irq = usb_alloc_urb(0, GFP_KERNEL);
if (!iforce_usb->irq)
goto fail;

if (!(iforce_usb->out = usb_alloc_urb(0, GFP_KERNEL)))
iforce_usb->out = usb_alloc_urb(0, GFP_KERNEL);
if (!iforce_usb->out)
goto fail;

iforce = &iforce_usb->iforce;
Expand All @@ -233,11 +239,15 @@ static int iforce_usb_probe(struct usb_interface *intf,
iforce_usb->usbdev = dev;
iforce_usb->intf = intf;

usb_fill_int_urb(iforce_usb->irq, dev, usb_rcvintpipe(dev, epirq->bEndpointAddress),
iforce->data, 16, iforce_usb_irq, iforce_usb, epirq->bInterval);
usb_fill_int_urb(iforce_usb->irq, dev,
usb_rcvintpipe(dev, epirq->bEndpointAddress),
iforce_usb->data_in, sizeof(iforce_usb->data_in),
iforce_usb_irq, iforce_usb, epirq->bInterval);

usb_fill_int_urb(iforce_usb->out, dev, usb_sndintpipe(dev, epout->bEndpointAddress),
iforce_usb + 1, 32, iforce_usb_out, iforce_usb, epout->bInterval);
usb_fill_int_urb(iforce_usb->out, dev,
usb_sndintpipe(dev, epout->bEndpointAddress),
iforce_usb->data_out, sizeof(iforce_usb->data_out),
iforce_usb_out, iforce_usb, epout->bInterval);

err = iforce_init_device(&intf->dev, BUS_USB, iforce);
if (err)
Expand Down
2 changes: 0 additions & 2 deletions drivers/input/joystick/iforce/iforce.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,6 @@ struct iforce {
const struct iforce_xport_ops *xport_ops;
int bus;

unsigned char data[IFORCE_MAX_LENGTH];

spinlock_t xmit_lock;
/* Buffer used for asynchronous sending of bytes to the device */
struct circ_buf xmit;
Expand Down

0 comments on commit dfad2b1

Please sign in to comment.