License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2005-07-08 08:58:10 +08:00
|
|
|
#ifndef _DVB_USB_CXUSB_H_
|
|
|
|
#define _DVB_USB_CXUSB_H_
|
|
|
|
|
media: cxusb: add analog mode support for Medion MD95700
This patch adds support for analog part of Medion 95700 in the cxusb
driver.
What works:
* Video capture at various sizes with sequential fields,
* Input switching (TV Tuner, Composite, S-Video),
* TV and radio tuning,
* Video standard switching and auto detection,
* Radio mode switching (stereo / mono),
* Unplugging while capturing,
* DVB / analog coexistence.
What does not work yet:
* Audio,
* VBI,
* Picture controls.
Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: remove left-over commented-out debug message]
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2019-04-30 00:16:58 +08:00
|
|
|
#include <linux/completion.h>
|
2019-04-30 00:16:57 +08:00
|
|
|
#include <linux/i2c.h>
|
media: cxusb: add analog mode support for Medion MD95700
This patch adds support for analog part of Medion 95700 in the cxusb
driver.
What works:
* Video capture at various sizes with sequential fields,
* Input switching (TV Tuner, Composite, S-Video),
* TV and radio tuning,
* Video standard switching and auto detection,
* Radio mode switching (stereo / mono),
* Unplugging while capturing,
* DVB / analog coexistence.
What does not work yet:
* Audio,
* VBI,
* Picture controls.
Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: remove left-over commented-out debug message]
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2019-04-30 00:16:58 +08:00
|
|
|
#include <linux/list.h>
|
2019-04-30 00:16:57 +08:00
|
|
|
#include <linux/mutex.h>
|
media: cxusb: add analog mode support for Medion MD95700
This patch adds support for analog part of Medion 95700 in the cxusb
driver.
What works:
* Video capture at various sizes with sequential fields,
* Input switching (TV Tuner, Composite, S-Video),
* TV and radio tuning,
* Video standard switching and auto detection,
* Radio mode switching (stereo / mono),
* Unplugging while capturing,
* DVB / analog coexistence.
What does not work yet:
* Audio,
* VBI,
* Picture controls.
Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: remove left-over commented-out debug message]
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2019-04-30 00:16:58 +08:00
|
|
|
#include <linux/usb.h>
|
|
|
|
#include <linux/workqueue.h>
|
|
|
|
#include <media/v4l2-common.h>
|
|
|
|
#include <media/v4l2-dev.h>
|
|
|
|
#include <media/v4l2-device.h>
|
|
|
|
#include <media/videobuf2-core.h>
|
|
|
|
#include <media/videobuf2-v4l2.h>
|
2019-04-30 00:16:57 +08:00
|
|
|
|
2005-09-10 04:02:51 +08:00
|
|
|
#define DVB_USB_LOG_PREFIX "cxusb"
|
2005-07-08 08:58:10 +08:00
|
|
|
#include "dvb-usb.h"
|
|
|
|
|
media: cxusb: add analog mode support for Medion MD95700
This patch adds support for analog part of Medion 95700 in the cxusb
driver.
What works:
* Video capture at various sizes with sequential fields,
* Input switching (TV Tuner, Composite, S-Video),
* TV and radio tuning,
* Video standard switching and auto detection,
* Radio mode switching (stereo / mono),
* Unplugging while capturing,
* DVB / analog coexistence.
What does not work yet:
* Audio,
* VBI,
* Picture controls.
Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: remove left-over commented-out debug message]
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2019-04-30 00:16:58 +08:00
|
|
|
#define CXUSB_VIDEO_URBS (5)
|
|
|
|
#define CXUSB_VIDEO_URB_MAX_SIZE (512 * 1024)
|
|
|
|
|
|
|
|
#define CXUSB_VIDEO_PKT_SIZE 3030
|
|
|
|
#define CXUSB_VIDEO_MAX_FRAME_PKTS 346
|
|
|
|
#define CXUSB_VIDEO_MAX_FRAME_SIZE (CXUSB_VIDEO_MAX_FRAME_PKTS * \
|
|
|
|
CXUSB_VIDEO_PKT_SIZE)
|
|
|
|
|
2005-07-08 08:58:10 +08:00
|
|
|
/* usb commands - some of it are guesses, don't have a reference yet */
|
2007-11-20 08:57:10 +08:00
|
|
|
#define CMD_BLUEBIRD_GPIO_RW 0x05
|
|
|
|
|
2005-09-10 04:02:51 +08:00
|
|
|
#define CMD_I2C_WRITE 0x08
|
|
|
|
#define CMD_I2C_READ 0x09
|
2005-07-08 08:58:10 +08:00
|
|
|
|
2005-09-10 04:02:51 +08:00
|
|
|
#define CMD_GPIO_READ 0x0d
|
|
|
|
#define CMD_GPIO_WRITE 0x0e
|
|
|
|
#define GPIO_TUNER 0x02
|
2005-07-08 08:58:10 +08:00
|
|
|
|
2005-09-10 04:02:51 +08:00
|
|
|
#define CMD_POWER_OFF 0xdc
|
|
|
|
#define CMD_POWER_ON 0xde
|
2005-07-08 08:58:10 +08:00
|
|
|
|
2005-09-10 04:02:51 +08:00
|
|
|
#define CMD_STREAMING_ON 0x36
|
|
|
|
#define CMD_STREAMING_OFF 0x37
|
|
|
|
|
2008-06-28 16:01:30 +08:00
|
|
|
#define CMD_AVER_STREAM_ON 0x18
|
|
|
|
#define CMD_AVER_STREAM_OFF 0x19
|
|
|
|
|
2006-01-10 04:21:29 +08:00
|
|
|
#define CMD_GET_IR_CODE 0x47
|
|
|
|
|
2005-09-10 04:02:51 +08:00
|
|
|
#define CMD_ANALOG 0x50
|
|
|
|
#define CMD_DIGITAL 0x51
|
2005-07-08 08:58:10 +08:00
|
|
|
|
media: cxusb: add analog mode support for Medion MD95700
This patch adds support for analog part of Medion 95700 in the cxusb
driver.
What works:
* Video capture at various sizes with sequential fields,
* Input switching (TV Tuner, Composite, S-Video),
* TV and radio tuning,
* Video standard switching and auto detection,
* Radio mode switching (stereo / mono),
* Unplugging while capturing,
* DVB / analog coexistence.
What does not work yet:
* Audio,
* VBI,
* Picture controls.
Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: remove left-over commented-out debug message]
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2019-04-30 00:16:58 +08:00
|
|
|
#define CXUSB_BT656_PREAMBLE ((const u8 *)"\xff\x00\x00")
|
|
|
|
|
|
|
|
#define CXUSB_BT656_FIELD_MASK BIT(6)
|
|
|
|
#define CXUSB_BT656_FIELD_1 0
|
|
|
|
#define CXUSB_BT656_FIELD_2 BIT(6)
|
|
|
|
|
|
|
|
#define CXUSB_BT656_VBI_MASK BIT(5)
|
|
|
|
#define CXUSB_BT656_VBI_ON BIT(5)
|
|
|
|
#define CXUSB_BT656_VBI_OFF 0
|
|
|
|
|
|
|
|
#define CXUSB_BT656_SEAV_MASK BIT(4)
|
|
|
|
#define CXUSB_BT656_SEAV_EAV BIT(4)
|
|
|
|
#define CXUSB_BT656_SEAV_SAV 0
|
|
|
|
|
2016-10-07 17:30:27 +08:00
|
|
|
/* Max transfer size done by I2C transfer functions */
|
|
|
|
#define MAX_XFER_SIZE 80
|
|
|
|
|
2005-07-08 08:58:10 +08:00
|
|
|
struct cxusb_state {
|
2005-09-10 04:02:51 +08:00
|
|
|
u8 gpio_write_state[3];
|
2019-04-30 00:16:57 +08:00
|
|
|
bool gpio_write_refresh[3];
|
2014-07-13 21:52:22 +08:00
|
|
|
struct i2c_client *i2c_client_demod;
|
|
|
|
struct i2c_client *i2c_client_tuner;
|
2016-10-07 17:30:27 +08:00
|
|
|
|
|
|
|
unsigned char data[MAX_XFER_SIZE];
|
2016-10-22 03:35:40 +08:00
|
|
|
|
|
|
|
struct mutex stream_mutex;
|
|
|
|
u8 last_lock;
|
|
|
|
int (*fe_read_status)(struct dvb_frontend *fe,
|
2019-05-29 05:42:57 +08:00
|
|
|
enum fe_status *status);
|
2005-07-08 08:58:10 +08:00
|
|
|
};
|
|
|
|
|
2019-04-30 00:16:57 +08:00
|
|
|
enum cxusb_open_type {
|
2019-05-29 05:42:57 +08:00
|
|
|
CXUSB_OPEN_INIT,
|
|
|
|
CXUSB_OPEN_NONE,
|
|
|
|
CXUSB_OPEN_ANALOG,
|
|
|
|
CXUSB_OPEN_DIGITAL
|
2019-04-30 00:16:57 +08:00
|
|
|
};
|
|
|
|
|
media: cxusb: add analog mode support for Medion MD95700
This patch adds support for analog part of Medion 95700 in the cxusb
driver.
What works:
* Video capture at various sizes with sequential fields,
* Input switching (TV Tuner, Composite, S-Video),
* TV and radio tuning,
* Video standard switching and auto detection,
* Radio mode switching (stereo / mono),
* Unplugging while capturing,
* DVB / analog coexistence.
What does not work yet:
* Audio,
* VBI,
* Picture controls.
Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: remove left-over commented-out debug message]
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2019-04-30 00:16:58 +08:00
|
|
|
struct cxusb_medion_auxbuf {
|
|
|
|
u8 *buf;
|
|
|
|
unsigned int len;
|
|
|
|
unsigned int paylen;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum cxusb_bt656_mode {
|
|
|
|
NEW_FRAME, FIRST_FIELD, SECOND_FIELD
|
|
|
|
};
|
|
|
|
|
|
|
|
enum cxusb_bt656_fmode {
|
|
|
|
START_SEARCH, LINE_SAMPLES, VBI_SAMPLES
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cxusb_bt656_params {
|
|
|
|
enum cxusb_bt656_mode mode;
|
|
|
|
enum cxusb_bt656_fmode fmode;
|
|
|
|
unsigned int pos;
|
|
|
|
unsigned int line;
|
|
|
|
unsigned int linesamples;
|
|
|
|
u8 *buf;
|
|
|
|
};
|
|
|
|
|
2019-04-30 00:16:57 +08:00
|
|
|
struct cxusb_medion_dev {
|
|
|
|
/* has to be the first one */
|
|
|
|
struct cxusb_state state;
|
|
|
|
|
|
|
|
struct dvb_usb_device *dvbdev;
|
|
|
|
|
|
|
|
enum cxusb_open_type open_type;
|
|
|
|
unsigned int open_ctr;
|
|
|
|
struct mutex open_lock;
|
media: cxusb: add analog mode support for Medion MD95700
This patch adds support for analog part of Medion 95700 in the cxusb
driver.
What works:
* Video capture at various sizes with sequential fields,
* Input switching (TV Tuner, Composite, S-Video),
* TV and radio tuning,
* Video standard switching and auto detection,
* Radio mode switching (stereo / mono),
* Unplugging while capturing,
* DVB / analog coexistence.
What does not work yet:
* Audio,
* VBI,
* Picture controls.
Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: remove left-over commented-out debug message]
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2019-04-30 00:16:58 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_DVB_USB_CXUSB_ANALOG
|
|
|
|
struct v4l2_device v4l2dev;
|
|
|
|
struct v4l2_subdev *cx25840;
|
|
|
|
struct v4l2_subdev *tuner;
|
|
|
|
struct v4l2_subdev *tda9887;
|
|
|
|
struct video_device *videodev, *radiodev;
|
|
|
|
struct mutex dev_lock;
|
|
|
|
|
|
|
|
struct vb2_queue videoqueue;
|
|
|
|
u32 input;
|
|
|
|
bool stop_streaming;
|
|
|
|
u32 width, height;
|
|
|
|
u32 field_order;
|
|
|
|
struct cxusb_medion_auxbuf auxbuf;
|
|
|
|
v4l2_std_id norm;
|
|
|
|
|
|
|
|
struct urb *streamurbs[CXUSB_VIDEO_URBS];
|
|
|
|
unsigned long urbcomplete;
|
|
|
|
struct work_struct urbwork;
|
|
|
|
unsigned int nexturb;
|
|
|
|
|
|
|
|
struct cxusb_bt656_params bt656;
|
|
|
|
struct cxusb_medion_vbuffer *vbuf;
|
|
|
|
__u32 vbuf_sequence;
|
|
|
|
|
|
|
|
struct list_head buflist;
|
|
|
|
|
|
|
|
struct completion v4l2_release;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cxusb_medion_vbuffer {
|
|
|
|
struct vb2_v4l2_buffer vb2;
|
|
|
|
struct list_head list;
|
2019-04-30 00:16:57 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* defines for "debug" module parameter */
|
|
|
|
#define CXUSB_DBG_RC BIT(0)
|
|
|
|
#define CXUSB_DBG_I2C BIT(1)
|
|
|
|
#define CXUSB_DBG_MISC BIT(2)
|
media: cxusb: add analog mode support for Medion MD95700
This patch adds support for analog part of Medion 95700 in the cxusb
driver.
What works:
* Video capture at various sizes with sequential fields,
* Input switching (TV Tuner, Composite, S-Video),
* TV and radio tuning,
* Video standard switching and auto detection,
* Radio mode switching (stereo / mono),
* Unplugging while capturing,
* DVB / analog coexistence.
What does not work yet:
* Audio,
* VBI,
* Picture controls.
Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: remove left-over commented-out debug message]
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2019-04-30 00:16:58 +08:00
|
|
|
#define CXUSB_DBG_BT656 BIT(3)
|
|
|
|
#define CXUSB_DBG_URB BIT(4)
|
|
|
|
#define CXUSB_DBG_OPS BIT(5)
|
|
|
|
#define CXUSB_DBG_AUXB BIT(6)
|
2019-04-30 00:16:57 +08:00
|
|
|
|
|
|
|
extern int dvb_usb_cxusb_debug;
|
|
|
|
|
media: cxusb: add analog mode support for Medion MD95700
This patch adds support for analog part of Medion 95700 in the cxusb
driver.
What works:
* Video capture at various sizes with sequential fields,
* Input switching (TV Tuner, Composite, S-Video),
* TV and radio tuning,
* Video standard switching and auto detection,
* Radio mode switching (stereo / mono),
* Unplugging while capturing,
* DVB / analog coexistence.
What does not work yet:
* Audio,
* VBI,
* Picture controls.
Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: remove left-over commented-out debug message]
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2019-04-30 00:16:58 +08:00
|
|
|
#define cxusb_vprintk(dvbdev, lvl, ...) do { \
|
|
|
|
struct cxusb_medion_dev *_cxdev = (dvbdev)->priv; \
|
|
|
|
if (dvb_usb_cxusb_debug & CXUSB_DBG_##lvl) \
|
|
|
|
v4l2_printk(KERN_DEBUG, \
|
|
|
|
&_cxdev->v4l2dev, __VA_ARGS__); \
|
|
|
|
} while (0)
|
|
|
|
|
2019-04-30 00:16:57 +08:00
|
|
|
int cxusb_ctrl_msg(struct dvb_usb_device *d,
|
|
|
|
u8 cmd, const u8 *wbuf, int wlen, u8 *rbuf, int rlen);
|
|
|
|
|
media: cxusb: add analog mode support for Medion MD95700
This patch adds support for analog part of Medion 95700 in the cxusb
driver.
What works:
* Video capture at various sizes with sequential fields,
* Input switching (TV Tuner, Composite, S-Video),
* TV and radio tuning,
* Video standard switching and auto detection,
* Radio mode switching (stereo / mono),
* Unplugging while capturing,
* DVB / analog coexistence.
What does not work yet:
* Audio,
* VBI,
* Picture controls.
Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: remove left-over commented-out debug message]
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2019-04-30 00:16:58 +08:00
|
|
|
#ifdef CONFIG_DVB_USB_CXUSB_ANALOG
|
|
|
|
int cxusb_medion_analog_init(struct dvb_usb_device *dvbdev);
|
|
|
|
int cxusb_medion_register_analog(struct dvb_usb_device *dvbdev);
|
|
|
|
void cxusb_medion_unregister_analog(struct dvb_usb_device *dvbdev);
|
|
|
|
#else
|
2019-04-30 00:16:57 +08:00
|
|
|
static inline int cxusb_medion_analog_init(struct dvb_usb_device *dvbdev)
|
|
|
|
{
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int cxusb_medion_register_analog(struct dvb_usb_device *dvbdev)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void cxusb_medion_unregister_analog(struct dvb_usb_device *dvbdev)
|
|
|
|
{
|
|
|
|
}
|
media: cxusb: add analog mode support for Medion MD95700
This patch adds support for analog part of Medion 95700 in the cxusb
driver.
What works:
* Video capture at various sizes with sequential fields,
* Input switching (TV Tuner, Composite, S-Video),
* TV and radio tuning,
* Video standard switching and auto detection,
* Radio mode switching (stereo / mono),
* Unplugging while capturing,
* DVB / analog coexistence.
What does not work yet:
* Audio,
* VBI,
* Picture controls.
Signed-off-by: Maciej S. Szmigiero <mail@maciej.szmigiero.name>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: remove left-over commented-out debug message]
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2019-04-30 00:16:58 +08:00
|
|
|
#endif
|
2019-04-30 00:16:57 +08:00
|
|
|
|
|
|
|
int cxusb_medion_get(struct dvb_usb_device *dvbdev,
|
|
|
|
enum cxusb_open_type open_type);
|
|
|
|
void cxusb_medion_put(struct dvb_usb_device *dvbdev);
|
|
|
|
|
2005-07-08 08:58:10 +08:00
|
|
|
#endif
|