af9033.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. struct af9033_config {
  24. /*
  25. * I2C address
  26. */
  27. u8 i2c_addr;
  28. /*
  29. * clock Hz
  30. * 12000000, 22000000, 24000000, 34000000, 32000000, 28000000, 26000000,
  31. * 30000000, 36000000, 20480000, 16384000
  32. */
  33. u32 clock;
  34. /*
  35. * tuner
  36. */
  37. #define AF9033_TUNER_TUA9001 0x27 /* Infineon TUA 9001 */
  38. #define AF9033_TUNER_FC0011 0x28 /* Fitipower FC0011 */
  39. #define AF9033_TUNER_MXL5007T 0xa0 /* MaxLinear MxL5007T */
  40. u8 tuner;
  41. /*
  42. * TS settings
  43. */
  44. #define AF9033_TS_MODE_USB 0
  45. #define AF9033_TS_MODE_PARALLEL 1
  46. #define AF9033_TS_MODE_SERIAL 2
  47. u8 ts_mode:2;
  48. /*
  49. * input spectrum inversion
  50. */
  51. bool spec_inv;
  52. };
  53. #if defined(CONFIG_DVB_AF9033) || \
  54. (defined(CONFIG_DVB_AF9033_MODULE) && defined(MODULE))
  55. extern struct dvb_frontend *af9033_attach(const struct af9033_config *config,
  56. struct i2c_adapter *i2c);
  57. #else
  58. static inline struct dvb_frontend *af9033_attach(
  59. const struct af9033_config *config, struct i2c_adapter *i2c)
  60. {
  61. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  62. return NULL;
  63. }
  64. #endif
  65. #endif /* AF9033_H */