2019-09-15 14:14:58 +03:00
/* SPDX-License-Identifier: GPL-2.0 */
2017-12-01 16:47:09 +03:00
/*
* tuner - xc2028
2007-10-02 18:57:03 +04:00
*
MAINTAINERS & files: Canonize the e-mails I use at files
From now on, I'll start using my @kernel.org as my development e-mail.
As such, let's remove the entries that point to the old
mchehab@s-opensource.com at MAINTAINERS file.
For the files written with a copyright with mchehab@s-opensource,
let's keep Samsung on their names, using mchehab+samsung@kernel.org,
in order to keep pointing to my employer, with sponsors the work.
For the files written before I join Samsung (on July, 4 2013),
let's just use mchehab@kernel.org.
For bug reports, we can simply point to just kernel.org, as
this will reach my mchehab+samsung inbox anyway.
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Signed-off-by: Brian Warner <brian.warner@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
2018-04-25 12:34:48 +03:00
* Copyright ( c ) 2007 - 2008 Mauro Carvalho Chehab < mchehab @ kernel . org >
2007-10-02 18:57:03 +04:00
*/
2007-10-23 22:24:06 +04:00
# ifndef __TUNER_XC2028_H__
# define __TUNER_XC2028_H__
2017-12-28 21:03:51 +03:00
# include <media/dvb_frontend.h>
2007-10-23 22:24:06 +04:00
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 ;
2018-01-04 21:08:56 +03:00
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__ */