lgs8gxx.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * Support for Legend Silicon GB20600 (a.k.a DMB-TH) demodulator
  3. * LGS8913, LGS8GL5, LGS8G75
  4. * experimental support LGS8G42, LGS8G52
  5. *
  6. * Copyright (C) 2007-2009 David T.L. Wong <davidtlwong@gmail.com>
  7. * Copyright (C) 2008 Sirius International (Hong Kong) Limited
  8. * Timothy Lee <timothy.lee@siriushk.com> (for initial work on LGS8GL5)
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. */
  21. #ifndef __LGS8GXX_H__
  22. #define __LGS8GXX_H__
  23. #include <linux/dvb/frontend.h>
  24. #include <linux/i2c.h>
  25. #define LGS8GXX_PROD_LGS8913 0
  26. #define LGS8GXX_PROD_LGS8GL5 1
  27. #define LGS8GXX_PROD_LGS8G42 3
  28. #define LGS8GXX_PROD_LGS8G52 4
  29. #define LGS8GXX_PROD_LGS8G54 5
  30. #define LGS8GXX_PROD_LGS8G75 6
  31. struct lgs8gxx_config {
  32. /* product type */
  33. u8 prod;
  34. /* the demodulator's i2c address */
  35. u8 demod_address;
  36. /* parallel or serial transport stream */
  37. u8 serial_ts;
  38. /* transport stream polarity*/
  39. u8 ts_clk_pol;
  40. /* transport stream clock gated by ts_valid */
  41. u8 ts_clk_gated;
  42. /* A/D Clock frequency */
  43. u32 if_clk_freq; /* in kHz */
  44. /* IF frequency */
  45. u32 if_freq; /* in kHz */
  46. /*Use External ADC*/
  47. u8 ext_adc;
  48. /*External ADC output two's complement*/
  49. u8 adc_signed;
  50. /*Sample IF data at falling edge of IF_CLK*/
  51. u8 if_neg_edge;
  52. /*IF use Negative center frequency*/
  53. u8 if_neg_center;
  54. /*8G75 internal ADC input range selection*/
  55. /*0: 0.8Vpp, 1: 1.0Vpp, 2: 1.6Vpp, 3: 2.0Vpp*/
  56. u8 adc_vpp;
  57. /* slave address and configuration of the tuner */
  58. u8 tuner_address;
  59. };
  60. #if IS_REACHABLE(CONFIG_DVB_LGS8GXX)
  61. extern struct dvb_frontend *lgs8gxx_attach(const struct lgs8gxx_config *config,
  62. struct i2c_adapter *i2c);
  63. #else
  64. static inline
  65. struct dvb_frontend *lgs8gxx_attach(const struct lgs8gxx_config *config,
  66. struct i2c_adapter *i2c) {
  67. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  68. return NULL;
  69. }
  70. #endif /* CONFIG_DVB_LGS8GXX */
  71. #endif /* __LGS8GXX_H__ */