aboutsummaryrefslogtreecommitdiffstats
path: root/include/media
diff options
context:
space:
mode:
authorGuennadi Liakhovetski <lyakh@axis700.grange>2010-03-29 03:45:22 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2010-05-19 11:58:02 -0400
commitaec11e5d495a6c9b10ded81dde5b0e42b0875541 (patch)
treec57f57d1dc588dc2e0ac6c5c60f4e0435a1e1dec /include/media
parenta81fb9b223508f5773d8d7e226b1574d1b068642 (diff)
V4L/DVB: V4L: v4l2-subdev driver for AK8813 and AK8814 TV-encoders from AKM
AK8814 only differs from AK8813 by included Macrovision Copy Protection function. This patch adds a driver for AK8813 and AK8814 I2C PAL/NTSC TV encoders. Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media')
-rw-r--r--include/media/ak881x.h25
-rw-r--r--include/media/v4l2-chip-ident.h4
2 files changed, 29 insertions, 0 deletions
diff --git a/include/media/ak881x.h b/include/media/ak881x.h
new file mode 100644
index 000000000000..b7f2add5ce7b
--- /dev/null
+++ b/include/media/ak881x.h
@@ -0,0 +1,25 @@
1/*
2 * Header for AK8813 / AK8814 TV-ecoders from Asahi Kasei Microsystems Co., Ltd. (AKM)
3 *
4 * Copyright (C) 2010, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#ifndef AK881X_H
12#define AK881X_H
13
14#define AK881X_IF_MODE_MASK (3 << 0)
15#define AK881X_IF_MODE_BT656 (0 << 0)
16#define AK881X_IF_MODE_MASTER (1 << 0)
17#define AK881X_IF_MODE_SLAVE (2 << 0)
18#define AK881X_FIELD (1 << 2)
19#define AK881X_COMPONENT (1 << 3)
20
21struct ak881x_pdata {
22 unsigned long flags;
23};
24
25#endif
diff --git a/include/media/v4l2-chip-ident.h b/include/media/v4l2-chip-ident.h
index 42759db6794e..21b4428c12ab 100644
--- a/include/media/v4l2-chip-ident.h
+++ b/include/media/v4l2-chip-ident.h
@@ -178,6 +178,10 @@ enum {
178 /* module cafe_ccic, just ident 8801 */ 178 /* module cafe_ccic, just ident 8801 */
179 V4L2_IDENT_CAFE = 8801, 179 V4L2_IDENT_CAFE = 8801,
180 180
181 /* AKM AK8813/AK8814 */
182 V4L2_IDENT_AK8813 = 8813,
183 V4L2_IDENT_AK8814 = 8814,
184
181 /* module cx23885 and cx25840 */ 185 /* module cx23885 and cx25840 */
182 V4L2_IDENT_CX23885 = 8850, 186 V4L2_IDENT_CX23885 = 8850,
183 V4L2_IDENT_CX23885_AV = 8851, /* Integrated A/V decoder */ 187 V4L2_IDENT_CX23885_AV = 8851, /* Integrated A/V decoder */