2008-04-19 08:34:00 +08:00
|
|
|
/*
|
|
|
|
* Driver for the Auvitek USB bridge
|
|
|
|
*
|
2008-09-04 04:12:12 +08:00
|
|
|
* Copyright (c) 2008 Steven Toth <stoth@linuxtv.org>
|
2008-04-19 08:34:00 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
*
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
2014-08-10 08:47:17 +08:00
|
|
|
#include "au0828.h"
|
|
|
|
|
2008-04-19 08:34:00 +08:00
|
|
|
#include <linux/module.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 16:04:11 +08:00
|
|
|
#include <linux/slab.h>
|
2008-04-19 08:34:00 +08:00
|
|
|
#include <linux/videodev2.h>
|
|
|
|
#include <media/v4l2-common.h>
|
|
|
|
#include <linux/mutex.h>
|
|
|
|
|
2015-09-01 00:23:03 +08:00
|
|
|
/* Due to enum tuner_pad_index */
|
|
|
|
#include <media/tuner.h>
|
|
|
|
|
2008-04-19 08:39:11 +08:00
|
|
|
/*
|
|
|
|
* 1 = General debug messages
|
|
|
|
* 2 = USB handling
|
|
|
|
* 4 = I2C related
|
|
|
|
* 8 = Bridge related
|
2014-07-25 09:49:02 +08:00
|
|
|
* 16 = IR related
|
2008-04-19 08:39:11 +08:00
|
|
|
*/
|
2008-04-26 06:06:03 +08:00
|
|
|
int au0828_debug;
|
|
|
|
module_param_named(debug, au0828_debug, int, 0644);
|
2014-07-25 09:49:02 +08:00
|
|
|
MODULE_PARM_DESC(debug,
|
|
|
|
"set debug bitmask: 1=general, 2=USB, 4=I2C, 8=bridge, 16=IR");
|
2008-04-19 08:34:00 +08:00
|
|
|
|
2009-05-28 10:46:17 +08:00
|
|
|
static unsigned int disable_usb_speed_check;
|
|
|
|
module_param(disable_usb_speed_check, int, 0444);
|
|
|
|
MODULE_PARM_DESC(disable_usb_speed_check,
|
|
|
|
"override min bandwidth requirement of 480M bps");
|
|
|
|
|
2008-04-19 08:34:00 +08:00
|
|
|
#define _AU0828_BULKPIPE 0x03
|
|
|
|
#define _BULKPIPESIZE 0xffff
|
|
|
|
|
|
|
|
static int send_control_msg(struct au0828_dev *dev, u16 request, u32 value,
|
2012-08-07 09:47:05 +08:00
|
|
|
u16 index);
|
2008-04-19 08:34:00 +08:00
|
|
|
static int recv_control_msg(struct au0828_dev *dev, u16 request, u32 value,
|
|
|
|
u16 index, unsigned char *cp, u16 size);
|
|
|
|
|
|
|
|
/* USB Direction */
|
|
|
|
#define CMD_REQUEST_IN 0x00
|
|
|
|
#define CMD_REQUEST_OUT 0x01
|
|
|
|
|
|
|
|
u32 au0828_readreg(struct au0828_dev *dev, u16 reg)
|
|
|
|
{
|
2012-08-07 09:47:07 +08:00
|
|
|
u8 result = 0;
|
|
|
|
|
|
|
|
recv_control_msg(dev, CMD_REQUEST_IN, 0, reg, &result, 1);
|
|
|
|
dprintk(8, "%s(0x%04x) = 0x%02x\n", __func__, reg, result);
|
|
|
|
|
|
|
|
return result;
|
2008-04-19 08:34:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
u32 au0828_writereg(struct au0828_dev *dev, u16 reg, u32 val)
|
|
|
|
{
|
2009-03-11 14:00:57 +08:00
|
|
|
dprintk(8, "%s(0x%04x, 0x%02x)\n", __func__, reg, val);
|
2012-08-07 09:47:05 +08:00
|
|
|
return send_control_msg(dev, CMD_REQUEST_OUT, val, reg);
|
2008-04-19 08:34:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int send_control_msg(struct au0828_dev *dev, u16 request, u32 value,
|
2012-08-07 09:47:05 +08:00
|
|
|
u16 index)
|
2008-04-19 08:34:00 +08:00
|
|
|
{
|
|
|
|
int status = -ENODEV;
|
2012-08-07 09:47:05 +08:00
|
|
|
|
2008-04-19 08:34:00 +08:00
|
|
|
if (dev->usbdev) {
|
|
|
|
|
|
|
|
/* cp must be memory that has been allocated by kmalloc */
|
|
|
|
status = usb_control_msg(dev->usbdev,
|
|
|
|
usb_sndctrlpipe(dev->usbdev, 0),
|
|
|
|
request,
|
2008-10-17 07:19:41 +08:00
|
|
|
USB_DIR_OUT | USB_TYPE_VENDOR |
|
|
|
|
USB_RECIP_DEVICE,
|
2012-08-07 09:47:05 +08:00
|
|
|
value, index, NULL, 0, 1000);
|
2008-04-19 08:34:00 +08:00
|
|
|
|
|
|
|
status = min(status, 0);
|
|
|
|
|
|
|
|
if (status < 0) {
|
2014-08-10 08:47:17 +08:00
|
|
|
pr_err("%s() Failed sending control message, error %d.\n",
|
2008-04-19 08:42:30 +08:00
|
|
|
__func__, status);
|
2008-04-19 08:34:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2012-08-07 09:47:05 +08:00
|
|
|
|
2008-04-19 08:34:00 +08:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int recv_control_msg(struct au0828_dev *dev, u16 request, u32 value,
|
|
|
|
u16 index, unsigned char *cp, u16 size)
|
|
|
|
{
|
|
|
|
int status = -ENODEV;
|
|
|
|
mutex_lock(&dev->mutex);
|
|
|
|
if (dev->usbdev) {
|
|
|
|
status = usb_control_msg(dev->usbdev,
|
|
|
|
usb_rcvctrlpipe(dev->usbdev, 0),
|
|
|
|
request,
|
|
|
|
USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
|
|
|
|
value, index,
|
2012-08-07 09:47:07 +08:00
|
|
|
dev->ctrlmsg, size, 1000);
|
2008-04-19 08:34:00 +08:00
|
|
|
|
|
|
|
status = min(status, 0);
|
|
|
|
|
|
|
|
if (status < 0) {
|
2014-08-10 08:47:17 +08:00
|
|
|
pr_err("%s() Failed receiving control message, error %d.\n",
|
2008-04-19 08:42:30 +08:00
|
|
|
__func__, status);
|
2012-08-07 09:47:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* the host controller requires heap allocated memory, which
|
|
|
|
is why we didn't just pass "cp" into usb_control_msg */
|
|
|
|
memcpy(cp, dev->ctrlmsg, size);
|
2008-04-19 08:34:00 +08:00
|
|
|
}
|
|
|
|
mutex_unlock(&dev->mutex);
|
|
|
|
return status;
|
|
|
|
}
|
2008-04-18 08:41:28 +08:00
|
|
|
|
2015-06-09 09:20:46 +08:00
|
|
|
static void au0828_unregister_media_device(struct au0828_dev *dev)
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef CONFIG_MEDIA_CONTROLLER
|
|
|
|
if (dev->media_dev) {
|
|
|
|
media_device_unregister(dev->media_dev);
|
2015-12-12 06:57:08 +08:00
|
|
|
media_device_cleanup(dev->media_dev);
|
2015-06-09 09:20:46 +08:00
|
|
|
kfree(dev->media_dev);
|
|
|
|
dev->media_dev = NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-03-11 21:16:45 +08:00
|
|
|
static void au0828_usb_release(struct au0828_dev *dev)
|
2008-04-19 08:34:00 +08:00
|
|
|
{
|
2015-06-09 09:20:46 +08:00
|
|
|
au0828_unregister_media_device(dev);
|
|
|
|
|
2008-04-19 08:34:00 +08:00
|
|
|
/* I2C */
|
|
|
|
au0828_i2c_unregister(dev);
|
|
|
|
|
2013-03-11 21:16:45 +08:00
|
|
|
kfree(dev);
|
|
|
|
}
|
|
|
|
|
2012-12-04 22:30:00 +08:00
|
|
|
#ifdef CONFIG_VIDEO_AU0828_V4L2
|
2015-08-31 22:43:09 +08:00
|
|
|
|
|
|
|
static void au0828_usb_v4l2_media_release(struct au0828_dev *dev)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_MEDIA_CONTROLLER
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < AU0828_MAX_INPUT; i++) {
|
|
|
|
if (AUVI_INPUT(i).type == AU0828_VMUX_UNDEFINED)
|
|
|
|
return;
|
|
|
|
media_device_unregister_entity(&dev->input_ent[i]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-03-11 21:16:45 +08:00
|
|
|
static void au0828_usb_v4l2_release(struct v4l2_device *v4l2_dev)
|
|
|
|
{
|
|
|
|
struct au0828_dev *dev =
|
|
|
|
container_of(v4l2_dev, struct au0828_dev, v4l2_dev);
|
|
|
|
|
2013-02-15 19:55:41 +08:00
|
|
|
v4l2_ctrl_handler_free(&dev->v4l2_ctrl_hdl);
|
2009-03-11 14:01:04 +08:00
|
|
|
v4l2_device_unregister(&dev->v4l2_dev);
|
2015-09-05 03:08:02 +08:00
|
|
|
au0828_usb_v4l2_media_release(dev);
|
2013-03-11 21:16:45 +08:00
|
|
|
au0828_usb_release(dev);
|
|
|
|
}
|
2012-12-04 22:30:00 +08:00
|
|
|
#endif
|
2009-03-11 14:01:04 +08:00
|
|
|
|
2013-03-11 21:16:45 +08:00
|
|
|
static void au0828_usb_disconnect(struct usb_interface *interface)
|
|
|
|
{
|
|
|
|
struct au0828_dev *dev = usb_get_intfdata(interface);
|
|
|
|
|
|
|
|
dprintk(1, "%s()\n", __func__);
|
|
|
|
|
2014-11-22 08:17:08 +08:00
|
|
|
/* there is a small window after disconnect, before
|
|
|
|
dev->usbdev is NULL, for poll (e.g: IR) try to access
|
|
|
|
the device and fill the dmesg with error messages.
|
|
|
|
Set the status so poll routines can check and avoid
|
|
|
|
access after disconnect.
|
|
|
|
*/
|
|
|
|
dev->dev_state = DEV_DISCONNECTED;
|
|
|
|
|
2014-07-25 09:49:02 +08:00
|
|
|
au0828_rc_unregister(dev);
|
2013-03-11 21:16:45 +08:00
|
|
|
/* Digital TV */
|
|
|
|
au0828_dvb_unregister(dev);
|
2008-04-19 08:34:00 +08:00
|
|
|
|
2013-03-11 21:16:45 +08:00
|
|
|
usb_set_intfdata(interface, NULL);
|
2008-04-19 08:34:00 +08:00
|
|
|
mutex_lock(&dev->mutex);
|
|
|
|
dev->usbdev = NULL;
|
|
|
|
mutex_unlock(&dev->mutex);
|
2013-03-11 21:16:45 +08:00
|
|
|
#ifdef CONFIG_VIDEO_AU0828_V4L2
|
|
|
|
if (AUVI_INPUT(0).type != AU0828_VMUX_UNDEFINED) {
|
|
|
|
au0828_analog_unregister(dev);
|
|
|
|
v4l2_device_disconnect(&dev->v4l2_dev);
|
|
|
|
v4l2_device_put(&dev->v4l2_dev);
|
2015-12-10 20:58:04 +08:00
|
|
|
/*
|
|
|
|
* No need to call au0828_usb_release() if V4L2 is enabled,
|
|
|
|
* as this is already called via au0828_usb_v4l2_release()
|
|
|
|
*/
|
2013-03-11 21:16:45 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
au0828_usb_release(dev);
|
2008-04-19 08:34:00 +08:00
|
|
|
}
|
|
|
|
|
2015-12-28 19:55:49 +08:00
|
|
|
static int au0828_media_device_init(struct au0828_dev *dev,
|
|
|
|
struct usb_device *udev)
|
2015-06-09 09:20:46 +08:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_MEDIA_CONTROLLER
|
|
|
|
struct media_device *mdev;
|
|
|
|
|
|
|
|
mdev = kzalloc(sizeof(*mdev), GFP_KERNEL);
|
|
|
|
if (!mdev)
|
2015-12-28 19:55:49 +08:00
|
|
|
return -ENOMEM;
|
2015-06-09 09:20:46 +08:00
|
|
|
|
|
|
|
mdev->dev = &udev->dev;
|
|
|
|
|
|
|
|
if (!dev->board.name)
|
|
|
|
strlcpy(mdev->model, "unknown au0828", sizeof(mdev->model));
|
|
|
|
else
|
|
|
|
strlcpy(mdev->model, dev->board.name, sizeof(mdev->model));
|
|
|
|
if (udev->serial)
|
|
|
|
strlcpy(mdev->serial, udev->serial, sizeof(mdev->serial));
|
|
|
|
strcpy(mdev->bus_info, udev->devpath);
|
|
|
|
mdev->hw_revision = le16_to_cpu(udev->descriptor.bcdDevice);
|
|
|
|
mdev->driver_version = LINUX_VERSION_CODE;
|
|
|
|
|
2015-12-12 06:57:08 +08:00
|
|
|
media_device_init(mdev);
|
2015-06-09 09:20:46 +08:00
|
|
|
|
|
|
|
dev->media_dev = mdev;
|
|
|
|
#endif
|
2015-12-28 19:55:49 +08:00
|
|
|
return 0;
|
2015-06-09 09:20:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-05 03:08:02 +08:00
|
|
|
static int au0828_create_media_graph(struct au0828_dev *dev)
|
2015-06-09 09:20:46 +08:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_MEDIA_CONTROLLER
|
|
|
|
struct media_device *mdev = dev->media_dev;
|
|
|
|
struct media_entity *entity;
|
|
|
|
struct media_entity *tuner = NULL, *decoder = NULL;
|
2015-09-05 03:08:02 +08:00
|
|
|
int i, ret;
|
2015-06-09 09:20:46 +08:00
|
|
|
|
|
|
|
if (!mdev)
|
2015-09-05 03:08:02 +08:00
|
|
|
return 0;
|
2015-06-09 09:20:46 +08:00
|
|
|
|
|
|
|
media_device_for_each_entity(entity, mdev) {
|
2015-09-06 20:33:39 +08:00
|
|
|
switch (entity->function) {
|
2015-12-11 03:25:41 +08:00
|
|
|
case MEDIA_ENT_F_TUNER:
|
2015-06-09 09:20:46 +08:00
|
|
|
tuner = entity;
|
|
|
|
break;
|
2015-12-11 03:25:41 +08:00
|
|
|
case MEDIA_ENT_F_ATV_DECODER:
|
2015-06-09 09:20:46 +08:00
|
|
|
decoder = entity;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Analog setup, using tuner as a link */
|
|
|
|
|
2015-09-01 00:23:28 +08:00
|
|
|
/* Something bad happened! */
|
2015-06-09 09:20:46 +08:00
|
|
|
if (!decoder)
|
2015-09-05 03:08:02 +08:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (tuner) {
|
|
|
|
ret = media_create_pad_link(tuner, TUNER_PAD_IF_OUTPUT,
|
|
|
|
decoder, 0,
|
|
|
|
MEDIA_LNK_FL_ENABLED);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
ret = media_create_pad_link(decoder, 1, &dev->vdev.entity, 0,
|
|
|
|
MEDIA_LNK_FL_ENABLED);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
ret = media_create_pad_link(decoder, 2, &dev->vbi_dev.entity, 0,
|
|
|
|
MEDIA_LNK_FL_ENABLED);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2015-09-01 00:23:28 +08:00
|
|
|
|
|
|
|
for (i = 0; i < AU0828_MAX_INPUT; i++) {
|
|
|
|
struct media_entity *ent = &dev->input_ent[i];
|
|
|
|
|
|
|
|
if (AUVI_INPUT(i).type == AU0828_VMUX_UNDEFINED)
|
|
|
|
break;
|
|
|
|
|
|
|
|
switch (AUVI_INPUT(i).type) {
|
|
|
|
case AU0828_VMUX_CABLE:
|
|
|
|
case AU0828_VMUX_TELEVISION:
|
|
|
|
case AU0828_VMUX_DVB:
|
2015-09-05 03:08:02 +08:00
|
|
|
if (!tuner)
|
|
|
|
break;
|
|
|
|
|
|
|
|
ret = media_create_pad_link(ent, 0, tuner,
|
|
|
|
TUNER_PAD_RF_INPUT,
|
|
|
|
MEDIA_LNK_FL_ENABLED);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2015-09-01 00:23:28 +08:00
|
|
|
break;
|
|
|
|
case AU0828_VMUX_COMPOSITE:
|
|
|
|
case AU0828_VMUX_SVIDEO:
|
|
|
|
default: /* AU0828_VMUX_DEBUG */
|
|
|
|
/* FIXME: fix the decoder PAD */
|
2015-09-05 03:08:02 +08:00
|
|
|
ret = media_create_pad_link(ent, 0, decoder, 0, 0);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2015-09-01 00:23:28 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-06-09 09:20:46 +08:00
|
|
|
#endif
|
2015-09-05 03:08:02 +08:00
|
|
|
return 0;
|
2015-06-09 09:20:46 +08:00
|
|
|
}
|
|
|
|
|
2008-04-19 09:12:52 +08:00
|
|
|
static int au0828_usb_probe(struct usb_interface *interface,
|
2008-04-19 08:34:00 +08:00
|
|
|
const struct usb_device_id *id)
|
|
|
|
{
|
2012-12-04 22:30:00 +08:00
|
|
|
int ifnum;
|
2014-01-07 12:29:25 +08:00
|
|
|
int retval = 0;
|
|
|
|
|
2008-04-19 08:34:00 +08:00
|
|
|
struct au0828_dev *dev;
|
|
|
|
struct usb_device *usbdev = interface_to_usbdev(interface);
|
|
|
|
|
|
|
|
ifnum = interface->altsetting->desc.bInterfaceNumber;
|
|
|
|
|
|
|
|
if (ifnum != 0)
|
|
|
|
return -ENODEV;
|
|
|
|
|
2008-04-18 08:41:28 +08:00
|
|
|
dprintk(1, "%s() vendor id 0x%x device id 0x%x ifnum:%d\n", __func__,
|
2008-04-19 08:34:00 +08:00
|
|
|
le16_to_cpu(usbdev->descriptor.idVendor),
|
|
|
|
le16_to_cpu(usbdev->descriptor.idProduct),
|
|
|
|
ifnum);
|
|
|
|
|
2009-05-28 10:25:36 +08:00
|
|
|
/*
|
|
|
|
* Make sure we have 480 Mbps of bandwidth, otherwise things like
|
|
|
|
* video stream wouldn't likely work, since 12 Mbps is generally
|
|
|
|
* not enough even for most Digital TV streams.
|
|
|
|
*/
|
2009-05-28 10:46:17 +08:00
|
|
|
if (usbdev->speed != USB_SPEED_HIGH && disable_usb_speed_check == 0) {
|
2014-08-10 08:47:17 +08:00
|
|
|
pr_err("au0828: Device initialization failed.\n");
|
|
|
|
pr_err("au0828: Device must be connected to a high-speed USB 2.0 port.\n");
|
2009-05-28 10:25:36 +08:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2008-04-19 08:34:00 +08:00
|
|
|
dev = kzalloc(sizeof(*dev), GFP_KERNEL);
|
|
|
|
if (dev == NULL) {
|
2014-08-10 08:47:17 +08:00
|
|
|
pr_err("%s() Unable to allocate memory\n", __func__);
|
2008-04-19 08:34:00 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2012-08-07 09:46:58 +08:00
|
|
|
mutex_init(&dev->lock);
|
|
|
|
mutex_lock(&dev->lock);
|
2008-04-19 08:34:00 +08:00
|
|
|
mutex_init(&dev->mutex);
|
|
|
|
mutex_init(&dev->dvb.lock);
|
|
|
|
dev->usbdev = usbdev;
|
2009-03-11 14:00:47 +08:00
|
|
|
dev->boardnr = id->driver_info;
|
2015-06-09 09:20:45 +08:00
|
|
|
dev->board = au0828_boards[dev->boardnr];
|
|
|
|
|
2015-12-12 06:57:08 +08:00
|
|
|
/* Initialize the media controller */
|
2015-12-28 19:55:49 +08:00
|
|
|
retval = au0828_media_device_init(dev, usbdev);
|
|
|
|
if (retval) {
|
|
|
|
pr_err("%s() au0828_media_device_init failed\n",
|
|
|
|
__func__);
|
|
|
|
mutex_unlock(&dev->lock);
|
|
|
|
kfree(dev);
|
|
|
|
return retval;
|
|
|
|
}
|
2008-04-19 08:34:00 +08:00
|
|
|
|
2012-12-04 22:30:00 +08:00
|
|
|
#ifdef CONFIG_VIDEO_AU0828_V4L2
|
2013-03-11 21:16:45 +08:00
|
|
|
dev->v4l2_dev.release = au0828_usb_v4l2_release;
|
|
|
|
|
2009-03-11 14:01:04 +08:00
|
|
|
/* Create the v4l2_device */
|
2015-06-09 09:20:46 +08:00
|
|
|
#ifdef CONFIG_MEDIA_CONTROLLER
|
|
|
|
dev->v4l2_dev.mdev = dev->media_dev;
|
|
|
|
#endif
|
2009-04-01 19:47:35 +08:00
|
|
|
retval = v4l2_device_register(&interface->dev, &dev->v4l2_dev);
|
2009-03-11 14:01:04 +08:00
|
|
|
if (retval) {
|
2013-02-15 19:55:41 +08:00
|
|
|
pr_err("%s() v4l2_device_register failed\n",
|
2009-03-11 14:01:04 +08:00
|
|
|
__func__);
|
2012-08-07 09:46:58 +08:00
|
|
|
mutex_unlock(&dev->lock);
|
2009-03-11 14:01:04 +08:00
|
|
|
kfree(dev);
|
2013-02-15 19:55:41 +08:00
|
|
|
return retval;
|
2009-03-11 14:01:04 +08:00
|
|
|
}
|
2013-02-15 19:55:41 +08:00
|
|
|
/* This control handler will inherit the controls from au8522 */
|
|
|
|
retval = v4l2_ctrl_handler_init(&dev->v4l2_ctrl_hdl, 4);
|
|
|
|
if (retval) {
|
|
|
|
pr_err("%s() v4l2_ctrl_handler_init failed\n",
|
|
|
|
__func__);
|
|
|
|
mutex_unlock(&dev->lock);
|
|
|
|
kfree(dev);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
dev->v4l2_dev.ctrl_handler = &dev->v4l2_ctrl_hdl;
|
2012-12-04 22:30:00 +08:00
|
|
|
#endif
|
2009-03-11 14:01:04 +08:00
|
|
|
|
2008-04-19 08:34:00 +08:00
|
|
|
/* Power Up the bridge */
|
|
|
|
au0828_write(dev, REG_600, 1 << 4);
|
|
|
|
|
|
|
|
/* Bring up the GPIO's and supporting devices */
|
|
|
|
au0828_gpio_setup(dev);
|
|
|
|
|
|
|
|
/* I2C */
|
|
|
|
au0828_i2c_register(dev);
|
|
|
|
|
2008-03-30 06:53:07 +08:00
|
|
|
/* Setup */
|
|
|
|
au0828_card_setup(dev);
|
|
|
|
|
2012-12-04 22:30:00 +08:00
|
|
|
#ifdef CONFIG_VIDEO_AU0828_V4L2
|
2009-03-11 14:00:40 +08:00
|
|
|
/* Analog TV */
|
2009-03-11 14:01:01 +08:00
|
|
|
if (AUVI_INPUT(0).type != AU0828_VMUX_UNDEFINED)
|
2009-03-11 14:01:00 +08:00
|
|
|
au0828_analog_register(dev, interface);
|
2012-12-04 22:30:00 +08:00
|
|
|
#endif
|
2009-03-11 14:00:40 +08:00
|
|
|
|
2008-04-19 08:34:00 +08:00
|
|
|
/* Digital TV */
|
2014-01-07 12:29:25 +08:00
|
|
|
retval = au0828_dvb_register(dev);
|
|
|
|
if (retval)
|
|
|
|
pr_err("%s() au0282_dev_register failed\n",
|
|
|
|
__func__);
|
|
|
|
|
2014-07-25 09:49:02 +08:00
|
|
|
/* Remote controller */
|
|
|
|
au0828_rc_register(dev);
|
2008-04-19 08:34:00 +08:00
|
|
|
|
2014-07-25 09:49:02 +08:00
|
|
|
/*
|
|
|
|
* Store the pointer to the au0828_dev so it can be accessed in
|
|
|
|
* au0828_usb_disconnect
|
|
|
|
*/
|
2009-04-29 00:14:07 +08:00
|
|
|
usb_set_intfdata(interface, dev);
|
|
|
|
|
2014-08-10 08:47:17 +08:00
|
|
|
pr_info("Registered device AU0828 [%s]\n",
|
2009-03-11 14:00:47 +08:00
|
|
|
dev->board.name == NULL ? "Unset" : dev->board.name);
|
2008-04-19 08:34:00 +08:00
|
|
|
|
2012-08-07 09:46:58 +08:00
|
|
|
mutex_unlock(&dev->lock);
|
|
|
|
|
2015-09-05 03:08:02 +08:00
|
|
|
retval = au0828_create_media_graph(dev);
|
|
|
|
if (retval) {
|
|
|
|
pr_err("%s() au0282_dev_register failed to create graph\n",
|
|
|
|
__func__);
|
2015-12-12 06:57:08 +08:00
|
|
|
goto done;
|
2015-09-05 03:08:02 +08:00
|
|
|
}
|
2015-06-09 09:20:46 +08:00
|
|
|
|
2015-12-12 06:57:08 +08:00
|
|
|
#ifdef CONFIG_MEDIA_CONTROLLER
|
|
|
|
retval = media_device_register(dev->media_dev);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
done:
|
|
|
|
if (retval < 0)
|
|
|
|
au0828_usb_disconnect(interface);
|
|
|
|
|
2014-01-07 12:29:25 +08:00
|
|
|
return retval;
|
2008-04-19 08:34:00 +08:00
|
|
|
}
|
|
|
|
|
2014-08-10 08:47:11 +08:00
|
|
|
static int au0828_suspend(struct usb_interface *interface,
|
|
|
|
pm_message_t message)
|
|
|
|
{
|
|
|
|
struct au0828_dev *dev = usb_get_intfdata(interface);
|
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
return 0;
|
|
|
|
|
2014-08-10 08:47:18 +08:00
|
|
|
pr_info("Suspend\n");
|
|
|
|
|
2014-08-10 08:47:11 +08:00
|
|
|
au0828_rc_suspend(dev);
|
2014-08-10 08:47:15 +08:00
|
|
|
au0828_v4l2_suspend(dev);
|
2014-08-10 08:47:13 +08:00
|
|
|
au0828_dvb_suspend(dev);
|
2014-08-10 08:47:11 +08:00
|
|
|
|
|
|
|
/* FIXME: should suspend also ATV/DTV */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int au0828_resume(struct usb_interface *interface)
|
|
|
|
{
|
|
|
|
struct au0828_dev *dev = usb_get_intfdata(interface);
|
|
|
|
if (!dev)
|
|
|
|
return 0;
|
|
|
|
|
2014-08-10 08:47:18 +08:00
|
|
|
pr_info("Resume\n");
|
|
|
|
|
2014-08-10 08:47:12 +08:00
|
|
|
/* Power Up the bridge */
|
|
|
|
au0828_write(dev, REG_600, 1 << 4);
|
|
|
|
|
|
|
|
/* Bring up the GPIO's and supporting devices */
|
|
|
|
au0828_gpio_setup(dev);
|
|
|
|
|
2014-08-10 08:47:11 +08:00
|
|
|
au0828_rc_resume(dev);
|
2014-08-10 08:47:15 +08:00
|
|
|
au0828_v4l2_resume(dev);
|
2014-08-10 08:47:13 +08:00
|
|
|
au0828_dvb_resume(dev);
|
2014-08-10 08:47:11 +08:00
|
|
|
|
|
|
|
/* FIXME: should resume also ATV/DTV */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-19 08:34:00 +08:00
|
|
|
static struct usb_driver au0828_usb_driver = {
|
2014-08-10 08:47:17 +08:00
|
|
|
.name = KBUILD_MODNAME,
|
2008-04-19 08:34:00 +08:00
|
|
|
.probe = au0828_usb_probe,
|
|
|
|
.disconnect = au0828_usb_disconnect,
|
|
|
|
.id_table = au0828_usb_id_table,
|
2014-08-10 08:47:11 +08:00
|
|
|
.suspend = au0828_suspend,
|
|
|
|
.resume = au0828_resume,
|
|
|
|
.reset_resume = au0828_resume,
|
2008-04-19 08:34:00 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int __init au0828_init(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2008-04-26 06:06:03 +08:00
|
|
|
if (au0828_debug & 1)
|
2014-08-10 08:47:17 +08:00
|
|
|
pr_info("%s() Debugging is enabled\n", __func__);
|
2008-04-19 08:39:11 +08:00
|
|
|
|
2008-04-26 06:06:03 +08:00
|
|
|
if (au0828_debug & 2)
|
2014-08-10 08:47:17 +08:00
|
|
|
pr_info("%s() USB Debugging is enabled\n", __func__);
|
2008-04-19 08:39:11 +08:00
|
|
|
|
2008-04-26 06:06:03 +08:00
|
|
|
if (au0828_debug & 4)
|
2014-08-10 08:47:17 +08:00
|
|
|
pr_info("%s() I2C Debugging is enabled\n", __func__);
|
2008-04-19 08:39:11 +08:00
|
|
|
|
2008-04-26 06:06:03 +08:00
|
|
|
if (au0828_debug & 8)
|
2014-08-10 08:47:17 +08:00
|
|
|
pr_info("%s() Bridge Debugging is enabled\n",
|
2008-04-19 08:42:30 +08:00
|
|
|
__func__);
|
2008-04-19 08:39:11 +08:00
|
|
|
|
2014-07-25 09:49:02 +08:00
|
|
|
if (au0828_debug & 16)
|
2014-08-10 08:47:17 +08:00
|
|
|
pr_info("%s() IR Debugging is enabled\n",
|
2014-07-25 09:49:02 +08:00
|
|
|
__func__);
|
|
|
|
|
2014-08-10 08:47:17 +08:00
|
|
|
pr_info("au0828 driver loaded\n");
|
2008-04-19 08:34:00 +08:00
|
|
|
|
|
|
|
ret = usb_register(&au0828_usb_driver);
|
|
|
|
if (ret)
|
2014-08-10 08:47:17 +08:00
|
|
|
pr_err("usb_register failed, error = %d\n", ret);
|
2008-04-19 08:34:00 +08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit au0828_exit(void)
|
|
|
|
{
|
|
|
|
usb_deregister(&au0828_usb_driver);
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(au0828_init);
|
|
|
|
module_exit(au0828_exit);
|
|
|
|
|
|
|
|
MODULE_DESCRIPTION("Driver for Auvitek AU0828 based products");
|
2008-09-04 04:12:12 +08:00
|
|
|
MODULE_AUTHOR("Steven Toth <stoth@linuxtv.org>");
|
2008-04-19 08:34:00 +08:00
|
|
|
MODULE_LICENSE("GPL");
|
2014-07-25 09:49:02 +08:00
|
|
|
MODULE_VERSION("0.0.3");
|