Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
cx25840.h
Go to the documentation of this file.
1 /*
2  cx25840.h - definition for cx25840/1/2/3 inputs
3 
4  Copyright (C) 2006 Hans Verkuil ([email protected])
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 _CX25840_H_
22 #define _CX25840_H_
23 
24 /* Note that the cx25840 driver requires that the bridge driver calls the
25  v4l2_subdev's init operation in order to load the driver's firmware.
26  Without this the audio standard detection will fail and you will
27  only get mono.
28 
29  Since loading the firmware is often problematic when the driver is
30  compiled into the kernel I recommend postponing calling this function
31  until the first open of the video device. Another reason for
32  postponing it is that loading this firmware takes a long time (seconds)
33  due to the slow i2c bus speed. So it will speed up the boot process if
34  you can avoid loading the fw as long as the video device isn't used. */
35 
37  /* Composite video inputs In1-In8 */
46 
47  /* S-Video inputs consist of one luma input (In1-In8) ORed with one
48  chroma input (In5-In8) */
62 
63  /* S-Video aliases for common luma/chroma combinations */
64  CX25840_SVIDEO1 = 0x510,
65  CX25840_SVIDEO2 = 0x620,
66  CX25840_SVIDEO3 = 0x730,
67  CX25840_SVIDEO4 = 0x840,
68 
69  /* Allow frames to specify specific input configurations */
70  CX25840_VIN1_CH1 = 0x80000000,
71  CX25840_VIN2_CH1 = 0x80000001,
72  CX25840_VIN3_CH1 = 0x80000002,
73  CX25840_VIN4_CH1 = 0x80000003,
74  CX25840_VIN5_CH1 = 0x80000004,
75  CX25840_VIN6_CH1 = 0x80000005,
76  CX25840_VIN7_CH1 = 0x80000006,
77  CX25840_VIN8_CH1 = 0x80000007,
78  CX25840_VIN4_CH2 = 0x80000000,
79  CX25840_VIN5_CH2 = 0x80000010,
80  CX25840_VIN6_CH2 = 0x80000020,
81  CX25840_NONE_CH2 = 0x80000030,
82  CX25840_VIN7_CH3 = 0x80000000,
83  CX25840_VIN8_CH3 = 0x80000040,
84  CX25840_NONE0_CH3 = 0x80000080,
85  CX25840_NONE1_CH3 = 0x800000c0,
86  CX25840_SVIDEO_ON = 0x80000100,
87  CX25840_COMPONENT_ON = 0x80000200,
88  CX25840_DIF_ON = 0x80000400,
89 };
90 
92  /* Audio inputs: serial or In4-In8 */
99 };
100 
111  CX25840_PIN_SA_SDIN, /* Alternate GP Input only */
112  CX25840_PIN_SA_SDOUT, /* Alternate GP Input only */
114  CX25840_PIN_CHIP_SEL_VIPCLK, /* Output only */
115 };
116 
118  /* Output pads */
135  /* Pads for PLL_CLK output only */
140  /* Input Pads */
145 };
146 
151 };
152 
160 };
161 
175 };
176 
177 /* pvr150_workaround activates a workaround for a hardware bug that is
178  present in Hauppauge PVR-150 (and possibly PVR-500) cards that have
179  certain NTSC tuners (tveeprom tuner model numbers 85, 99 and 112). The
180  audio autodetect fails on some channels for these models and the workaround
181  is to select the audio standard explicitly. Many thanks to Hauppauge for
182  providing this information.
183  This platform data only needs to be supplied by the ivtv driver. */
186 };
187 
188 #endif