2017-12-01 21:47:09 +08:00
|
|
|
/*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0
|
|
|
|
* tuner-xc2028
|
2007-10-02 22:57:03 +08: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 17:34:48 +08:00
|
|
|
* Copyright (c) 2007-2008 Mauro Carvalho Chehab <mchehab@kernel.org>
|
2007-10-02 22:57:03 +08:00
|
|
|
*/
|
|
|
|
|
2007-10-24 02:24:06 +08:00
|
|
|
#ifndef __TUNER_XC2028_H__
|
|
|
|
#define __TUNER_XC2028_H__
|
|
|
|
|
2017-12-29 02:03:51 +08:00
|
|
|
#include <media/dvb_frontend.h>
|
2007-10-24 02:24:06 +08:00
|
|
|
|
2007-10-24 20:22:08 +08:00
|
|
|
#define XC2028_DEFAULT_FIRMWARE "xc3028-v27.fw"
|
2008-09-16 13:02:12 +08:00
|
|
|
#define XC3028L_DEFAULT_FIRMWARE "xc3028L-v36.fw"
|
2007-10-24 20:22:08 +08:00
|
|
|
|
2007-11-26 06:26:36 +08:00
|
|
|
/* Dmoduler IF (kHz) */
|
2008-04-21 17:58:48 +08:00
|
|
|
#define XC3028_FE_DEFAULT 0 /* Don't load SCODE */
|
2007-11-26 06:26:36 +08: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 22:07:12 +08:00
|
|
|
|
2008-09-28 13:24:44 +08:00
|
|
|
enum firmware_type {
|
|
|
|
XC2028_AUTO = 0, /* By default, auto-detects */
|
|
|
|
XC2028_D2633,
|
|
|
|
XC2028_D2620,
|
|
|
|
};
|
|
|
|
|
2007-10-24 20:22:08 +08:00
|
|
|
struct xc2028_ctrl {
|
|
|
|
char *fname;
|
2007-11-02 03:56:26 +08:00
|
|
|
int max_len;
|
2008-01-08 22:26:59 +08:00
|
|
|
int msleep;
|
2007-11-19 22:22:03 +08:00
|
|
|
unsigned int scode_table;
|
2007-11-24 21:20:15 +08:00
|
|
|
unsigned int mts :1;
|
|
|
|
unsigned int input1:1;
|
2007-12-02 21:07:06 +08:00
|
|
|
unsigned int vhfbw7:1;
|
|
|
|
unsigned int uhfbw8:1;
|
2009-08-04 09:52:59 +08:00
|
|
|
unsigned int disable_power_mgmt:1;
|
2009-09-14 21:23:20 +08:00
|
|
|
unsigned int read_not_reliable:1;
|
2007-11-26 06:26:36 +08:00
|
|
|
unsigned int demod;
|
2008-09-28 13:24:44 +08:00
|
|
|
enum firmware_type type:2;
|
2007-10-24 20:22:08 +08:00
|
|
|
};
|
|
|
|
|
2007-11-16 18:46:14 +08:00
|
|
|
struct xc2028_config {
|
|
|
|
struct i2c_adapter *i2c_adap;
|
2018-01-05 02:08:56 +08:00
|
|
|
u8 i2c_addr;
|
2007-11-22 23:19:37 +08:00
|
|
|
struct xc2028_ctrl *ctrl;
|
2007-11-16 18:46:14 +08:00
|
|
|
};
|
|
|
|
|
2007-10-02 22:57:03 +08:00
|
|
|
/* xc2028 commands for callback */
|
|
|
|
#define XC2028_TUNER_RESET 0
|
|
|
|
#define XC2028_RESET_CLK 1
|
2011-08-04 15:13:59 +08:00
|
|
|
#define XC2028_I2C_FLUSH 2
|
2007-07-18 21:29:10 +08:00
|
|
|
|
2015-02-19 01:12:42 +08:00
|
|
|
#if IS_REACHABLE(CONFIG_MEDIA_TUNER_XC2028)
|
2007-12-22 03:12:09 +08:00
|
|
|
extern struct dvb_frontend *xc2028_attach(struct dvb_frontend *fe,
|
|
|
|
struct xc2028_config *cfg);
|
2007-10-24 02:24:06 +08:00
|
|
|
#else
|
2007-12-22 03:12:09 +08:00
|
|
|
static inline struct dvb_frontend *xc2028_attach(struct dvb_frontend *fe,
|
|
|
|
struct xc2028_config *cfg)
|
2007-10-24 02:24:06 +08:00
|
|
|
{
|
|
|
|
printk(KERN_INFO "%s: not probed - driver disabled by Kconfig\n",
|
2008-04-09 10:20:00 +08:00
|
|
|
__func__);
|
2007-12-22 03:12:09 +08:00
|
|
|
return NULL;
|
2007-10-24 02:24:06 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __TUNER_XC2028_H__ */
|