blob: 28049064dd7d4d7cb02fc1314de47bf3d48d66ec [file] [log] [blame]
Hans Verkuil31bc09b2006-03-25 10:26:09 -03001/* cx25840 internal API header
Hans Verkuilbd985162005-11-13 16:07:56 -08002 *
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
Hans Verkuil31bc09b2006-03-25 10:26:09 -030020#ifndef _CX25840_CORE_H_
21#define _CX25840_CORE_H_
Hans Verkuilbd985162005-11-13 16:07:56 -080022
Mauro Carvalho Chehabcab462f2006-01-09 15:53:26 -020023
Hans Verkuilbd985162005-11-13 16:07:56 -080024#include <linux/videodev2.h>
25#include <linux/i2c.h>
26
Mauro Carvalho Chehab839e4a42006-06-04 12:15:55 -030027extern int cx25840_debug;
28
Hans Verkuila8bbf122006-01-09 15:25:42 -020029/* ENABLE_PVR150_WORKAROUND activates a workaround for a hardware bug that is
30 present in Hauppauge PVR-150 (and possibly PVR-500) cards that have
31 certain NTSC tuners (tveeprom tuner model numbers 85, 99 and 112). The
Hans Verkuilf95006f2005-12-01 00:51:42 -080032 audio autodetect fails on some channels for these models and the workaround
33 is to select the audio standard explicitly. Many thanks to Hauppauge for
34 providing this information. */
Hans Verkuila8bbf122006-01-09 15:25:42 -020035#define CX25840_CID_ENABLE_PVR150_WORKAROUND (V4L2_CID_PRIVATE_BASE+0)
36
Hans Verkuilbd985162005-11-13 16:07:56 -080037struct cx25840_state {
Hans Verkuile2b8cf42006-04-22 10:22:46 -030038 struct i2c_client c;
Hans Verkuila8bbf122006-01-09 15:25:42 -020039 int pvr150_workaround;
Hans Verkuil3faeeae2006-01-09 15:25:44 -020040 int radio;
Hans Verkuila8bbf122006-01-09 15:25:42 -020041 enum cx25840_video_input vid_input;
42 enum cx25840_audio_input aud_input;
Hans Verkuil3578d3d2006-01-09 15:25:41 -020043 u32 audclk_freq;
Hans Verkuil8a4b2752006-01-23 17:11:09 -020044 int audmode;
Christopher Neufeld3e3bf272006-05-24 10:16:45 -030045 int vbi_line_offset;
Hans Verkuile2b8cf42006-04-22 10:22:46 -030046 enum v4l2_chip_ident id;
47 int is_cx25836;
Hans Verkuilbd985162005-11-13 16:07:56 -080048};
49
50/* ----------------------------------------------------------------------- */
51/* cx25850-core.c */
52int cx25840_write(struct i2c_client *client, u16 addr, u8 value);
53int cx25840_write4(struct i2c_client *client, u16 addr, u32 value);
54u8 cx25840_read(struct i2c_client *client, u16 addr);
55u32 cx25840_read4(struct i2c_client *client, u16 addr);
Hans Verkuile2b8cf42006-04-22 10:22:46 -030056int cx25840_and_or(struct i2c_client *client, u16 addr, unsigned mask, u8 value);
Hans Verkuilbd985162005-11-13 16:07:56 -080057v4l2_std_id cx25840_get_v4lstd(struct i2c_client *client);
58
59/* ----------------------------------------------------------------------- */
60/* cx25850-firmware.c */
61int cx25840_loadfw(struct i2c_client *client);
62
63/* ----------------------------------------------------------------------- */
64/* cx25850-audio.c */
65int cx25840_audio(struct i2c_client *client, unsigned int cmd, void *arg);
Hans Verkuila8bbf122006-01-09 15:25:42 -020066void cx25840_audio_set_path(struct i2c_client *client);
Hans Verkuilbd985162005-11-13 16:07:56 -080067
68/* ----------------------------------------------------------------------- */
69/* cx25850-vbi.c */
70void cx25840_vbi_setup(struct i2c_client *client);
71int cx25840_vbi(struct i2c_client *client, unsigned int cmd, void *arg);
72
73#endif