blob: d8c0a5563289a11ff571e367aecf394059fb4b4b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -07002/* $Id: tuner.h,v 1.42 2005/07/06 09:42:19 mchehab Exp $
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -07003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 tuner.h - definition for different tuners
5
6 Copyright (C) 1997 Markus Schroeder (schroedm@uni-duesseldorf.de)
7 minor modifications by Ralph Metzler (rjkm@thp.uni-koeln.de)
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22*/
23
24#ifndef _TUNER_H
25#define _TUNER_H
26
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -070027#include <linux/videodev2.h>
28
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -070029#define ADDR_UNSET (255)
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#define TUNER_TEMIC_PAL 0 /* 4002 FH5 (3X 7756, 9483) */
32#define TUNER_PHILIPS_PAL_I 1
33#define TUNER_PHILIPS_NTSC 2
34#define TUNER_PHILIPS_SECAM 3 /* you must actively select B/G, L, L` */
35
36#define TUNER_ABSENT 4
37#define TUNER_PHILIPS_PAL 5
38#define TUNER_TEMIC_NTSC 6 /* 4032 FY5 (3X 7004, 9498, 9789) */
39#define TUNER_TEMIC_PAL_I 7 /* 4062 FY5 (3X 8501, 9957) */
40
41#define TUNER_TEMIC_4036FY5_NTSC 8 /* 4036 FY5 (3X 1223, 1981, 7686) */
42#define TUNER_ALPS_TSBH1_NTSC 9
43#define TUNER_ALPS_TSBE1_PAL 10
44#define TUNER_ALPS_TSBB5_PAL_I 11
45
46#define TUNER_ALPS_TSBE5_PAL 12
47#define TUNER_ALPS_TSBC5_PAL 13
48#define TUNER_TEMIC_4006FH5_PAL 14 /* 4006 FH5 (3X 9500, 9501, 7291) */
49#define TUNER_ALPS_TSHC6_NTSC 15
50
51#define TUNER_TEMIC_PAL_DK 16 /* 4016 FY5 (3X 1392, 1393) */
52#define TUNER_PHILIPS_NTSC_M 17
53#define TUNER_TEMIC_4066FY5_PAL_I 18 /* 4066 FY5 (3X 7032, 7035) */
54#define TUNER_TEMIC_4006FN5_MULTI_PAL 19 /* B/G, I and D/K autodetected (3X 7595, 7606, 7657)*/
55
56#define TUNER_TEMIC_4009FR5_PAL 20 /* incl. FM radio (3X 7607, 7488, 7711)*/
57#define TUNER_TEMIC_4039FR5_NTSC 21 /* incl. FM radio (3X 7246, 7578, 7732)*/
58#define TUNER_TEMIC_4046FM5 22 /* you must actively select B/G, D/K, I, L, L` ! (3X 7804, 7806, 8103, 8104)*/
59#define TUNER_PHILIPS_PAL_DK 23
60
61#define TUNER_PHILIPS_FQ1216ME 24 /* you must actively select B/G/D/K, I, L, L` */
62#define TUNER_LG_PAL_I_FM 25
63#define TUNER_LG_PAL_I 26
64#define TUNER_LG_NTSC_FM 27
65
66#define TUNER_LG_PAL_FM 28
67#define TUNER_LG_PAL 29
68#define TUNER_TEMIC_4009FN5_MULTI_PAL_FM 30 /* B/G, I and D/K autodetected (3X 8155, 8160, 8163)*/
69#define TUNER_SHARP_2U5JF5540_NTSC 31
70
71#define TUNER_Samsung_PAL_TCPM9091PD27 32
72#define TUNER_MT2032 33
73#define TUNER_TEMIC_4106FH5 34 /* 4106 FH5 (3X 7808, 7865)*/
74#define TUNER_TEMIC_4012FY5 35 /* 4012 FY5 (3X 0971, 1099)*/
75
76#define TUNER_TEMIC_4136FY5 36 /* 4136 FY5 (3X 7708, 7746)*/
77#define TUNER_LG_PAL_NEW_TAPC 37
78#define TUNER_PHILIPS_FM1216ME_MK3 38
79#define TUNER_LG_NTSC_NEW_TAPC 39
80
81#define TUNER_HITACHI_NTSC 40
82#define TUNER_PHILIPS_PAL_MK 41
83#define TUNER_PHILIPS_ATSC 42
84#define TUNER_PHILIPS_FM1236_MK3 43
85
86#define TUNER_PHILIPS_4IN1 44 /* ATI TV Wonder Pro - Conexant */
87/* Microtune mergeged with Temic 12/31/1999 partially financed by Alps - these may be similar to Temic */
88#define TUNER_MICROTUNE_4049FM5 45
89#define TUNER_LG_NTSC_TAPE 47
90
91#define TUNER_TNF_8831BGFF 48
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -070092#define TUNER_MICROTUNE_4042FI5 49 /* DViCO FusionHDTV 3 Gold-Q - 4042 FI5 (3X 8147) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#define TUNER_TCL_2002N 50
94#define TUNER_PHILIPS_FM1256_IH3 51
95
96#define TUNER_THOMSON_DTT7610 52
97#define TUNER_PHILIPS_FQ1286 53
98#define TUNER_PHILIPS_TDA8290 54
99#define TUNER_LG_PAL_TAPE 55 /* Hauppauge PVR-150 PAL */
100
101#define TUNER_PHILIPS_FQ1216AME_MK4 56 /* Hauppauge PVR-150 PAL */
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700102#define TUNER_PHILIPS_FQ1236A_MK4 57 /* Hauppauge PVR-500MCE NTSC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700104#define TUNER_YMEC_TVF_8531MF 58
105#define TUNER_YMEC_TVF_5533MF 59 /* Pixelview Pro Ultra NTSC */
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700106#define TUNER_THOMSON_DTT7611 60 /* DViCO FusionHDTV 3 Gold-T */
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700107#define TUNER_TENA_9533_DI 61
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700108
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700109#define TUNER_TEA5767 62 /* Only FM Radio Tuner */
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700110#define TUNER_PHILIPS_FMD1216ME_MK3 63
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#define NOTUNER 0
113#define PAL 1 /* PAL_BG */
114#define PAL_I 2
115#define NTSC 3
116#define SECAM 4
117#define ATSC 5
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700118#define RADIO 6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120#define NoTuner 0
121#define Philips 1
122#define TEMIC 2
123#define Sony 3
124#define Alps 4
125#define LGINNOTEK 5
126#define SHARP 6
127#define Samsung 7
128#define Microtune 8
129#define HITACHI 9
130#define Panasonic 10
131#define TCL 11
132#define THOMSON 12
133
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700134#define TUNER_SET_TYPE_ADDR _IOW('T',3,int)
135#define TDA9887_SET_CONFIG _IOW('t',5,int)
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137/* tv card specific */
138# define TDA9887_PRESENT (1<<0)
139# define TDA9887_PORT1_INACTIVE (1<<1)
140# define TDA9887_PORT2_INACTIVE (1<<2)
141# define TDA9887_QSS (1<<3)
142# define TDA9887_INTERCARRIER (1<<4)
143# define TDA9887_PORT1_ACTIVE (1<<5)
144# define TDA9887_PORT2_ACTIVE (1<<6)
145/* config options */
146# define TDA9887_DEEMPHASIS_MASK (3<<16)
147# define TDA9887_DEEMPHASIS_NONE (1<<16)
148# define TDA9887_DEEMPHASIS_50 (2<<16)
149# define TDA9887_DEEMPHASIS_75 (3<<16)
150# define TDA9887_AUTOMUTE (1<<18)
151
152#ifdef __KERNEL__
153
154#define I2C_ADDR_TDA8290 0x4b
155#define I2C_ADDR_TDA8275 0x61
156
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700157enum tuner_mode {
158 T_UNINITIALIZED = 0,
159 T_RADIO = 1 << V4L2_TUNER_RADIO,
160 T_ANALOG_TV = 1 << V4L2_TUNER_ANALOG_TV,
161 T_DIGITAL_TV = 1 << V4L2_TUNER_DIGITAL_TV,
162 T_STANDBY = 1 << 31
163};
164
165struct tuner_setup {
Mauro Carvalho Chehab56fc08c2005-06-23 22:05:07 -0700166 unsigned short addr;
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700167 unsigned int type;
168 unsigned int mode_mask;
Mauro Carvalho Chehab391cd722005-06-23 22:02:43 -0700169};
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171struct tuner {
172 /* device */
173 struct i2c_client i2c;
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 unsigned int type; /* chip type */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700177 unsigned int mode;
178 unsigned int mode_mask; /* Combination of allowable modes */
179
180 unsigned int freq; /* keep track of the current settings */
181 unsigned int audmode;
182 v4l2_std_id std;
183
184 int using_v4l2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /* used by MT2032 */
187 unsigned int xogc;
188 unsigned int radio_if2;
189
190 /* used by tda8290 */
191 unsigned char i2c_easy_mode[2];
192 unsigned char i2c_set_freq[8];
193
194 /* function ptrs */
195 void (*tv_freq)(struct i2c_client *c, unsigned int freq);
196 void (*radio_freq)(struct i2c_client *c, unsigned int freq);
197 int (*has_signal)(struct i2c_client *c);
198 int (*is_stereo)(struct i2c_client *c);
199};
200
201extern unsigned int tuner_debug;
202extern unsigned const int tuner_count;
203
204extern int microtune_init(struct i2c_client *c);
205extern int tda8290_init(struct i2c_client *c);
Mauro Carvalho Chehab586b0ca2005-06-28 20:45:21 -0700206extern int tea5767_tuner_init(struct i2c_client *c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207extern int default_tuner_init(struct i2c_client *c);
Mauro Carvalho Chehabf7ce3cc2005-07-12 13:58:55 -0700208extern int tea5767_autodetection(struct i2c_client *c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210#define tuner_warn(fmt, arg...) \
211 dev_printk(KERN_WARNING , &t->i2c.dev , fmt , ## arg)
212#define tuner_info(fmt, arg...) \
213 dev_printk(KERN_INFO , &t->i2c.dev , fmt , ## arg)
214#define tuner_dbg(fmt, arg...) \
215 if (tuner_debug) dev_printk(KERN_DEBUG , &t->i2c.dev , fmt , ## arg)
216
217#endif /* __KERNEL__ */
218
219#endif
220
221/*
222 * Overrides for Emacs so that we follow Linus's tabbing style.
223 * ---------------------------------------------------------------------------
224 * Local variables:
225 * c-basic-offset: 8
226 * End:
227 */