2 * drxd.h: DRXD DVB-T demodulator driver
4 * Copyright (C) 2005-2007 Micronas
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * version 2 only, as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
27 #include <linux/kconfig.h>
28 #include <linux/types.h>
29 #include <linux/i2c.h>
36 #define DRXD_PLL_NONE 0
37 #define DRXD_PLL_DTT7520X 1
38 #define DRXD_PLL_MT3X0823 2
47 /* If the tuner is not behind an i2c gate, be sure to flip this bit
48 or else the i2c bus could get wedged */
49 u8 disable_i2c_gate_ctrl
;
52 s16(*osc_deviation
) (void *priv
, s16 dev
, int flag
);
55 #if IS_ENABLED(CONFIG_DVB_DRXD)
57 struct dvb_frontend
*drxd_attach(const struct drxd_config
*config
,
58 void *priv
, struct i2c_adapter
*i2c
,
62 struct dvb_frontend
*drxd_attach(const struct drxd_config
*config
,
63 void *priv
, struct i2c_adapter
*i2c
,
66 printk(KERN_INFO
"%s: not probed - driver disabled by Kconfig\n",
72 extern int drxd_config_i2c(struct dvb_frontend
*, int);