V4L/DVB (3405): Fixes tvp5150a/am1 detection.
[deliverable/linux.git] / drivers / media / video / saa7134 / saa7134.h
CommitLineData
1da177e4 1/*
1da177e4
LT
2 *
3 * v4l2 device driver for philips saa7134 based TV cards
4 *
5 * (c) 2001,02 Gerd Knorr <kraxel@bytesex.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
10b89ee3 22#include <linux/version.h>
fd3113e8 23#define SAA7134_VERSION_CODE KERNEL_VERSION(0,2,14)
1da177e4
LT
24
25#include <linux/pci.h>
26#include <linux/i2c.h>
79436633 27#include <linux/videodev2.h>
1da177e4
LT
28#include <linux/kdev_t.h>
29#include <linux/input.h>
67081a46
MK
30#include <linux/notifier.h>
31#include <linux/delay.h>
1da177e4
LT
32
33#include <asm/io.h>
34
35#include <media/tuner.h>
36#include <media/audiochip.h>
1da177e4 37#include <media/ir-common.h>
ac9cd976 38#include <media/ir-kbd-i2c.h>
1da177e4 39#include <media/video-buf.h>
d21838dd
MCC
40#include <sound/driver.h>
41#include <sound/core.h>
42#include <sound/pcm.h>
1da177e4
LT
43#include <media/video-buf-dvb.h>
44
45#ifndef TRUE
46# define TRUE (1==1)
47#endif
48#ifndef FALSE
49# define FALSE (1==0)
50#endif
51#define UNSET (-1U)
52
1da177e4
LT
53/* ----------------------------------------------------------- */
54/* enums */
55
56enum saa7134_tvaudio_mode {
57 TVAUDIO_FM_MONO = 1,
58 TVAUDIO_FM_BG_STEREO = 2,
59 TVAUDIO_FM_SAT_STEREO = 3,
60 TVAUDIO_FM_K_STEREO = 4,
61 TVAUDIO_NICAM_AM = 5,
62 TVAUDIO_NICAM_FM = 6,
63};
64
65enum saa7134_audio_in {
66 TV = 1,
67 LINE1 = 2,
68 LINE2 = 3,
69 LINE2_LEFT,
70};
71
72enum saa7134_video_out {
73 CCIR656 = 1,
74};
75
76/* ----------------------------------------------------------- */
77/* static data */
78
79struct saa7134_tvnorm {
80 char *name;
81 v4l2_std_id id;
82
83 /* video decoder */
84 unsigned int sync_control;
85 unsigned int luma_control;
86 unsigned int chroma_ctrl1;
87 unsigned int chroma_gain;
88 unsigned int chroma_ctrl2;
89 unsigned int vgate_misc;
90
91 /* video scaler */
92 unsigned int h_start;
93 unsigned int h_stop;
94 unsigned int video_v_start;
95 unsigned int video_v_stop;
f246a817
MS
96 unsigned int vbi_v_start_0;
97 unsigned int vbi_v_stop_0;
1da177e4 98 unsigned int src_timing;
f246a817 99 unsigned int vbi_v_start_1;
1da177e4
LT
100};
101
102struct saa7134_tvaudio {
103 char *name;
104 v4l2_std_id std;
105 enum saa7134_tvaudio_mode mode;
106 int carr1;
107 int carr2;
108};
109
110struct saa7134_format {
111 char *name;
112 unsigned int fourcc;
113 unsigned int depth;
114 unsigned int pm;
115 unsigned int vshift; /* vertical downsampling (for planar yuv) */
116 unsigned int hshift; /* horizontal downsampling (for planar yuv) */
117 unsigned int bswap:1;
118 unsigned int wswap:1;
119 unsigned int yuv:1;
120 unsigned int planar:1;
121 unsigned int uvswap:1;
122};
123
124/* ----------------------------------------------------------- */
125/* card configuration */
126
127#define SAA7134_BOARD_NOAUTO UNSET
128#define SAA7134_BOARD_UNKNOWN 0
129#define SAA7134_BOARD_PROTEUS_PRO 1
130#define SAA7134_BOARD_FLYVIDEO3000 2
131#define SAA7134_BOARD_FLYVIDEO2000 3
132#define SAA7134_BOARD_EMPRESS 4
133#define SAA7134_BOARD_MONSTERTV 5
134#define SAA7134_BOARD_MD9717 6
135#define SAA7134_BOARD_TVSTATION_RDS 7
136#define SAA7134_BOARD_CINERGY400 8
137#define SAA7134_BOARD_MD5044 9
138#define SAA7134_BOARD_KWORLD 10
139#define SAA7134_BOARD_CINERGY600 11
140#define SAA7134_BOARD_MD7134 12
141#define SAA7134_BOARD_TYPHOON_90031 13
142#define SAA7134_BOARD_ELSA 14
143#define SAA7134_BOARD_ELSA_500TV 15
144#define SAA7134_BOARD_ASUSTeK_TVFM7134 16
145#define SAA7134_BOARD_VA1000POWER 17
146#define SAA7134_BOARD_BMK_MPEX_NOTUNER 18
147#define SAA7134_BOARD_VIDEOMATE_TV 19
148#define SAA7134_BOARD_CRONOS_PLUS 20
149#define SAA7134_BOARD_10MOONSTVMASTER 21
150#define SAA7134_BOARD_MD2819 22
151#define SAA7134_BOARD_BMK_MPEX_TUNER 23
152#define SAA7134_BOARD_TVSTATION_DVR 24
153#define SAA7134_BOARD_ASUSTEK_TVFM7133 25
154#define SAA7134_BOARD_PINNACLE_PCTV_STEREO 26
155#define SAA7134_BOARD_MANLI_MTV002 27
156#define SAA7134_BOARD_MANLI_MTV001 28
157#define SAA7134_BOARD_TG3000TV 29
158#define SAA7134_BOARD_ECS_TVP3XP 30
159#define SAA7134_BOARD_ECS_TVP3XP_4CB5 31
160#define SAA7134_BOARD_AVACSSMARTTV 32
161#define SAA7134_BOARD_AVERMEDIA_DVD_EZMAKER 33
162#define SAA7134_BOARD_NOVAC_PRIMETV7133 34
163#define SAA7134_BOARD_AVERMEDIA_STUDIO_305 35
330a115a 164#define SAA7134_BOARD_UPMOST_PURPLE_TV 36
1da177e4
LT
165#define SAA7134_BOARD_ITEMS_MTV005 37
166#define SAA7134_BOARD_CINERGY200 38
167#define SAA7134_BOARD_FLYTVPLATINUM_MINI 39
168#define SAA7134_BOARD_VIDEOMATE_TV_PVR 40
169#define SAA7134_BOARD_VIDEOMATE_TV_GOLD_PLUS 41
170#define SAA7134_BOARD_SABRENT_SBTTVFM 42
171#define SAA7134_BOARD_ZOLID_XPERT_TV7134 43
172#define SAA7134_BOARD_EMPIRE_PCI_TV_RADIO_LE 44
ac19ecc6 173#define SAA7134_BOARD_AVERMEDIA_STUDIO_307 45
1da177e4
LT
174#define SAA7134_BOARD_AVERMEDIA_CARDBUS 46
175#define SAA7134_BOARD_CINERGY400_CARDBUS 47
176#define SAA7134_BOARD_CINERGY600_MK3 48
177#define SAA7134_BOARD_VIDEOMATE_GOLD_PLUS 49
178#define SAA7134_BOARD_PINNACLE_300I_DVBT_PAL 50
179#define SAA7134_BOARD_PROVIDEO_PV952 51
180#define SAA7134_BOARD_AVERMEDIA_305 52
330a115a 181#define SAA7134_BOARD_ASUSTeK_TVFM7135 53
1da177e4
LT
182#define SAA7134_BOARD_FLYTVPLATINUM_FM 54
183#define SAA7134_BOARD_FLYDVBTDUO 55
ac19ecc6
MCC
184#define SAA7134_BOARD_AVERMEDIA_307 56
185#define SAA7134_BOARD_AVERMEDIA_GO_007_FM 57
186#define SAA7134_BOARD_ADS_INSTANT_TV 58
187#define SAA7134_BOARD_KWORLD_VSTREAM_XPERT 59
330a115a
MCC
188#define SAA7134_BOARD_THYPHOON_DVBT_DUO_CARDBUS 60
189#define SAA7134_BOARD_PHILIPS_TOUGH 61
190#define SAA7134_BOARD_VIDEOMATE_TV_GOLD_PLUSII 62
191#define SAA7134_BOARD_KWORLD_XPERT 63
2f180710 192#define SAA7134_BOARD_FLYTV_DIGIMATRIX 64
260784dc 193#define SAA7134_BOARD_KWORLD_TERMINATOR 65
4279f024 194#define SAA7134_BOARD_YUAN_TUN900 66
a8ff417e 195#define SAA7134_BOARD_BEHOLD_409FM 67
6b961440 196#define SAA7134_BOARD_GOTVIEW_7135 68
2cf36ac4
HH
197#define SAA7134_BOARD_PHILIPS_EUROPA 69
198#define SAA7134_BOARD_VIDEOMATE_DVBT_300 70
199#define SAA7134_BOARD_VIDEOMATE_DVBT_200 71
bb881f14
NS
200#define SAA7134_BOARD_RTD_VFG7350 72
201#define SAA7134_BOARD_RTD_VFG7330 73
058afaf8 202#define SAA7134_BOARD_FLYTVPLATINUM_MINI2 74
76bc3a39 203#define SAA7134_BOARD_AVERMEDIA_AVERTVHD_A180 75
cf1c5d1d 204#define SAA7134_BOARD_MONSTERTV_MOBILE 76
c2f6f9d8 205#define SAA7134_BOARD_PINNACLE_PCTV_110i 77
28f02241 206#define SAA7134_BOARD_ASUSTeK_P7131_DUAL 78
17ce1ff9 207#define SAA7134_BOARD_SEDNA_PC_TV_CARDBUS 79
5d5c9904 208#define SAA7134_BOARD_ASUSTEK_DIGIMATRIX_TV 80
90e9df7f 209#define SAA7134_BOARD_PHILIPS_TIGER 81
80d2ad92 210#define SAA7134_BOARD_MSI_TVATANYWHERE_PLUS 82