1 /*
2 tuner.h - definition for different tuners
3
4 Copyright (C) 1997 Markus Schroeder (schroedm@uni-duesseldorf.de)
5 minor modifications by Ralph Metzler (rjkm@thp.uni-koeln.de)
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
22 #ifndef _TUNER_H
23 #define _TUNER_H
24
25 #define TUNER_TEMIC_PAL 0 /* Miro Gpio Coding -1 */
26 #define TUNER_PHILIPS_PAL_I 1
27 #define TUNER_PHILIPS_NTSC 2
28 #define TUNER_PHILIPS_SECAM 3
29 #define TUNER_ABSENT 4
30 #define TUNER_PHILIPS_PAL 5
31 #define TUNER_TEMIC_NTSC 6
32 #define TUNER_TEMIC_PAL_I 7
33 #define TUNER_TEMIC_4036FY5_NTSC 8
34 #define TUNER_ALPS_TSBH1_NTSC 9
35 #define TUNER_ALPS_TSBE1_PAL 10
36 #define TUNER_ALPS_TSBB5_PAL_I 11
37 #define TUNER_ALPS_TSBE5_PAL 12
38 #define TUNER_ALPS_TSBC5_PAL 13
39 #define TUNER_TEMIC_4006FH5_PAL 14
40 #define TUNER_ALPS_TSHC6_NTSC 15
41
42 #define NOTUNER 0
43 #define PAL 1
44 #define PAL_I 2
45 #define NTSC 3
46 #define SECAM 4
47
48 #define NoTuner 0
49 #define Philips 1
50 #define TEMIC 2
51 #define Sony 3
52 #define Alps 4
53
54 #define TUNER_SET_TYPE _IOW('t',1,int) /* set tuner type */
55 #define TUNER_SET_TVFREQ _IOW('t',2,int) /* set tv freq */
56 #define TUNER_SET_RADIOFREQ _IOW('t',3,int) /* set radio freq */
57 #define TUNER_SET_MODE _IOW('t',4,int) /* set tuner mode */
58
59 #endif
60
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.