Merge branches 'tracing/kmemtrace2' and 'tracing/ftrace' into tracing/urgent
[deliverable/linux.git] / drivers / media / video / cx25840 / cx25840-core.h
CommitLineData
31bc09b5 1/* cx25840 internal API header
bd985160
HV
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
31bc09b5
HV
20#ifndef _CX25840_CORE_H_
21#define _CX25840_CORE_H_
bd985160 22
cab462f7 23
bd985160 24#include <linux/videodev2.h>
9357b31c 25#include <media/v4l2-device.h>
bd985160
HV
26#include <linux/i2c.h>
27
a8bbf12a
HV
28/* ENABLE_PVR150_WORKAROUND activates a workaround for a hardware bug that is
29 present in Hauppauge PVR-150 (and possibly PVR-500) cards that have
30 certain NTSC tuners (tveeprom tuner model numbers 85, 99 and 112). The
f95006f8
HV
31 audio autodetect fails on some channels for these models and the workaround
32 is to select the audio standard explicitly. Many thanks to Hauppauge for
33 providing this information. */
a8bbf12a
HV
34#define CX25840_CID_ENABLE_PVR150_WORKAROUND (V4L2_CID_PRIVATE_BASE+0)
35
bd985160 36struct cx25840_state {
21340ae0 37 struct i2c_client *c;
9357b31c 38 struct v4l2_subdev sd;
a8bbf12a 39 int pvr150_workaround;
3faeeae4 40 int radio;
081b496a 41 v4l2_std_id std;
a8bbf12a
HV
42 enum cx25840_video_input vid_input;
43 enum cx25840_audio_input aud_input;
3578d3dd 44 u32 audclk_freq;
8a4b275f 45 int audmode;
87410dab 46 int unmute_volume; /* -1 if not muted */
ca130eef 47 int default_volume;
3e3bf277 48 int vbi_line_offset;
3434eb7e
HV
49 u32 id;
50 u32 rev;
e2b8cf4c 51 int is_cx25836;
f234081b 52 int is_cx23885;
c976bc82 53 int is_initialized;
21340ae0
HV
54 wait_queue_head_t fw_wait; /* wake up when the fw load is finished */
55 struct work_struct fw_work; /* work entry for fw load */
bd985160
HV
56};
57
9357b31c
HV
58static inline struct cx25840_state *to_state(struct v4l2_subdev *sd)
59{
60 return container_of(sd, struct cx25840_state, sd);
61}
62
bd985160
HV
63/* ----------------------------------------------------------------------- */
64/* cx25850-core.c */
65int cx25840_write(struct i2c_client *client, u16 addr, u8 value);
66int cx25840_write4(struct i2c_client *client, u16 addr, u32 value);
67u8 cx25840_read(struct i2c_client *client, u16 addr);
68u32 cx25840_read4(struct i2c_client *client, u16 addr);
e2b8cf4c 69int cx25840_and_or(struct i2c_client *client, u16 addr, unsigned mask, u8 value);
cb5aa1c6 70void cx25840_std_setup(struct i2c_client *client);
bd985160
HV
71
72/* ----------------------------------------------------------------------- */
73/* cx25850-firmware.c */
74int cx25840_loadfw(struct i2c_client *client);
75
76/* ----------------------------------------------------------------------- */
77/* cx25850-audio.c */
78int cx25840_audio(struct i2c_client *client, unsigned int cmd, void *arg);
a8bbf12a 79void cx25840_audio_set_path(struct i2c_client *client);
bd985160
HV
80
81/* ----------------------------------------------------------------------- */
82/* cx25850-vbi.c */
bd985160
HV
83int cx25840_vbi(struct i2c_client *client, unsigned int cmd, void *arg);
84
85#endif
This page took 0.465082 seconds and 5 git commands to generate.