V4L/DVB (3387): clean up some comments
[linux-2.6-block.git] / include / media / tuner-types.h
CommitLineData
7b0ac9cd
MK
1/*
2 * descriptions for simple tuners.
3 */
4
5#ifndef __TUNER_TYPES_H__
6#define __TUNER_TYPES_H__
7
8enum param_type {
9 TUNER_PARAM_TYPE_RADIO, \
10 TUNER_PARAM_TYPE_PAL, \
11 TUNER_PARAM_TYPE_SECAM, \
c943aa85 12 TUNER_PARAM_TYPE_NTSC
7b0ac9cd
MK
13};
14
15struct tuner_range {
16 unsigned short limit;
17 unsigned char cb;
18};
19
20struct tuner_params {
21 enum param_type type;
8f0bb9c0 22 unsigned int tda988x;
27487d44
HV
23 /* Many Philips based tuners have a comment like this in their
24 * datasheet:
25 *
26 * For channel selection involving band switching, and to ensure
27 * smooth tuning to the desired channel without causing
28 * unnecessary charge pump action, it is recommended to consider
29 * the difference between wanted channel frequency and the
30 * current channel frequency. Unnecessary charge pump action
31 * will result in very low tuning voltage which may drive the
32 * oscillator to extreme conditions.
33 *
01872c5d
MK
34 * Set cb_first_if_lower_freq to 1, if this check is
35 * required for this tuner.
27487d44
HV
36 *
37 * I tested this for PAL by first setting the TV frequency to
38 * 203 MHz and then switching to 96.6 MHz FM radio. The result was
39 * static unless the control byte was sent first.
40 */
41 unsigned int cb_first_if_lower_freq:1;
7b0ac9cd
MK
42 unsigned char config; /* to be moved into struct tuner_range for dvb-pll merge */
43
44 unsigned int count;
45 struct tuner_range *ranges;
46};
47
48struct tunertype {
49 char *name;
7b0ac9cd
MK
50 struct tuner_params *params;
51};
52
53extern struct tunertype tuners[];
54extern unsigned const int tuner_count;
55
56#endif