Skip to content

Commit

Permalink
[media] au0828: Add option to preallocate digital transfer buffers
Browse files Browse the repository at this point in the history
Added command line parameter preallocate_big_buffers so that the digital
transfer buffers can be allocated when the driver is registered. They
do not have to be allocated every time a feed is started.

Signed-off-by: Tim Mester <tmester@ieee.org>
Acked-by: Devin Heitmueller <dheitmueller@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
  • Loading branch information
Tim Mester authored and Mauro Carvalho Chehab committed Jan 13, 2014
1 parent 4609981 commit f251b3e
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 7 deletions.
13 changes: 8 additions & 5 deletions drivers/media/usb/au0828/au0828-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,8 @@ static int au0828_usb_probe(struct usb_interface *interface,
const struct usb_device_id *id)
{
int ifnum;
#ifdef CONFIG_VIDEO_AU0828_V4L2
int retval;
#endif
int retval = 0;

struct au0828_dev *dev;
struct usb_device *usbdev = interface_to_usbdev(interface);

Expand Down Expand Up @@ -257,7 +256,11 @@ static int au0828_usb_probe(struct usb_interface *interface,
#endif

/* Digital TV */
au0828_dvb_register(dev);
retval = au0828_dvb_register(dev);
if (retval)
pr_err("%s() au0282_dev_register failed\n",
__func__);


/* Store the pointer to the au0828_dev so it can be accessed in
au0828_usb_disconnect */
Expand All @@ -268,7 +271,7 @@ static int au0828_usb_probe(struct usb_interface *interface,

mutex_unlock(&dev->lock);

return 0;
return retval;
}

static struct usb_driver au0828_usb_driver = {
Expand Down
47 changes: 45 additions & 2 deletions drivers/media/usb/au0828/au0828-dvb.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@
#include "mxl5007t.h"
#include "tda18271.h"

int preallocate_big_buffers;
module_param_named(preallocate_big_buffers, preallocate_big_buffers, int, 0644);
MODULE_PARM_DESC(preallocate_big_buffers, "Preallocate the larger transfer buffers at module load time");

DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);

#define _AU0828_BULKPIPE 0x83
Expand Down Expand Up @@ -155,7 +159,9 @@ static int stop_urb_transfer(struct au0828_dev *dev)
for (i = 0; i < URB_COUNT; i++) {
if (dev->urbs[i]) {
usb_kill_urb(dev->urbs[i]);
kfree(dev->urbs[i]->transfer_buffer);
if (!preallocate_big_buffers)
kfree(dev->urbs[i]->transfer_buffer);

usb_free_urb(dev->urbs[i]);
}
}
Expand Down Expand Up @@ -183,7 +189,12 @@ static int start_urb_transfer(struct au0828_dev *dev)

purb = dev->urbs[i];

purb->transfer_buffer = kzalloc(URB_BUFSIZE, GFP_KERNEL);
if (preallocate_big_buffers)
purb->transfer_buffer = dev->dig_transfer_buffer[i];
else
purb->transfer_buffer = kzalloc(URB_BUFSIZE,
GFP_KERNEL);

if (!purb->transfer_buffer) {
usb_free_urb(purb);
dev->urbs[i] = NULL;
Expand Down Expand Up @@ -334,6 +345,23 @@ static int dvb_register(struct au0828_dev *dev)

dprintk(1, "%s()\n", __func__);

if (preallocate_big_buffers) {
int i;
for (i = 0; i < URB_COUNT; i++) {
dev->dig_transfer_buffer[i] = kzalloc(URB_BUFSIZE,
GFP_KERNEL);

if (!dev->dig_transfer_buffer[i]) {
result = -ENOMEM;

printk(KERN_ERR
"%s: failed buffer allocation (errno = %d)\n",
DRIVER_NAME, result);
goto fail_adapter;
}
}
}

INIT_WORK(&dev->restart_streaming, au0828_restart_dvb_streaming);

/* register adapter */
Expand Down Expand Up @@ -424,6 +452,13 @@ static int dvb_register(struct au0828_dev *dev)
dvb_frontend_detach(dvb->frontend);
dvb_unregister_adapter(&dvb->adapter);
fail_adapter:

if (preallocate_big_buffers) {
int i;
for (i = 0; i < URB_COUNT; i++)
kfree(dev->dig_transfer_buffer[i]);
}

return result;
}

Expand All @@ -444,6 +479,14 @@ void au0828_dvb_unregister(struct au0828_dev *dev)
dvb_unregister_frontend(dvb->frontend);
dvb_frontend_detach(dvb->frontend);
dvb_unregister_adapter(&dvb->adapter);

if (preallocate_big_buffers) {
int i;
for (i = 0; i < URB_COUNT; i++)
kfree(dev->dig_transfer_buffer[i]);
}


}

/* All the DVB attach calls go here, this function get's modified
Expand Down
4 changes: 4 additions & 0 deletions drivers/media/usb/au0828/au0828.h
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,10 @@ struct au0828_dev {
/* USB / URB Related */
int urb_streaming;
struct urb *urbs[URB_COUNT];

/* Preallocated transfer digital transfer buffers */

char *dig_transfer_buffer[URB_COUNT];
};

/* ----------------------------------------------------------- */
Expand Down

0 comments on commit f251b3e

Please sign in to comment.