Path: blob/master/drivers/media/dvb/frontends/cx24123.h
15112 views
/*1Conexant cx24123/cx24109 - DVB QPSK Satellite demod/tuner driver23Copyright (C) 2005 Steven Toth <[email protected]>45This program is free software; you can redistribute it and/or modify6it under the terms of the GNU General Public License as published by7the Free Software Foundation; either version 2 of the License, or8(at your option) any later version.910This program is distributed in the hope that it will be useful,11but WITHOUT ANY WARRANTY; without even the implied warranty of12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13GNU General Public License for more details.1415You should have received a copy of the GNU General Public License16along with this program; if not, write to the Free Software17Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.18*/1920#ifndef CX24123_H21#define CX24123_H2223#include <linux/dvb/frontend.h>2425struct cx24123_config {26/* the demodulator's i2c address */27u8 demod_address;2829/* Need to set device param for start_dma */30int (*set_ts_params)(struct dvb_frontend *fe, int is_punctured);3132/* 0 = LNB voltage normal, 1 = LNB voltage inverted */33int lnb_polarity;3435/* this device has another tuner */36u8 dont_use_pll;37void (*agc_callback) (struct dvb_frontend *);38};3940#if defined(CONFIG_DVB_CX24123) || (defined(CONFIG_DVB_CX24123_MODULE) \41&& defined(MODULE))42extern struct dvb_frontend *cx24123_attach(const struct cx24123_config *config,43struct i2c_adapter *i2c);44extern struct i2c_adapter *cx24123_get_tuner_i2c_adapter(struct dvb_frontend *);45#else46static inline struct dvb_frontend *cx24123_attach(47const struct cx24123_config *config, struct i2c_adapter *i2c)48{49printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);50return NULL;51}52static struct i2c_adapter *53cx24123_get_tuner_i2c_adapter(struct dvb_frontend *fe)54{55printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);56return NULL;57}58#endif5960#endif /* CX24123_H */616263