blob: a20eeb4935d01e5053df3c241462ba396952199c [file] [log] [blame]
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -03001/* tuner-xc2028
2 *
3 * Copyright (c) 2007 Mauro Carvalho Chehab (mchehab@infradead.org)
4 * This code is placed under the terms of the GNU General Public License v2
5 */
6
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -03007#ifndef __TUNER_XC2028_H__
8#define __TUNER_XC2028_H__
9
10#include "dvb_frontend.h"
11
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030012#define XC2028_DEFAULT_FIRMWARE "xc3028-v27.fw"
13
14enum xc2028_firm_type {
15 XC2028_FIRM_NORMAL,
16 XC2028_FIRM_MTS,
17};
18
19struct xc2028_ctrl {
20 enum xc2028_firm_type type;
21 char *fname;
Mauro Carvalho Chehab352fae12007-11-01 16:56:26 -030022 int max_len;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030023};
24
Michel Ludwiga37b4c92007-11-16 07:46:14 -030025struct xc2028_config {
26 struct i2c_adapter *i2c_adap;
27 u8 i2c_addr;
28 void *video_dev;
29 int (*callback) (void *dev, int command, int arg);
30};
31
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -030032/* xc2028 commands for callback */
33#define XC2028_TUNER_RESET 0
34#define XC2028_RESET_CLK 1
Michel Ludwig701672e2007-07-18 10:29:10 -030035
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030036#if defined(CONFIG_TUNER_XC2028) || (defined(CONFIG_TUNER_XC2028_MODULE) && defined(MODULE))
Michel Ludwiga37b4c92007-11-16 07:46:14 -030037void *xc2028_attach(struct dvb_frontend *fe, struct xc2028_config *cfg);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030038#else
Michel Ludwiga37b4c92007-11-16 07:46:14 -030039void *xc2028_attach(struct dvb_frontend *fe,
40 struct xc2028_config *cfg)
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030041{
42 printk(KERN_INFO "%s: not probed - driver disabled by Kconfig\n",
43 __FUNCTION__);
44 return -EINVAL;
45}
46#endif
47
48#endif /* __TUNER_XC2028_H__ */