2007-10-02 18:57:03 +04:00
/* tuner-xc2028
*
2008-04-21 13:58:48 +04:00
* Copyright ( c ) 2007 - 2008 Mauro Carvalho Chehab ( mchehab @ infradead . org )
2007-10-02 18:57:03 +04:00
* This code is placed under the terms of the GNU General Public License v2
*/
2007-10-23 22:24:06 +04:00
# ifndef __TUNER_XC2028_H__
# define __TUNER_XC2028_H__
# include "dvb_frontend.h"
2007-10-24 16:22:08 +04:00
# define XC2028_DEFAULT_FIRMWARE "xc3028-v27.fw"
2008-09-16 09:02:12 +04:00
# define XC3028L_DEFAULT_FIRMWARE "xc3028L-v36.fw"
2007-10-24 16:22:08 +04:00
2007-11-26 01:26:36 +03:00
/* Dmoduler IF (kHz) */
2008-04-21 13:58:48 +04:00
# define XC3028_FE_DEFAULT 0 /* Don't load SCODE */
2007-11-26 01:26:36 +03:00
# define XC3028_FE_LG60 6000
# define XC3028_FE_ATI638 6380
# define XC3028_FE_OREN538 5380
# define XC3028_FE_OREN36 3600
# define XC3028_FE_TOYOTA388 3880
# define XC3028_FE_TOYOTA794 7940
# define XC3028_FE_DIBCOM52 5200
# define XC3028_FE_ZARLINK456 4560
# define XC3028_FE_CHINA 5200
2007-11-24 17:07:12 +03:00
2008-09-28 09:24:44 +04:00
enum firmware_type {
XC2028_AUTO = 0 , /* By default, auto-detects */
XC2028_D2633 ,
XC2028_D2620 ,
} ;
2007-10-24 16:22:08 +04:00
struct xc2028_ctrl {
char * fname ;
2007-11-01 22:56:26 +03:00
int max_len ;
2008-01-08 17:26:59 +03:00
int msleep ;
2007-11-19 17:22:03 +03:00
unsigned int scode_table ;
2007-11-24 16:20:15 +03:00
unsigned int mts : 1 ;
unsigned int input1 : 1 ;
2007-12-02 16:07:06 +03:00
unsigned int vhfbw7 : 1 ;
unsigned int uhfbw8 : 1 ;
2009-08-04 05:52:59 +04:00
unsigned int disable_power_mgmt : 1 ;
2009-09-14 17:23:20 +04:00
unsigned int read_not_reliable : 1 ;
2007-11-26 01:26:36 +03:00
unsigned int demod ;
2008-09-28 09:24:44 +04:00
enum firmware_type type : 2 ;
2007-10-24 16:22:08 +04:00
} ;
2007-11-16 13:46:14 +03:00
struct xc2028_config {
struct i2c_adapter * i2c_adap ;
u8 i2c_addr ;
2007-11-22 18:19:37 +03:00
struct xc2028_ctrl * ctrl ;
2007-11-16 13:46:14 +03:00
} ;
2007-10-02 18:57:03 +04:00
/* xc2028 commands for callback */
# define XC2028_TUNER_RESET 0
# define XC2028_RESET_CLK 1
2011-08-04 11:13:59 +04:00
# define XC2028_I2C_FLUSH 2
2007-07-18 17:29:10 +04:00
2015-02-18 20:12:42 +03:00
# if IS_REACHABLE(CONFIG_MEDIA_TUNER_XC2028)
2007-12-21 22:12:09 +03:00
extern struct dvb_frontend * xc2028_attach ( struct dvb_frontend * fe ,
struct xc2028_config * cfg ) ;
2007-10-23 22:24:06 +04:00
# else
2007-12-21 22:12:09 +03:00
static inline struct dvb_frontend * xc2028_attach ( struct dvb_frontend * fe ,
struct xc2028_config * cfg )
2007-10-23 22:24:06 +04:00
{
printk ( KERN_INFO " %s: not probed - driver disabled by Kconfig \n " ,
2008-04-09 06:20:00 +04:00
__func__ ) ;
2007-12-21 22:12:09 +03:00
return NULL ;
2007-10-23 22:24:06 +04:00
}
# endif
# endif /* __TUNER_XC2028_H__ */