af9033.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Afatech AF9033 demodulator driver
  3. *
  4. * Copyright (C) 2009 Antti Palosaari <crope@iki.fi>
  5. * Copyright (C) 2012 Antti Palosaari <crope@iki.fi>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along
  18. * with this program; if not, write to the Free Software Foundation, Inc.,
  19. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  20. */
  21. #ifndef AF9033_H
  22. #define AF9033_H
  23. #include <linux/kconfig.h>
  24. struct af9033_config {
  25. /*
  26. * I2C address
  27. */
  28. u8 i2c_addr;
  29. /*
  30. * clock Hz
  31. * 12000000, 22000000, 24000000, 34000000, 32000000, 28000000, 26000000,
  32. * 30000000, 36000000, 20480000, 16384000
  33. */
  34. u32 clock;
  35. /*
  36. * ADC multiplier
  37. */
  38. #define AF9033_ADC_MULTIPLIER_1X 0
  39. #define AF9033_ADC_MULTIPLIER_2X 1
  40. u8 adc_multiplier;
  41. /*
  42. * tuner
  43. */
  44. #define AF9033_TUNER_TUA9001 0x27 /* Infineon TUA 9001 */
  45. #define AF9033_TUNER_FC0011 0x28 /* Fitipower FC0011 */
  46. #define AF9033_TUNER_FC0012 0x2e /* Fitipower FC0012 */
  47. #define AF9033_TUNER_MXL5007T 0xa0 /* MaxLinear MxL5007T */
  48. #define AF9033_TUNER_TDA18218 0xa1 /* NXP TDA 18218HN */
  49. #define AF9033_TUNER_FC2580 0x32 /* FCI FC2580 */
  50. /* 50-5f Omega */
  51. #define AF9033_TUNER_IT9135_38 0x38 /* Omega */
  52. #define AF9033_TUNER_IT9135_51 0x51 /* Omega LNA config 1 */
  53. #define AF9033_TUNER_IT9135_52 0x52 /* Omega LNA config 2 */
  54. /* 60-6f Omega v2 */
  55. #define AF9033_TUNER_IT9135_60 0x60 /* Omega v2 */
  56. #define AF9033_TUNER_IT9135_61 0x61 /* Omega v2 LNA config 1 */
  57. #define AF9033_TUNER_IT9135_62 0x62 /* Omega v2 LNA config 2 */
  58. u8 tuner;
  59. /*
  60. * TS settings
  61. */
  62. #define AF9033_TS_MODE_USB 0
  63. #define AF9033_TS_MODE_PARALLEL 1
  64. #define AF9033_TS_MODE_SERIAL 2
  65. u8 ts_mode:2;
  66. /*
  67. * input spectrum inversion
  68. */
  69. bool spec_inv;
  70. };
  71. #if IS_ENABLED(CONFIG_DVB_AF9033)
  72. extern struct dvb_frontend *af9033_attach(const struct af9033_config *config,
  73. struct i2c_adapter *i2c);
  74. #else
  75. static inline struct dvb_frontend *af9033_attach(
  76. const struct af9033_config *config, struct i2c_adapter *i2c)
  77. {
  78. pr_warn("%s: driver disabled by Kconfig\n", __func__);
  79. return NULL;
  80. }
  81. #endif
  82. #endif /* AF9033_H */