2019-05-20 15:19:02 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2006-08-08 20:10:10 +08:00
|
|
|
/*
|
|
|
|
Driver for Philips tda10086 DVBS Frontend
|
|
|
|
|
|
|
|
(c) 2006 Andrew de Quincey
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TDA10086_H
|
|
|
|
#define TDA10086_H
|
|
|
|
|
|
|
|
#include <linux/dvb/frontend.h>
|
|
|
|
#include <linux/firmware.h>
|
|
|
|
|
2008-04-10 10:07:11 +08:00
|
|
|
enum tda10086_xtal {
|
|
|
|
TDA10086_XTAL_16M,
|
|
|
|
TDA10086_XTAL_4M
|
|
|
|
};
|
|
|
|
|
2006-08-08 20:10:10 +08:00
|
|
|
struct tda10086_config
|
|
|
|
{
|
|
|
|
/* the demodulator's i2c address */
|
|
|
|
u8 demod_address;
|
|
|
|
|
|
|
|
/* does the "inversion" need inverted? */
|
|
|
|
u8 invert;
|
2008-02-10 10:54:24 +08:00
|
|
|
|
|
|
|
/* do we need the diseqc signal with carrier? */
|
|
|
|
u8 diseqc_tone;
|
2008-04-10 10:07:11 +08:00
|
|
|
|
|
|
|
/* frequency of the reference xtal */
|
|
|
|
enum tda10086_xtal xtal_freq;
|
2006-08-08 20:10:10 +08:00
|
|
|
};
|
|
|
|
|
2015-02-19 01:12:42 +08:00
|
|
|
#if IS_REACHABLE(CONFIG_DVB_TDA10086)
|
2006-08-08 20:10:10 +08:00
|
|
|
extern struct dvb_frontend* tda10086_attach(const struct tda10086_config* config,
|
|
|
|
struct i2c_adapter* i2c);
|
2006-10-09 16:17:09 +08:00
|
|
|
#else
|
|
|
|
static inline struct dvb_frontend* tda10086_attach(const struct tda10086_config* config,
|
|
|
|
struct i2c_adapter* i2c)
|
|
|
|
{
|
2008-04-09 10:20:00 +08:00
|
|
|
printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
|
2006-10-09 16:17:09 +08:00
|
|
|
return NULL;
|
|
|
|
}
|
2008-04-14 08:09:11 +08:00
|
|
|
#endif /* CONFIG_DVB_TDA10086 */
|
2006-08-08 20:10:10 +08:00
|
|
|
|
2008-04-14 08:09:11 +08:00
|
|
|
#endif /* TDA10086_H */
|