blob: 9c03e530e01b41e8c611d93f652e60a5db28392c [file] [log] [blame]
Michael Krufkycae78ed2009-01-13 04:40:36 -03001/*
Michael Krufky5de82fa2010-03-11 23:50:51 -03002 * Support for LG Electronics LGDT3304 and LGDT3305 - VSB/QAM
Michael Krufkycae78ed2009-01-13 04:40:36 -03003 *
Michael Krufky40ff5402010-03-12 00:58:12 -03004 * Copyright (C) 2008, 2009, 2010 Michael Krufky <mkrufky@linuxtv.org>
Michael Krufkycae78ed2009-01-13 04:40:36 -03005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
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 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 */
21
22#ifndef _LGDT3305_H_
23#define _LGDT3305_H_
24
Mauro Carvalho Chehab782d8b72013-03-21 16:11:54 -030025#include <linux/kconfig.h>
Michael Krufkycae78ed2009-01-13 04:40:36 -030026#include <linux/i2c.h>
27#include "dvb_frontend.h"
28
29
30enum lgdt3305_mpeg_mode {
31 LGDT3305_MPEG_PARALLEL = 0,
32 LGDT3305_MPEG_SERIAL = 1,
33};
34
35enum lgdt3305_tp_clock_edge {
36 LGDT3305_TPCLK_RISING_EDGE = 0,
37 LGDT3305_TPCLK_FALLING_EDGE = 1,
38};
39
Michael Ira Krufky27f7ef72014-12-21 18:54:50 -030040enum lgdt3305_tp_clock_mode {
41 LGDT3305_TPCLK_GATED = 0,
42 LGDT3305_TPCLK_FIXED = 1,
43};
44
Michael Krufkycae78ed2009-01-13 04:40:36 -030045enum lgdt3305_tp_valid_polarity {
46 LGDT3305_TP_VALID_LOW = 0,
47 LGDT3305_TP_VALID_HIGH = 1,
48};
49
Jarod Wilson804258c2010-03-07 17:20:03 -030050enum lgdt_demod_chip_type {
51 LGDT3305 = 0,
52 LGDT3304 = 1,
53};
54
Michael Krufkycae78ed2009-01-13 04:40:36 -030055struct lgdt3305_config {
56 u8 i2c_addr;
57
58 /* user defined IF frequency in KHz */
59 u16 qam_if_khz;
60 u16 vsb_if_khz;
61
62 /* AGC Power reference - defaults are used if left unset */
63 u16 usref_8vsb; /* default: 0x32c4 */
64 u16 usref_qam64; /* default: 0x5400 */
65 u16 usref_qam256; /* default: 0x2a80 */
66
67 /* disable i2c repeater - 0:repeater enabled 1:repeater disabled */
Nemeth Marton1faea562009-12-15 19:28:35 -030068 unsigned int deny_i2c_rptr:1;
Michael Krufkycae78ed2009-01-13 04:40:36 -030069
70 /* spectral inversion - 0:disabled 1:enabled */
Nemeth Marton1faea562009-12-15 19:28:35 -030071 unsigned int spectral_inversion:1;
Michael Krufkycae78ed2009-01-13 04:40:36 -030072
73 /* use RF AGC loop - 0:disabled 1:enabled */
Nemeth Marton1faea562009-12-15 19:28:35 -030074 unsigned int rf_agc_loop:1;
Michael Krufkycae78ed2009-01-13 04:40:36 -030075
76 enum lgdt3305_mpeg_mode mpeg_mode;
77 enum lgdt3305_tp_clock_edge tpclk_edge;
Michael Ira Krufky27f7ef72014-12-21 18:54:50 -030078 enum lgdt3305_tp_clock_mode tpclk_mode;
Michael Krufkycae78ed2009-01-13 04:40:36 -030079 enum lgdt3305_tp_valid_polarity tpvalid_polarity;
Jarod Wilson804258c2010-03-07 17:20:03 -030080 enum lgdt_demod_chip_type demod_chip;
Michael Krufkycae78ed2009-01-13 04:40:36 -030081};
82
Mauro Carvalho Chehab782d8b72013-03-21 16:11:54 -030083#if IS_ENABLED(CONFIG_DVB_LGDT3305)
Michael Krufkycae78ed2009-01-13 04:40:36 -030084extern
85struct dvb_frontend *lgdt3305_attach(const struct lgdt3305_config *config,
86 struct i2c_adapter *i2c_adap);
87#else
88static inline
89struct dvb_frontend *lgdt3305_attach(const struct lgdt3305_config *config,
90 struct i2c_adapter *i2c_adap)
91{
92 printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
93 return NULL;
94}
95#endif /* CONFIG_DVB_LGDT3305 */
96
97#endif /* _LGDT3305_H_ */