diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-10-30 04:41:25 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 16:01:46 -0500 |
commit | 761dacd25d9e9be2358df21a0f086bbb4cf1c789 (patch) | |
tree | 30f16ed79abc5346d0c25b124e8c8fc3643e7bd6 /include | |
parent | 4be2f47054fb12a5868838770595e8d3a02e60f2 (diff) |
V4L/DVB (6486): m52790: add new Mitsubishi A/V switch i2c driver
This driver is used by the ASUS Falcon2 cx23416-based cards.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/media/m52790.h | 93 | ||||
-rw-r--r-- | include/media/v4l2-chip-ident.h | 3 |
2 files changed, 96 insertions, 0 deletions
diff --git a/include/media/m52790.h b/include/media/m52790.h new file mode 100644 index 000000000000..7ddffae31a67 --- /dev/null +++ b/include/media/m52790.h | |||
@@ -0,0 +1,93 @@ | |||
1 | /* | ||
2 | m52790.h - definition for m52790 inputs and outputs | ||
3 | |||
4 | Copyright (C) 2007 Hans Verkuil (hverkuil@xs4all.nl) | ||
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 as published by | ||
8 | the Free Software Foundation; either version 2 of the License, or | ||
9 | (at your option) any later version. | ||
10 | |||
11 | This program is distributed in the hope that it will be useful, | ||
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | GNU General Public License for more details. | ||
15 | |||
16 | You should have received a copy of the GNU General Public License | ||
17 | along with this program; if not, write to the Free Software | ||
18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | ||
19 | */ | ||
20 | |||
21 | #ifndef _M52790_H_ | ||
22 | #define _M52790_H_ | ||
23 | |||
24 | /* Input routing switch 1 */ | ||
25 | |||
26 | #define M52790_SW1_IN_MASK 0x0003 | ||
27 | #define M52790_SW1_IN_TUNER 0x0000 | ||
28 | #define M52790_SW1_IN_V2 0x0001 | ||
29 | #define M52790_SW1_IN_V3 0x0002 | ||
30 | #define M52790_SW1_IN_V4 0x0003 | ||
31 | |||
32 | /* Selects component input instead of composite */ | ||
33 | #define M52790_SW1_YCMIX 0x0004 | ||
34 | |||
35 | |||
36 | /* Input routing switch 2 */ | ||
37 | |||
38 | #define M52790_SW2_IN_MASK 0x0300 | ||
39 | #define M52790_SW2_IN_TUNER 0x0000 | ||
40 | #define M52790_SW2_IN_V2 0x0100 | ||
41 | #define M52790_SW2_IN_V3 0x0200 | ||
42 | #define M52790_SW2_IN_V4 0x0300 | ||
43 | |||
44 | /* Selects component input instead of composite */ | ||
45 | #define M52790_SW2_YCMIX 0x0400 | ||
46 | |||
47 | |||
48 | /* Output routing switch 1 */ | ||
49 | |||
50 | /* Enable 6dB amplifier for composite out */ | ||
51 | #define M52790_SW1_V_AMP 0x0008 | ||
52 | |||
53 | /* Enable 6dB amplifier for component out */ | ||
54 | #define M52790_SW1_YC_AMP 0x0010 | ||
55 | |||
56 | /* Audio output mode */ | ||
57 | #define M52790_SW1_AUDIO_MASK 0x00c0 | ||
58 | #define M52790_SW1_AUDIO_MUTE 0x0000 | ||
59 | #define M52790_SW1_AUDIO_R 0x0040 | ||
60 | #define M52790_SW1_AUDIO_L 0x0080 | ||
61 | #define M52790_SW1_AUDIO_STEREO 0x00c0 | ||
62 | |||
63 | |||
64 | /* Output routing switch 2 */ | ||
65 | |||
66 | /* Enable 6dB amplifier for composite out */ | ||
67 | #define M52790_SW2_V_AMP 0x0800 | ||
68 | |||
69 | /* Enable 6dB amplifier for component out */ | ||
70 | #define M52790_SW2_YC_AMP 0x1000 | ||
71 | |||
72 | /* Audio output mode */ | ||
73 | #define M52790_SW2_AUDIO_MASK 0xc000 | ||
74 | #define M52790_SW2_AUDIO_MUTE 0x0000 | ||
75 | #define M52790_SW2_AUDIO_R 0x4000 | ||
76 | #define M52790_SW2_AUDIO_L 0x8000 | ||
77 | #define M52790_SW2_AUDIO_STEREO 0xc000 | ||
78 | |||
79 | |||
80 | /* Common values */ | ||
81 | #define M52790_IN_TUNER (M52790_SW1_IN_TUNER | M52790_SW2_IN_TUNER) | ||
82 | #define M52790_IN_V2 (M52790_SW1_IN_V2 | M52790_SW2_IN_V2) | ||
83 | #define M52790_IN_V3 (M52790_SW1_IN_V3 | M52790_SW2_IN_V3) | ||
84 | #define M52790_IN_V4 (M52790_SW1_IN_V4 | M52790_SW2_IN_V4) | ||
85 | |||
86 | #define M52790_OUT_STEREO (M52790_SW1_AUDIO_STEREO | \ | ||
87 | M52790_SW2_AUDIO_STEREO) | ||
88 | #define M52790_OUT_AMP_STEREO (M52790_SW1_AUDIO_STEREO | \ | ||
89 | M52790_SW1_V_AMP | \ | ||
90 | M52790_SW2_AUDIO_STEREO | \ | ||
91 | M52790_SW2_V_AMP) | ||
92 | |||
93 | #endif | ||
diff --git a/include/media/v4l2-chip-ident.h b/include/media/v4l2-chip-ident.h index 8ae42c41dd08..2442c281e4fe 100644 --- a/include/media/v4l2-chip-ident.h +++ b/include/media/v4l2-chip-ident.h | |||
@@ -83,6 +83,9 @@ enum { | |||
83 | /* module upd64083: just ident 64083 */ | 83 | /* module upd64083: just ident 64083 */ |
84 | V4L2_IDENT_UPD64083 = 64083, | 84 | V4L2_IDENT_UPD64083 = 64083, |
85 | 85 | ||
86 | /* module m52790: just ident 52790 */ | ||
87 | V4L2_IDENT_M52790 = 52790, | ||
88 | |||
86 | /* module msp34xx: reserved range 34000-34999 */ | 89 | /* module msp34xx: reserved range 34000-34999 */ |
87 | V4L2_IDENT_MSP3400B = 34002, | 90 | V4L2_IDENT_MSP3400B = 34002, |
88 | V4L2_IDENT_MSP3410B = 34102, | 91 | V4L2_IDENT_MSP3410B = 34102, |