lgdt3305.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * Support for LG Electronics LGDT3304 and LGDT3305 - VSB/QAM
  3. *
  4. * Copyright (C) 2008, 2009, 2010 Michael Krufky <mkrufky@linuxtv.org>
  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. #ifndef _LGDT3305_H_
  22. #define _LGDT3305_H_
  23. #include <linux/kconfig.h>
  24. #include <linux/i2c.h>
  25. #include "dvb_frontend.h"
  26. enum lgdt3305_mpeg_mode {
  27. LGDT3305_MPEG_PARALLEL = 0,
  28. LGDT3305_MPEG_SERIAL = 1,
  29. };
  30. enum lgdt3305_tp_clock_edge {
  31. LGDT3305_TPCLK_RISING_EDGE = 0,
  32. LGDT3305_TPCLK_FALLING_EDGE = 1,
  33. };
  34. enum lgdt3305_tp_clock_mode {
  35. LGDT3305_TPCLK_GATED = 0,
  36. LGDT3305_TPCLK_FIXED = 1,
  37. };
  38. enum lgdt3305_tp_valid_polarity {
  39. LGDT3305_TP_VALID_LOW = 0,
  40. LGDT3305_TP_VALID_HIGH = 1,
  41. };
  42. enum lgdt_demod_chip_type {
  43. LGDT3305 = 0,
  44. LGDT3304 = 1,
  45. };
  46. struct lgdt3305_config {
  47. u8 i2c_addr;
  48. /* user defined IF frequency in KHz */
  49. u16 qam_if_khz;
  50. u16 vsb_if_khz;
  51. /* AGC Power reference - defaults are used if left unset */
  52. u16 usref_8vsb; /* default: 0x32c4 */
  53. u16 usref_qam64; /* default: 0x5400 */
  54. u16 usref_qam256; /* default: 0x2a80 */
  55. /* disable i2c repeater - 0:repeater enabled 1:repeater disabled */
  56. unsigned int deny_i2c_rptr:1;
  57. /* spectral inversion - 0:disabled 1:enabled */
  58. unsigned int spectral_inversion:1;
  59. /* use RF AGC loop - 0:disabled 1:enabled */
  60. unsigned int rf_agc_loop:1;
  61. enum lgdt3305_mpeg_mode mpeg_mode;
  62. enum lgdt3305_tp_clock_edge tpclk_edge;
  63. enum lgdt3305_tp_clock_mode tpclk_mode;
  64. enum lgdt3305_tp_valid_polarity tpvalid_polarity;
  65. enum lgdt_demod_chip_type demod_chip;
  66. };
  67. #if IS_REACHABLE(CONFIG_DVB_LGDT3305)
  68. extern
  69. struct dvb_frontend *lgdt3305_attach(const struct lgdt3305_config *config,
  70. struct i2c_adapter *i2c_adap);
  71. #else
  72. static inline
  73. struct dvb_frontend *lgdt3305_attach(const struct lgdt3305_config *config,
  74. struct i2c_adapter *i2c_adap)
  75. {
  76. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  77. return NULL;
  78. }
  79. #endif /* CONFIG_DVB_LGDT3305 */
  80. #endif /* _LGDT3305_H_ */