blob: 02e116b54592deb50be251c98363b6df46be1fa9 [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
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030014struct xc2028_ctrl {
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030015 char *fname;
Mauro Carvalho Chehab352fae12007-11-01 16:56:26 -030016 int max_len;
Chris Pascoee0f0b372007-11-19 11:22:03 -030017 unsigned int scode_table;
Mauro Carvalho Chehabd74cb252007-11-24 10:20:15 -030018 unsigned int mts :1;
19 unsigned int d2633 :1;
20 unsigned int input1:1;
Mauro Carvalho Chehabde3fe212007-10-24 09:22:08 -030021};
22
Michel Ludwiga37b4c92007-11-16 07:46:14 -030023struct xc2028_config {
24 struct i2c_adapter *i2c_adap;
25 u8 i2c_addr;
26 void *video_dev;
Mauro Carvalho Chehab71a2ee32007-11-22 12:19:37 -030027 struct xc2028_ctrl *ctrl;
Michel Ludwiga37b4c92007-11-16 07:46:14 -030028 int (*callback) (void *dev, int command, int arg);
29};
30
Mauro Carvalho Chehab6cb45872007-10-02 11:57:03 -030031/* xc2028 commands for callback */
32#define XC2028_TUNER_RESET 0
33#define XC2028_RESET_CLK 1
Michel Ludwig701672e2007-07-18 10:29:10 -030034
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030035#if defined(CONFIG_TUNER_XC2028) || (defined(CONFIG_TUNER_XC2028_MODULE) && defined(MODULE))
Michel Ludwiga37b4c92007-11-16 07:46:14 -030036void *xc2028_attach(struct dvb_frontend *fe, struct xc2028_config *cfg);
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030037#else
Michel Ludwiga37b4c92007-11-16 07:46:14 -030038void *xc2028_attach(struct dvb_frontend *fe,
39 struct xc2028_config *cfg)
Mauro Carvalho Chehab215b95b2007-10-23 15:24:06 -030040{
41 printk(KERN_INFO "%s: not probed - driver disabled by Kconfig\n",
42 __FUNCTION__);
43 return -EINVAL;
44}
45#endif
46
47#endif /* __TUNER_XC2028_H__ */