Michael Krufky | cae78ed | 2009-01-13 04:40:36 -0300 | [diff] [blame] | 1 | /* |
Michael Krufky | 5de82fa | 2010-03-11 23:50:51 -0300 | [diff] [blame] | 2 | * Support for LG Electronics LGDT3304 and LGDT3305 - VSB/QAM |
Michael Krufky | cae78ed | 2009-01-13 04:40:36 -0300 | [diff] [blame] | 3 | * |
Michael Krufky | 40ff540 | 2010-03-12 00:58:12 -0300 | [diff] [blame] | 4 | * Copyright (C) 2008, 2009, 2010 Michael Krufky <mkrufky@linuxtv.org> |
Michael Krufky | cae78ed | 2009-01-13 04:40:36 -0300 | [diff] [blame] | 5 | * |
| 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 | |
| 25 | #include <linux/i2c.h> |
| 26 | #include "dvb_frontend.h" |
| 27 | |
| 28 | |
| 29 | enum lgdt3305_mpeg_mode { |
| 30 | LGDT3305_MPEG_PARALLEL = 0, |
| 31 | LGDT3305_MPEG_SERIAL = 1, |
| 32 | }; |
| 33 | |
| 34 | enum lgdt3305_tp_clock_edge { |
| 35 | LGDT3305_TPCLK_RISING_EDGE = 0, |
| 36 | LGDT3305_TPCLK_FALLING_EDGE = 1, |
| 37 | }; |
| 38 | |
Michael Ira Krufky | 27f7ef7 | 2014-12-21 18:54:50 -0300 | [diff] [blame] | 39 | enum lgdt3305_tp_clock_mode { |
| 40 | LGDT3305_TPCLK_GATED = 0, |
| 41 | LGDT3305_TPCLK_FIXED = 1, |
| 42 | }; |
| 43 | |
Michael Krufky | cae78ed | 2009-01-13 04:40:36 -0300 | [diff] [blame] | 44 | enum lgdt3305_tp_valid_polarity { |
| 45 | LGDT3305_TP_VALID_LOW = 0, |
| 46 | LGDT3305_TP_VALID_HIGH = 1, |
| 47 | }; |
| 48 | |
Jarod Wilson | 804258c | 2010-03-07 17:20:03 -0300 | [diff] [blame] | 49 | enum lgdt_demod_chip_type { |
| 50 | LGDT3305 = 0, |
| 51 | LGDT3304 = 1, |
| 52 | }; |
| 53 | |
Michael Krufky | cae78ed | 2009-01-13 04:40:36 -0300 | [diff] [blame] | 54 | struct lgdt3305_config { |
| 55 | u8 i2c_addr; |
| 56 | |
| 57 | /* user defined IF frequency in KHz */ |
| 58 | u16 qam_if_khz; |
| 59 | u16 vsb_if_khz; |
| 60 | |
| 61 | /* AGC Power reference - defaults are used if left unset */ |
| 62 | u16 usref_8vsb; /* default: 0x32c4 */ |
| 63 | u16 usref_qam64; /* default: 0x5400 */ |
| 64 | u16 usref_qam256; /* default: 0x2a80 */ |
| 65 | |
| 66 | /* disable i2c repeater - 0:repeater enabled 1:repeater disabled */ |
Nemeth Marton | 1faea56 | 2009-12-15 19:28:35 -0300 | [diff] [blame] | 67 | unsigned int deny_i2c_rptr:1; |
Michael Krufky | cae78ed | 2009-01-13 04:40:36 -0300 | [diff] [blame] | 68 | |
| 69 | /* spectral inversion - 0:disabled 1:enabled */ |
Nemeth Marton | 1faea56 | 2009-12-15 19:28:35 -0300 | [diff] [blame] | 70 | unsigned int spectral_inversion:1; |
Michael Krufky | cae78ed | 2009-01-13 04:40:36 -0300 | [diff] [blame] | 71 | |
| 72 | /* use RF AGC loop - 0:disabled 1:enabled */ |
Nemeth Marton | 1faea56 | 2009-12-15 19:28:35 -0300 | [diff] [blame] | 73 | unsigned int rf_agc_loop:1; |
Michael Krufky | cae78ed | 2009-01-13 04:40:36 -0300 | [diff] [blame] | 74 | |
| 75 | enum lgdt3305_mpeg_mode mpeg_mode; |
| 76 | enum lgdt3305_tp_clock_edge tpclk_edge; |
Michael Ira Krufky | 27f7ef7 | 2014-12-21 18:54:50 -0300 | [diff] [blame] | 77 | enum lgdt3305_tp_clock_mode tpclk_mode; |
Michael Krufky | cae78ed | 2009-01-13 04:40:36 -0300 | [diff] [blame] | 78 | enum lgdt3305_tp_valid_polarity tpvalid_polarity; |
Jarod Wilson | 804258c | 2010-03-07 17:20:03 -0300 | [diff] [blame] | 79 | enum lgdt_demod_chip_type demod_chip; |
Michael Krufky | cae78ed | 2009-01-13 04:40:36 -0300 | [diff] [blame] | 80 | }; |
| 81 | |
Arnd Bergmann | 9b17452 | 2015-02-18 14:12:42 -0300 | [diff] [blame] | 82 | #if IS_REACHABLE(CONFIG_DVB_LGDT3305) |
Michael Krufky | cae78ed | 2009-01-13 04:40:36 -0300 | [diff] [blame] | 83 | extern |
| 84 | struct dvb_frontend *lgdt3305_attach(const struct lgdt3305_config *config, |
| 85 | struct i2c_adapter *i2c_adap); |
| 86 | #else |
| 87 | static inline |
| 88 | struct dvb_frontend *lgdt3305_attach(const struct lgdt3305_config *config, |
| 89 | struct i2c_adapter *i2c_adap) |
| 90 | { |
| 91 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); |
| 92 | return NULL; |
| 93 | } |
| 94 | #endif /* CONFIG_DVB_LGDT3305 */ |
| 95 | |
| 96 | #endif /* _LGDT3305_H_ */ |