blob: 1d4b89488ac49011645c1e03cc843b31803557d2 [file] [log] [blame]
Ralph Metzler126f1e62011-03-12 23:44:33 -05001/*
2 * drxd.h: DRXD DVB-T demodulator driver
3 *
4 * Copyright (C) 2005-2007 Micronas
5 *
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.
9 *
10 *
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.
15 *
Sakari Ailusbcb63312016-10-28 09:31:20 -020016 * To obtain the license, point your browser to
17 * http://www.gnu.org/copyleft/gpl.html
Ralph Metzler126f1e62011-03-12 23:44:33 -050018 */
19
20#ifndef _DRXD_H_
21#define _DRXD_H_
22
23#include <linux/types.h>
24#include <linux/i2c.h>
25
Devin Heitmueller6cacdd42011-03-24 13:44:01 -030026struct drxd_config {
Ralph Metzler126f1e62011-03-12 23:44:33 -050027 u8 index;
28
29 u8 pll_address;
30 u8 pll_type;
31#define DRXD_PLL_NONE 0
32#define DRXD_PLL_DTT7520X 1
33#define DRXD_PLL_MT3X0823 2
34
35 u32 clock;
Devin Heitmuellerba967962011-03-13 01:54:02 -030036 u8 insert_rs_byte;
Ralph Metzler126f1e62011-03-12 23:44:33 -050037
38 u8 demod_address;
39 u8 demoda_address;
40 u8 demod_revision;
41
Devin Heitmueller6b142b32011-03-13 02:02:01 -030042 /* If the tuner is not behind an i2c gate, be sure to flip this bit
43 or else the i2c bus could get wedged */
44 u8 disable_i2c_gate_ctrl;
45
Ralph Metzler126f1e62011-03-12 23:44:33 -050046 u32 IF;
Devin Heitmueller6cacdd42011-03-24 13:44:01 -030047 s16(*osc_deviation) (void *priv, s16 dev, int flag);
Ralph Metzler126f1e62011-03-12 23:44:33 -050048};
49
Arnd Bergmann9b174522015-02-18 14:12:42 -030050#if IS_REACHABLE(CONFIG_DVB_DRXD)
Ralph Metzler126f1e62011-03-12 23:44:33 -050051extern
52struct dvb_frontend *drxd_attach(const struct drxd_config *config,
53 void *priv, struct i2c_adapter *i2c,
54 struct device *dev);
Arnd Bergmann60ab5e12012-05-03 18:22:26 -030055#else
56static inline
57struct dvb_frontend *drxd_attach(const struct drxd_config *config,
58 void *priv, struct i2c_adapter *i2c,
59 struct device *dev)
60{
61 printk(KERN_INFO "%s: not probed - driver disabled by Kconfig\n",
62 __func__);
63 return NULL;
64}
65#endif
66
Ralph Metzler126f1e62011-03-12 23:44:33 -050067#endif