V4L/DVB (3423): CodingStyle fixes.
[deliverable/linux.git] / drivers / media / video / cx25840 / cx25840.h
CommitLineData
bd985160
HV
1/* cx25840 API header
2 *
3 * Copyright (C) 2003-2004 Chris Kennedy
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 */
19
20#ifndef _CX25840_H_
21#define _CX25840_H_
22
cab462f7 23
bd985160
HV
24#include <linux/videodev2.h>
25#include <linux/i2c.h>
26
a8bbf12a
HV
27/* ENABLE_PVR150_WORKAROUND activates a workaround for a hardware bug that is
28 present in Hauppauge PVR-150 (and possibly PVR-500) cards that have
29 certain NTSC tuners (tveeprom tuner model numbers 85, 99 and 112). The
f95006f8
HV
30 audio autodetect fails on some channels for these models and the workaround
31 is to select the audio standard explicitly. Many thanks to Hauppauge for
32 providing this information. */
a8bbf12a
HV
33#define CX25840_CID_ENABLE_PVR150_WORKAROUND (V4L2_CID_PRIVATE_BASE+0)
34
35enum cx25840_video_input {
36 /* Composite video inputs In1-In8 */
37 CX25840_COMPOSITE1 = 1,
38 CX25840_COMPOSITE2,
39 CX25840_COMPOSITE3,
40 CX25840_COMPOSITE4,
41 CX25840_COMPOSITE5,
42 CX25840_COMPOSITE6,
43 CX25840_COMPOSITE7,
44 CX25840_COMPOSITE8,
45
46 /* S-Video inputs consist of one luma input (In1-In4) ORed with one
47 chroma input (In5-In8) */
48 CX25840_SVIDEO_LUMA1 = 0x10,
49 CX25840_SVIDEO_LUMA2 = 0x20,
50 CX25840_SVIDEO_LUMA3 = 0x30,
51 CX25840_SVIDEO_LUMA4 = 0x40,
52 CX25840_SVIDEO_CHROMA4 = 0x400,
53 CX25840_SVIDEO_CHROMA5 = 0x500,
54 CX25840_SVIDEO_CHROMA6 = 0x600,
55 CX25840_SVIDEO_CHROMA7 = 0x700,
56 CX25840_SVIDEO_CHROMA8 = 0x800,
57
58 /* S-Video aliases for common luma/chroma combinations */
59 CX25840_SVIDEO1 = 0x510,
60 CX25840_SVIDEO2 = 0x620,
61 CX25840_SVIDEO3 = 0x730,
62 CX25840_SVIDEO4 = 0x840,
bd985160
HV
63};
64
a8bbf12a
HV
65enum cx25840_audio_input {
66 /* Audio inputs: serial or In4-In8 */
67 CX25840_AUDIO_SERIAL,
68 CX25840_AUDIO4 = 4,
69 CX25840_AUDIO5,
70 CX25840_AUDIO6,
71 CX25840_AUDIO7,
72 CX25840_AUDIO8,
bd985160
HV
73};
74
75struct cx25840_state {
a8bbf12a 76 int pvr150_workaround;
3faeeae4 77 int radio;
a8bbf12a
HV
78 enum cx25840_video_input vid_input;
79 enum cx25840_audio_input aud_input;
3578d3dd 80 u32 audclk_freq;
bd985160
HV
81};
82
83/* ----------------------------------------------------------------------- */
84/* cx25850-core.c */
85int cx25840_write(struct i2c_client *client, u16 addr, u8 value);
86int cx25840_write4(struct i2c_client *client, u16 addr, u32 value);
87u8 cx25840_read(struct i2c_client *client, u16 addr);
88u32 cx25840_read4(struct i2c_client *client, u16 addr);
89int cx25840_and_or(struct i2c_client *client, u16 addr, u8 mask, u8 value);
90v4l2_std_id cx25840_get_v4lstd(struct i2c_client *client);
91
92/* ----------------------------------------------------------------------- */
93/* cx25850-firmware.c */
94int cx25840_loadfw(struct i2c_client *client);
95
96/* ----------------------------------------------------------------------- */
97/* cx25850-audio.c */
98int cx25840_audio(struct i2c_client *client, unsigned int cmd, void *arg);
a8bbf12a 99void cx25840_audio_set_path(struct i2c_client *client);
bd985160
HV
100
101/* ----------------------------------------------------------------------- */
102/* cx25850-vbi.c */
103void cx25840_vbi_setup(struct i2c_client *client);
104int cx25840_vbi(struct i2c_client *client, unsigned int cmd, void *arg);
105
106#endif
This page took 0.060375 seconds and 5 git commands to generate.